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