https://github.com/web-platform-tests/wpt
Raw File
Tip revision: eac64242d8fcfad1e7269e9db4bbd1be879f838d authored by Luke Bjerring on 05 April 2018, 15:54:05 UTC
Fix service-worker window test
Tip revision: eac6424
getElementsByClassName-08.htm
<!doctype html>
<html>
 <head>
  <title>document.getElementsByClassName(): multiple 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() {
                  document.getElementsByClassName("a\fa"), [document.body]
                })
  </script>
 </body>
</html>
back to top