mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
add missing file, crashtest for bug 434458
This commit is contained in:
parent
738cda5398
commit
063bfe534e
20
layout/xul/base/src/crashtests/434458-1.xul
Normal file
20
layout/xul/base/src/crashtests/434458-1.xul
Normal file
@ -0,0 +1,20 @@
|
||||
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(boom, 30);" class="reftest-wait">
|
||||
|
||||
<script>
|
||||
function boom() {
|
||||
var a = document.getElementById('a');
|
||||
var x = a.popupBoxObject;
|
||||
a.parentNode.removeChild(a);
|
||||
x.enableKeyboardNavigator(true);
|
||||
x.openPopup(null, "after_start", 0, 0, false, false);
|
||||
x.openPopupAtScreen(2, 2, false);
|
||||
x.showPopup(document.documentElement, a, -1, -1, "popup", "topleft", "topleft");
|
||||
x.hidePopup();
|
||||
document.documentElement.removeAttribute("class");
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<menupopup id="a"/>
|
||||
|
||||
</window>
|
Loading…
Reference in New Issue
Block a user