summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/getElementsByClassName-06.htm
blob: 4975a89e091f8062fe78813423bf21e6e805a202 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
 <head>
  <title>document.getElementsByClassName(): adding element with class</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body class="a">
  <div id="log"></div>
  <script>
   test(function() {
          var collection = document.getElementsByClassName("a");
          var ele = document.createElement("foo");
          ele.setAttribute("class", "a");
          document.body.appendChild(ele);
          assert_array_equals(collection, [document.body, ele]);
        })
  </script>
 </body>
</html>