summaryrefslogtreecommitdiffstats
path: root/LayoutTests/fast/dom/CSSStyleDeclaration/css-properties-case-sensitive-expected.txt
blob: a56522b71a658b05026355dc474a75e3cd77cd5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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