bug 421839 - mochikit test by Martijn Wargers, Mats Palmgren.

This commit is contained in:
Bob Clary 2009-04-24 10:08:23 -07:00
parent 006b33a2ab
commit f2bed5140e
4 changed files with 180 additions and 0 deletions

View File

@ -70,6 +70,9 @@ _TEST_FILES = \
test_bug405178.html \
test_bug416168.html \
test_bug421436.html \
test_bug421839-1.html \
test_bug421839-2.html \
bug421839-2-page.html \
test_bug448860.html \
test_bug460532.html \
test_bug468167.html \

View File

@ -0,0 +1,57 @@
<html>
<head>
</head>
<body style="position: absolute;">
<iframe id="a"></iframe>
<iframe></iframe>
<script>
function tripleclick(){
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var wu = window.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindowUtils);
wu.sendMouseEvent('mousedown', 100, 100, 0, 1, 0);
setTimeout(tripleclick,20);
}
setTimeout(tripleclick,200,0, 0);
function doe2() {
document.body.setAttribute('style', 'position: absolute;');
document.body.offsetHeight;
document.getElementById('a').setAttribute('style', 'position: absolute; direction: rtl; ');
setTimeout(doe3,200);
}
function doe3() {
document.getElementsByTagName('*')[2].setAttribute('style', 'unicode-bidi: inherit; ime-mode: disabled; font-family: Al Bayan; ');
}
setTimeout(doe2,500,0);
setTimeout(function(){window.location.reload()}, 1000);
function designmodes(i){
if (i>=0)
{
try {
window.frames[i].document.designMode='on';
window.frames[i].document.execCommand('inserthtml', false, 'tesxt ');
window.frames[i].document.designMode='off';
}
catch(e) {}
}
else {
i = window.frames.length-1;
}
i--;
setTimeout(designmodes,50,i);
}
setTimeout(designmodes,500,window.frames.length-1);
function doe2(i) {
document.body.style.position == 'absolute' ? document.body.style.position = '' : document.body.style.position = 'absolute';
setTimeout(doe2,200,i);
}
setTimeout(doe2,500,0);
</script>
</body>
</html>

View File

@ -0,0 +1,85 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=421839
-->
<head>
<title>Test for Bug 421839</title>
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=421839">Mozilla Bug 421839</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
Moving with you mouse from above to below and back a few times across the iframe, shouldn't crash Mozilla<br/>
<iframe id="iframe" src="data:text/html;charset=utf-8,text%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%0A%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3Etext%3Cbr%3E"></iframe>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 421839 **/
var counter = 0;
SimpleTest.waitForExplicitFinish();
var doc = document;
if (document.getElementById('iframe'))
doc = document.getElementById('iframe').contentDocument;
function toggleIframe(){
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect UniversalBrowserRead");
var x=document.getElementById('iframe');
x.style.display = x.style.display == 'none' ? x.style.display = '' : x.style.display = 'none';
setTimeout(toggleIframe,100);
if (++counter == 4)
setTimeout(finish, 200);
}
setTimeout(toggleIframe,100);
function ctrlclick(i){
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var wu = doc.defaultView.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindowUtils);
var wu2 = top.QueryInterface(Components.interfaces.nsIInterfaceRequestor)
.getInterface(Components.interfaces.nsIDOMWindowUtils);
try
{
wu.sendMouseEvent('mousedown', 2*i, 2*i, 0, 1, 0);
wu2.sendMouseEvent('mousemove', 500*i, 500*i, 0, 0, 0);
//wu.sendMouseEvent('mouseup', 2*i, 2*i, 0, 1, 2);
}
catch(e)
{
}
i+=1;
if (i>50)
i =0;
setTimeout(ctrlclick,20,i);
if (++counter == 4)
setTimeout(finish, 200);
}
setTimeout(ctrlclick,20,0);
function finish()
{
ok(true, "This is a mochikit version of a crash test. To complete is to pass.");
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>

View File

@ -0,0 +1,35 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=421839
-->
<head>
<title>Test for Bug 421839</title>
<script type="application/javascript" src="/MochiKit/MochiKit.js"></script>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=421839">Mozilla Bug 421839</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
/** Test for Bug 421839 **/
SimpleTest.waitForExplicitFinish();
setTimeout(finish, 5000);
function finish()
{
ok(true, "This is a mochikit version of a crash test. To complete is to pass.");
SimpleTest.finish();
}
</script>
</pre>
</body>
</html>