summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/getElementsByClassName-09.htm
blob: 9011f3068cf2c748bcbf0aed2284151b59834be3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!doctype html>
<html class="a A">
 <head>
  <title>document.getElementsByClassName(): case sensitive</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])
               })
  </script>
 </body>
</html>