mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-13 18:27:35 +00:00
Add crashtest
This commit is contained in:
parent
71bac11de4
commit
2fdf7c8135
42
content/xul/content/crashtests/329982-1.xhtml
Normal file
42
content/xul/content/crashtests/329982-1.xhtml
Normal file
@ -0,0 +1,42 @@
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
|
||||
<script>
|
||||
|
||||
function init()
|
||||
{
|
||||
var A = document.getElementById("z");
|
||||
var B = A.nextSibling;
|
||||
var C = B.nextSibling;
|
||||
var P = A.parentNode;
|
||||
|
||||
document.addEventListener("DOMNodeRemoved", fizzy, false);
|
||||
P.removeChild(B);
|
||||
document.removeEventListener("DOMNodeRemoved", fizzy, false);
|
||||
|
||||
function fizzy()
|
||||
{
|
||||
document.removeEventListener("DOMNodeRemoved", fizzy, false); // avoid recursion
|
||||
P.removeChild(A);
|
||||
}
|
||||
|
||||
document.documentElement.appendChild(C);
|
||||
}
|
||||
|
||||
|
||||
window.addEventListener("load", init, false);
|
||||
|
||||
</script>
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<hbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
||||
|
||||
<menupopup y="x">
<menuitem id="z"/>
<menuitem/>
<menuitem/>
</menupopup>
|
||||
|
||||
</hbox>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -1,6 +1,7 @@
|
||||
load 326864-1.xul
|
||||
load 326875-1.xul
|
||||
load 326881-1.xul
|
||||
load 329982-1.xhtml
|
||||
load 336096-1.xhtml
|
||||
load 360078-1.xhtml
|
||||
load 363791-1.xul
|
||||
|
Loading…
Reference in New Issue
Block a user