summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/getElementsByClassName-05.htm
blob: 98245f6427867cc7365096a3b21e1b60d3e93845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html class="a">
 <head>
  <title>document.getElementsByClassName(): changing classes</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");
          document.body.removeAttribute("class");
          assert_array_equals(collection, [document.documentElement]);
        })
  </script>
 </body>
</html>