mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-04 23:49:04 +00:00
18 lines
555 B
XML
18 lines
555 B
XML
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:g="http://www.w3.org/2000/svg">
|
|
<head>
|
|
<title>document.getElementsByClassName(): compound</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="log"/>
|
|
<x class="a"/>
|
|
<g:x class="a"/>
|
|
<script>test(function() {
|
|
assert_array_equals(document.getElementsByClassName("a"),
|
|
document.getElementsByTagName("x"));
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|