diff options
Diffstat (limited to 'testing/web-platform/tests/dom/nodes/getElementsByClassName-06.htm')
-rw-r--r-- | testing/web-platform/tests/dom/nodes/getElementsByClassName-06.htm | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/web-platform/tests/dom/nodes/getElementsByClassName-06.htm b/testing/web-platform/tests/dom/nodes/getElementsByClassName-06.htm deleted file mode 100644 index 4975a89e0..000000000 --- a/testing/web-platform/tests/dom/nodes/getElementsByClassName-06.htm +++ /dev/null @@ -1,20 +0,0 @@ -<!doctype html> -<html> - <head> - <title>document.getElementsByClassName(): adding element with class</title> - <script src="/resources/testharness.js"></script> - <script src="/resources/testharnessreport.js"></script> - </head> - <body class="a"> - <div id="log"></div> - <script> - test(function() { - var collection = document.getElementsByClassName("a"); - var ele = document.createElement("foo"); - ele.setAttribute("class", "a"); - document.body.appendChild(ele); - assert_array_equals(collection, [document.body, ele]); - }) - </script> - </body> -</html> |