blob: d5e513fa88afe93be21d337a50248f1f562476dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<html class="a
b">
<head>
<title>document.getElementsByClassName(): also simple</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body class="a
">
<div id="log"></div>
<script> test(function() {assert_array_equals(document.getElementsByClassName("a\n"), [document.documentElement, document.body])}) </script>
</body>
</html>
|