summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug355026.html
blob: e5ace96970f6c4abdd4a4e8c108b47fba18aa649 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE HTML>
<html>
<!--
Test from Adam Guthrie.

https://bugzilla.mozilla.org/show_bug.cgi?id=355026
-->
<head>
    <script 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>