mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
16 lines
513 B
HTML
16 lines
513 B
HTML
<!-- quirks mode -->
|
|
<html class="a A">
|
|
<head>
|
|
<title>document.getElementsByClassName(): case-insensitive (quirks mode)</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
</head>
|
|
<body class="a a">
|
|
<div id="log"></div>
|
|
<script>test(function() {
|
|
assert_array_equals(document.getElementsByClassName("A a"),
|
|
[document.documentElement, document.body]);
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|