mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 387460 - crash test by Martijn Wargers.
This commit is contained in:
parent
3d9014c8a5
commit
664285c7e0
22
content/base/crashtests/387460-1-inner.xhtml
Normal file
22
content/base/crashtests/387460-1-inner.xhtml
Normal file
@ -0,0 +1,22 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head></head>
|
||||
<body>
|
||||
<a id="a" href="#"></a>
|
||||
|
||||
<table><tbody>
|
||||
<tr><td id="d"/></tr>
|
||||
<tr id="b"><td id="c"></td></tr>
|
||||
</tbody></table>
|
||||
|
||||
|
||||
<script>
|
||||
function doe() {
|
||||
document.getElementById('b').appendChild(document.getElementById('c'));
|
||||
window.addEventListener('DOMAttrModified', function(e){document.getElementById('a').focus();}, true);
|
||||
document.getElementById('d').setAttribute('rowspan', 3);
|
||||
}
|
||||
setTimeout(doe, 200);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
9
content/base/crashtests/387460-1.html
Normal file
9
content/base/crashtests/387460-1.html
Normal file
@ -0,0 +1,9 @@
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<script>
|
||||
setTimeout('document.documentElement.className = ""', 1000);
|
||||
</script>
|
||||
<body>
|
||||
<iframe src="387460-1-inner.xhtml"></iframe>
|
||||
</body>
|
||||
</html>
|
@ -32,6 +32,7 @@ load 377360-1.xhtml
|
||||
load 384663-1.html
|
||||
load 386000-1.html
|
||||
load 386794-1.html
|
||||
load 387460-1.html
|
||||
load 395469-1.xhtml
|
||||
load 395469-2.xhtml
|
||||
load 399712-1.html
|
||||
|
Loading…
Reference in New Issue
Block a user