mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Add moving-between-frames crashtest
This commit is contained in:
parent
eff78c805a
commit
acec28b307
16
js/src/xpconnect/crashtests/346512-1-frame1.xhtml
Normal file
16
js/src/xpconnect/crashtests/346512-1-frame1.xhtml
Normal file
@ -0,0 +1,16 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
<div id="empty1"></div>
|
||||
|
||||
<div id="movemychild"><hbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"/></div>
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
15
js/src/xpconnect/crashtests/346512-1-frame2.xhtml
Normal file
15
js/src/xpconnect/crashtests/346512-1-frame2.xhtml
Normal file
@ -0,0 +1,15 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div id="empty2"></div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
30
js/src/xpconnect/crashtests/346512-1.xhtml
Normal file
30
js/src/xpconnect/crashtests/346512-1.xhtml
Normal file
@ -0,0 +1,30 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<script>
|
||||
<![CDATA[
|
||||
function foopy()
|
||||
{
|
||||
var doc1 = document.getElementById("doc1").contentDocument;
|
||||
var doc2 = document.getElementById("doc2").contentDocument;
|
||||
|
||||
var empty2 = doc2.getElementById("empty2");
|
||||
var hbox1 = doc1.getElementById("movemychild").firstChild;
|
||||
var empty1 = doc1.getElementById("empty1");
|
||||
|
||||
aC(empty2, doc2.adoptNode(hbox1));
|
||||
aC(empty1, doc1.adoptNode(empty2));
|
||||
}
|
||||
|
||||
function aC(q,r) { q.appendChild(r); }
|
||||
|
||||
]]>
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body onload="foopy();">
|
||||
|
||||
<iframe id="doc1" src="346512-1-frame1.xhtml" />
|
||||
<iframe id="doc2" src="346512-1-frame2.xhtml" />
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,2 +1,3 @@
|
||||
load 326615-1.html
|
||||
load 346512-1.xhtml
|
||||
load 382133-1.html
|
||||
|
Loading…
Reference in New Issue
Block a user