• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1This test checks that access to CSS properties via JavaScript properties on DOM elements is case sensitive.
2
3On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
4
5
6normal cases
7
8PASS element.style.zIndex is '1'
9PASS element.style.ZIndex is undefined.
10
11"css" prefix
12
13PASS element.style.cssZIndex is '1'
14PASS element.style.CssZIndex is '1'
15PASS element.style.CsszIndex is undefined.
16PASS element.style.csszIndex is undefined.
17
18"pixel" prefix
19
20PASS element.style.pixelZIndex is 1
21PASS element.style.PixelZIndex is 1
22PASS element.style.pixelzIndex is undefined.
23PASS element.style.PixelzIndex is undefined.
24
25"pos" prefix
26
27PASS element.style.posZIndex is 1
28PASS element.style.PosZIndex is 1
29PASS element.style.poszIndex is undefined.
30PASS element.style.PoszIndex is undefined.
31PASS successfullyParsed is true
32
33TEST COMPLETE
34
35