mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!-- 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 type="application/javascript" src="/MochiKit/packed.js"></script>
|
|
<script type="application/javascript" 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>
|