Bug 386642 - crashtest.

This commit is contained in:
Martijn Wargers 2014-11-02 22:47:00 +00:00
parent fde1988455
commit 333b13314a
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="Bug 386642 Crash [@ IsCanvasFrame] while opening context menu or changing styles">
<toolbarbutton type="menu" id="a">
<menupopup id="b"/>
</toolbarbutton>
<style xmlns="http://www.w3.org/1999/xhtml">
.one image {
display: -moz-box;
}
image{
display: none;
}
</style>
<script><![CDATA[
var gg=0;
function doe() {
var a = document.getElementById('a');
if (!a.hasAttribute('class')) {
a.setAttribute('class', 'one');
} else {
a.removeAttribute('class');
}
document.getElementById('b').hidePopup();
}
doe();
setInterval(doe, 200);
]]></script>
</window>

View File

@ -46,6 +46,7 @@ load 384105-1.html
asserts(0-12) load 384373.html # bug 623436
load 384491-1.xhtml
load 384871-1.html
load 386642.xul
load 387033-1.xhtml
load 387080-1.xul
load 391974-1.html