https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 9ee63dc2e8e8086b9e5e165b3ce09ac0580138d0 authored by Aryeh Gregor on 06 September 2017, 14:01:46 UTC
Rewrite document named property tests
Tip revision: 9ee63dc
getElementsByClassName-09.htm
<!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>
back to top