summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt')
-rw-r--r--LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt34
1 files changed, 34 insertions, 0 deletions
diff --git a/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt b/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt
new file mode 100644
index 0000000..a56522b
--- /dev/null
+++ b/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt
@@ -0,0 +1,34 @@
+This test checks that access to CSS properties via JavaScript properties on DOM elements is case sensitive.
+
+On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
+
+
+normal cases
+
+PASS element.style.zIndex is '1'
+PASS element.style.ZIndex is undefined.
+
+"css" prefix
+
+PASS element.style.cssZIndex is '1'
+PASS element.style.CssZIndex is '1'
+PASS element.style.CsszIndex is undefined.
+PASS element.style.csszIndex is undefined.
+
+"pixel" prefix
+
+PASS element.style.pixelZIndex is 1
+PASS element.style.PixelZIndex is 1
+PASS element.style.pixelzIndex is undefined.
+PASS element.style.PixelzIndex is undefined.
+
+"pos" prefix
+
+PASS element.style.posZIndex is 1
+PASS element.style.PosZIndex is 1
+PASS element.style.poszIndex is undefined.
+PASS element.style.PoszIndex is undefined.
+PASS successfullyParsed is true
+
+TEST COMPLETE
+