summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug473162-2.html
blob: 976c830675bdd67e319f2db8cd509238728df04a (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
30
31
32
33
<!-- NOTE: THIS TEST MUST BE IN QUIRKS MODE -->
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=473162
-->
<head>
  <title>Test for Bug 473162</title>
  <script 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=473162">Mozilla Bug 473162</a>
<p id="display"></p>
<div id="content" style="display: none">
<span id="TEST" class="TEST"></span>  
<span id="test" class="test"></span>  
<span id="Test" class="Test"></span>  
<span id="tesT" class="tesT"></span>  
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 473162 **/
var nodes = document.getElementsByClassName("test");
is(nodes.length, 4, "Unexpected length");
is(nodes[0], $("TEST"), "Unexpected first node");
is(nodes[1], $("test"), "Unexpected second node");
is(nodes[2], $("Test"), "Unexpected third node");
is(nodes[3], $("tesT"), "Unexpected fourth node");
</script>
</pre>
</body>
</html>