https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 87bec7f2841f42f6738d11db4e7986fa95e63ea2 authored by Sergio Villar Senin on 23 March 2018, 11:33:30 UTC
[css-grid] Fix auto repeat tracks computation with definite min sizes
Tip revision: 87bec7f
getElementsByClassName-15.htm
<!doctype html>
<html class="a
b">
 <head>
  <title>document.getElementsByClassName(array): "a\n"</title>
  <script src="/resources/testharness.js"></script>
  <script src="/resources/testharnessreport.js"></script>
 </head>
 <body class="a
">
  <div id="log"></div>
  <script>test(function () {
                 assert_array_equals(document.getElementsByClassName(["a\n"]),
                                    [document.documentElement, document.body]);
          })
 </script>
 </body>
</html>
back to top