mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
tests for bug 691
This commit is contained in:
parent
792976dc58
commit
3bc704e355
BIN
testing/mochitest/static/nnc_lockup.gif
Normal file
BIN
testing/mochitest/static/nnc_lockup.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 732 B |
@ -45,6 +45,7 @@ var RunSet = {}
|
||||
RunSet.runall = function() {
|
||||
TestRunner.runTests(
|
||||
'test_bug589.html',
|
||||
'test_bug691.html',
|
||||
'test_bug2082.html',
|
||||
'test_bug3348.html',
|
||||
'test_bug100533.html',
|
||||
|
63
testing/mochitest/tests/test_bug691.html
Normal file
63
testing/mochitest/tests/test_bug691.html
Normal file
@ -0,0 +1,63 @@
|
||||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<!--
|
||||
https://bugzilla.mozilla.org/show_bug.cgi?id=691
|
||||
-->
|
||||
<head>
|
||||
<title>Test for Bug 691</title>
|
||||
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
||||
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
||||
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
||||
<script type="text/javascript">
|
||||
|
||||
function show(what) {
|
||||
var stage = document.getElementById("stage");
|
||||
if (what == "modularity") {
|
||||
var spaghetti = document.createElement("IMG",null);
|
||||
spaghetti.setAttribute("SRC","/static/nnc_lockup.gif");
|
||||
spaghetti.setAttribute("id","foo");
|
||||
stage.insertBefore(spaghetti,stage.firstChild);
|
||||
}
|
||||
}
|
||||
|
||||
function remove() {
|
||||
var stage = document.getElementById("stage");
|
||||
var body = document.getElementsByTagName("BODY")[0];
|
||||
while (stage.firstChild) {
|
||||
stage.removeChild(stage.firstChild);
|
||||
}
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=691">Mozilla Bug 691</a>
|
||||
<p id="display"></p>
|
||||
<div id="content" >
|
||||
<ul>
|
||||
<li >foo</li>
|
||||
</ul>
|
||||
<div id="stage">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<pre id="test">
|
||||
<script class="testbody" type="text/javascript">
|
||||
|
||||
/** Test for Bug 691 **/
|
||||
|
||||
show("modularity");
|
||||
remove();
|
||||
show("modularity");
|
||||
remove();
|
||||
show("modularity");
|
||||
remove();
|
||||
show("modularity");
|
||||
|
||||
ok($("foo"), "basic DOM manipulation doesn't crash");
|
||||
|
||||
</script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user