https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 3e2168c907f6026f4a79e6359ca787c799b2113f authored by Tommy Steimel on 12 April 2018, 15:39:13 UTC
Enable Modern Media Controls and fix layout tests
Tip revision: 3e2168c
getElementsByClassName-16.htm
<!doctype html>
<html class="a
b">
 <head>
  <title>document.getElementsByClassName(array): "b","a"</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body class="b,a">
  <div id="log"></div>
  <script>test(function() {
                 assert_array_equals(document.getElementsByClassName(["b", "a"]), [document.body]);
               })
  </script>
 </body>
</html>
back to top