summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/getElementsByClassName/009.html
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/dom/getElementsByClassName/009.html')
-rw-r--r--LayoutTests/fast/dom/getElementsByClassName/009.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/LayoutTests/fast/dom/getElementsByClassName/009.html b/LayoutTests/fast/dom/getElementsByClassName/009.html
new file mode 100644
index 0000000..ce52987
--- /dev/null
+++ b/LayoutTests/fast/dom/getElementsByClassName/009.html
@@ -0,0 +1,11 @@
+<!doctype html>
+<html class="a A">
+ <head>
+ <title>document.getElementsByClassName(): case sensitive</title>
+ <script src="resources/common.js"></script>
+ </head>
+ <body class="a a">
+ <p id="r">FAIL (script did not run)</p>
+ <script> t(document.getElementsByClassName("A a"), [document.documentElement]) </script>
+ </body>
+</html>