mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
28
layout/base/crashtests/311661-2.xul
Normal file
28
layout/base/crashtests/311661-2.xul
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0"?>
|
||||
<window xmlns:html="http://www.w3.org/1999/xhtml" class="reftest-wait" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" title="Testcase bug 311661 - Evil xul testcase, using display:table-row causes crash [@ nsTableRowGroupFrame::GetFirstRow]">
|
||||
<html:script><![CDATA[
|
||||
function doe() {
|
||||
document.documentElement.getElementsByTagName('*')[1].style.display='table-row';
|
||||
setTimeout(doe2,20);
|
||||
}
|
||||
function doe2(){
|
||||
document.documentElement.getElementsByTagName('*')[1].style.display='';
|
||||
setTimeout(doe,20);
|
||||
}
|
||||
]]></html:script>
|
||||
<button id="button" onclick="doe()" label="Mozilla should not crash, when clicking this button"/>
|
||||
<div style="display:table-row"/>
|
||||
<html:script>
|
||||
function clickbutton()
|
||||
{
|
||||
var ev = document.createEvent('MouseEvents');
|
||||
ev.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
|
||||
var button = document.getElementById('button');
|
||||
button.dispatchEvent(ev);
|
||||
|
||||
setTimeout(function() { document.documentElement.className = "" }, 500);
|
||||
}
|
||||
window.addEventListener("load", clickbutton, false);
|
||||
</html:script>
|
||||
|
||||
</window>
|
||||
Loading…
Add table
Add a link
Reference in a new issue