summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/getElementsByClassName-15.htm
blob: 89614de30dc5b496d159aecf8e75020cfc89e1f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html class="a
b">
 <head>
  <title>document.getElementsByClassName(array): "a\n"</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>