mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add crashtest for bug 306940.
This commit is contained in:
parent
33fd54ceec
commit
51ade1ac12
50
layout/base/crashtests/306940-1.html
Normal file
50
layout/base/crashtests/306940-1.html
Normal file
@ -0,0 +1,50 @@
|
||||
<html>
|
||||
<head>
|
||||
|
||||
<script>
|
||||
|
||||
function init()
|
||||
{
|
||||
var c1 = document.getElementById("c1");
|
||||
var f1 = document.getElementById("f1");
|
||||
var a1 = document.getElementById("a1");
|
||||
|
||||
function first()
|
||||
{
|
||||
f1.style.display = "-moz-popup";
|
||||
c1.style.height = "2em";
|
||||
window.status = "A";
|
||||
}
|
||||
|
||||
function second()
|
||||
{
|
||||
c1.style.position = "absolute";
|
||||
c1.style.overflow = "auto";
|
||||
a1.style.position = "absolute";
|
||||
window.status = "B";
|
||||
}
|
||||
|
||||
first();
|
||||
document.documentElement.offsetHeight;
|
||||
second();
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="init();">
|
||||
<div id="c1">
|
||||
<div id="f1">
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
<span id="a1">Foo</span>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
1
layout/base/crashtests/crashtests.list
Normal file
1
layout/base/crashtests/crashtests.list
Normal file
@ -0,0 +1 @@
|
||||
load 306940-1.html
|
@ -3,4 +3,5 @@
|
||||
|
||||
include ../../testing/crashtest/sanity/crashtests.list
|
||||
include ../../gfx/src/mac/crashtests/crashtests.list
|
||||
include ../../layout/base/crashtests/crashtests.list
|
||||
include ../../layout/xul/base/src/grid/crashtests/crashtests.list
|
||||
|
Loading…
Reference in New Issue
Block a user