Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: dom/html/test/mochitest.toml
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
<script 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","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.firstChild.remove();
}
}
</script>
</head>
<body>
<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">
show("modularity");
remove();
show("modularity");
remove();
show("modularity");
remove();
show("modularity");
ok($("foo"), "basic DOM manipulation doesn't crash");
</script>
</pre>
</body>
</html>