mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 311661 - crash tests by Martijn Wargers, Bernd.
This commit is contained in:
parent
0ff4d0e3ca
commit
1266165d02
29
layout/base/crashtests/311661-1-inner.xul
Normal file
29
layout/base/crashtests/311661-1-inner.xul
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0"?>
|
||||
<window xmlns:html="http://www.w3.org/1999/xhtml" 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(i) {
|
||||
document.documentElement.getElementsByTagName('*')[i].style.display='table-row';
|
||||
document.documentElement.getElementsByTagName('*')[i+1].style.display='table-row';
|
||||
i+=1;
|
||||
setTimeout(doe2,20,i);
|
||||
}
|
||||
function doe2(i){
|
||||
document.documentElement.getElementsByTagName('*')[i-1].style.display='';
|
||||
if (i>1)i=1;
|
||||
setTimeout(doe,20,i);
|
||||
}
|
||||
]]></html:script>
|
||||
<button id="button" onclick="doe(1)" label="Mozilla should not crash, when clicking this button"/>
|
||||
<script/>
|
||||
<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);
|
||||
}
|
||||
clickbutton();
|
||||
</html:script>
|
||||
|
||||
</window>
|
9
layout/base/crashtests/311661-1.html
Normal file
9
layout/base/crashtests/311661-1.html
Normal file
@ -0,0 +1,9 @@
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<script>
|
||||
setTimeout('document.documentElement.className = ""', 500);
|
||||
</script>
|
||||
<body>
|
||||
<iframe src="311661-1-inner.xul"></iframe>
|
||||
</body>
|
||||
</html>
|
26
layout/base/crashtests/311661-2-inner.xul
Normal file
26
layout/base/crashtests/311661-2-inner.xul
Normal file
@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<window xmlns:html="http://www.w3.org/1999/xhtml" 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);
|
||||
}
|
||||
clickbutton();
|
||||
</html:script>
|
||||
|
||||
</window>
|
9
layout/base/crashtests/311661-2.html
Normal file
9
layout/base/crashtests/311661-2.html
Normal file
@ -0,0 +1,9 @@
|
||||
<html class="reftest-wait">
|
||||
<head>
|
||||
<script>
|
||||
setTimeout('document.documentElement.className = ""', 500);
|
||||
</script>
|
||||
<body>
|
||||
<iframe src="311661-2-inner.xul"></iframe>
|
||||
</body>
|
||||
</html>
|
@ -58,6 +58,8 @@ load 306940-1.html
|
||||
load 310267-1.xml
|
||||
load 310638-1.svg
|
||||
load 310638-2.html
|
||||
load 311661-1.html
|
||||
load 311661-2.html
|
||||
load 313086-1.xml
|
||||
load 317934-1.html
|
||||
load 321058-1.xul
|
||||
|
Loading…
Reference in New Issue
Block a user