summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/StyleSheet/script-tests/get-stylesheet-byname.js
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/dom/StyleSheet/script-tests/get-stylesheet-byname.js')
-rw-r--r--LayoutTests/fast/dom/StyleSheet/script-tests/get-stylesheet-byname.js8
1 files changed, 0 insertions, 8 deletions
diff --git a/LayoutTests/fast/dom/StyleSheet/script-tests/get-stylesheet-byname.js b/LayoutTests/fast/dom/StyleSheet/script-tests/get-stylesheet-byname.js
deleted file mode 100644
index 793ed65..0000000
--- a/LayoutTests/fast/dom/StyleSheet/script-tests/get-stylesheet-byname.js
+++ /dev/null
@@ -1,8 +0,0 @@
-description("This test verifies that a StyleSheet object will be returned instead of a HTMLStyleElement when calling document.styleSheets named property getter.");
-
-var styleElement = document.createElement("style");
-styleElement.setAttribute("id", "test");
-document.head.appendChild(styleElement);
-shouldBe('document.styleSheets["test"]', 'styleElement.sheet');
-
-var successfullyParsed = true;