mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add crashtest.
This commit is contained in:
parent
1d31c11eca
commit
9f6fd24893
42
layout/generic/crashtests/380012-1.html
Normal file
42
layout/generic/crashtests/380012-1.html
Normal file
@ -0,0 +1,42 @@
|
||||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
|
||||
<style>
|
||||
.fl:first-line { }
|
||||
.inh { position: inherit; }
|
||||
.abs { position: absolute; }
|
||||
</style>
|
||||
|
||||
<script>
|
||||
|
||||
var x, y;
|
||||
|
||||
function boom()
|
||||
{
|
||||
x = document.getElementById("x");
|
||||
y = document.getElementById("y");
|
||||
|
||||
x.setAttribute('class', "fl abs");
|
||||
y.setAttribute('class', "inh");
|
||||
setTimeout(boom2, 5);
|
||||
}
|
||||
|
||||
function boom2()
|
||||
{
|
||||
y.setAttribute('class', "abs");
|
||||
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body onload="setTimeout(boom, 5);">
|
||||
<div id="x">
|
||||
<p id="y">foo</p>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -46,6 +46,7 @@ load 373868-1.xhtml
|
||||
load 379217-1.xhtml
|
||||
load 379217-2.xhtml
|
||||
load 379917-1.xhtml
|
||||
load 380012-1.html
|
||||
load 382129-1.xhtml
|
||||
load 382199-1.html
|
||||
load 382262-1.html
|
||||
|
Loading…
Reference in New Issue
Block a user