mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
30 lines
757 B
HTML
30 lines
757 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
Test from Adam Guthrie.
|
|
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=355026
|
|
-->
|
|
<head>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=355026">Mozilla Bug 355026</a>
|
|
<div style="display: none" id="lengthtest">
|
|
</div>
|
|
<pre id="test">
|
|
<script type="text/javascript">
|
|
|
|
var foo = document.createElement("div");
|
|
foo.appendChild(document.createElement("div"));
|
|
var children = foo.getElementsByTagName("div");
|
|
|
|
is(children.length, 1, "After appending a child div to a div, div.length should be 1.");
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|