Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-06.htm |
diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-06.htm b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-06.htm |
deleted file mode 100644 |
index d4f2e3418a0f3ab4b30168d5b84ca4322f5d002c..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/imported/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> |