summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/nodes/getElementsByClassName-09.htm
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/dom/nodes/getElementsByClassName-09.htm')
-rw-r--r--testing/web-platform/tests/dom/nodes/getElementsByClassName-09.htm15
1 files changed, 0 insertions, 15 deletions
diff --git a/testing/web-platform/tests/dom/nodes/getElementsByClassName-09.htm b/testing/web-platform/tests/dom/nodes/getElementsByClassName-09.htm
deleted file mode 100644
index 9011f3068..000000000
--- a/testing/web-platform/tests/dom/nodes/getElementsByClassName-09.htm
+++ /dev/null
@@ -1,15 +0,0 @@
-<!doctype html>
-<html class="a A">
- <head>
- <title>document.getElementsByClassName(): case sensitive</title>
- <script src="/resources/testharness.js"></script>
- <script src="/resources/testharnessreport.js"></script>
- </head>
- <body class="a a">
- <div id="log"></div>
- <script>test(function() {
- assert_array_equals(document.getElementsByClassName("A a"), [document.documentElement])
- })
- </script>
- </body>
-</html>