OLD | NEW |
1 This tests setting and re-serialization of some CSS selectors. | 1 This tests setting and re-serialization of some CSS selectors. |
2 | 2 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 4 |
5 | 5 |
6 PASS setThenReadSelectorText('') is '_foo' | 6 PASS setThenReadSelectorText('') is '_foo' |
7 PASS setThenReadSelectorText('123') is '_foo' | 7 PASS setThenReadSelectorText('123') is '_foo' |
8 PASS setThenReadSelectorText('-') is '_foo' | 8 PASS setThenReadSelectorText('-') is '_foo' |
9 PASS setThenReadSelectorText('$') is '_foo' | 9 PASS setThenReadSelectorText('$') is '_foo' |
10 PASS setThenReadSelectorText(':') is '_foo' | 10 PASS setThenReadSelectorText(':') is '_foo' |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 PASS setThenReadSelectorText('a > b') is 'a > b' | 43 PASS setThenReadSelectorText('a > b') is 'a > b' |
44 | 44 |
45 PASS setThenReadSelectorText(':active') is ':active' | 45 PASS setThenReadSelectorText(':active') is ':active' |
46 PASS setThenReadSelectorText(':checked') is ':checked' | 46 PASS setThenReadSelectorText(':checked') is ':checked' |
47 PASS setThenReadSelectorText(':disabled') is ':disabled' | 47 PASS setThenReadSelectorText(':disabled') is ':disabled' |
48 PASS setThenReadSelectorText(':empty') is ':empty' | 48 PASS setThenReadSelectorText(':empty') is ':empty' |
49 PASS setThenReadSelectorText(':enabled') is ':enabled' | 49 PASS setThenReadSelectorText(':enabled') is ':enabled' |
50 PASS setThenReadSelectorText(':first-child') is ':first-child' | 50 PASS setThenReadSelectorText(':first-child') is ':first-child' |
51 PASS setThenReadSelectorText(':first-of-type') is ':first-of-type' | 51 PASS setThenReadSelectorText(':first-of-type') is ':first-of-type' |
52 PASS setThenReadSelectorText(':focus') is ':focus' | 52 PASS setThenReadSelectorText(':focus') is ':focus' |
| 53 PASS setThenReadSelectorText(':focus-within') is ':focus-within' |
53 PASS setThenReadSelectorText(':hover') is ':hover' | 54 PASS setThenReadSelectorText(':hover') is ':hover' |
54 PASS setThenReadSelectorText(':indeterminate') is ':indeterminate' | 55 PASS setThenReadSelectorText(':indeterminate') is ':indeterminate' |
55 PASS setThenReadSelectorText(':link') is ':link' | 56 PASS setThenReadSelectorText(':link') is ':link' |
56 PASS setThenReadSelectorText(':not(:placeholder-shown)') is ':not(:placeholder-s
hown)' | 57 PASS setThenReadSelectorText(':not(:placeholder-shown)') is ':not(:placeholder-s
hown)' |
57 PASS setThenReadSelectorText(':placeholder-shown') is ':placeholder-shown' | 58 PASS setThenReadSelectorText(':placeholder-shown') is ':placeholder-shown' |
58 PASS setThenReadSelectorText(':root') is ':root' | 59 PASS setThenReadSelectorText(':root') is ':root' |
59 PASS setThenReadSelectorText(':target') is ':target' | 60 PASS setThenReadSelectorText(':target') is ':target' |
60 PASS setThenReadSelectorText(':visited') is ':visited' | 61 PASS setThenReadSelectorText(':visited') is ':visited' |
61 | 62 |
62 PASS setThenReadSelectorText(':lang(a)') is ':lang(a)' | 63 PASS setThenReadSelectorText(':lang(a)') is ':lang(a)' |
(...skipping 26 matching lines...) Expand all Loading... |
89 PASS setThenReadSelectorText('#a::-webkit-slider-thumb') is '#a::-webkit-slider-
thumb' | 90 PASS setThenReadSelectorText('#a::-webkit-slider-thumb') is '#a::-webkit-slider-
thumb' |
90 PASS setThenReadSelectorText('#a ::-webkit-slider-thumb') is '#a ::-webkit-slide
r-thumb' | 91 PASS setThenReadSelectorText('#a ::-webkit-slider-thumb') is '#a ::-webkit-slide
r-thumb' |
91 PASS setThenReadSelectorText('* ::-webkit-slider-thumb') is '* ::-webkit-slider-
thumb' | 92 PASS setThenReadSelectorText('* ::-webkit-slider-thumb') is '* ::-webkit-slider-
thumb' |
92 | 93 |
93 PASS setThenReadSelectorText('a[b]::-webkit-slider-thumb') is 'a[b]::-webkit-sli
der-thumb' | 94 PASS setThenReadSelectorText('a[b]::-webkit-slider-thumb') is 'a[b]::-webkit-sli
der-thumb' |
94 PASS setThenReadSelectorText('a.b::-webkit-slider-thumb') is 'a.b::-webkit-slide
r-thumb' | 95 PASS setThenReadSelectorText('a.b::-webkit-slider-thumb') is 'a.b::-webkit-slide
r-thumb' |
95 PASS setThenReadSelectorText('a#b::-webkit-slider-thumb') is 'a#b::-webkit-slide
r-thumb' | 96 PASS setThenReadSelectorText('a#b::-webkit-slider-thumb') is 'a#b::-webkit-slide
r-thumb' |
96 PASS setThenReadSelectorText('a[b].c#d::-webkit-slider-thumb') is 'a[b].c#d::-we
bkit-slider-thumb' | 97 PASS setThenReadSelectorText('a[b].c#d::-webkit-slider-thumb') is 'a[b].c#d::-we
bkit-slider-thumb' |
97 | 98 |
98 PASS setThenReadSelectorText('input:not([type="file"]):focus') is 'input:not([ty
pe="file"]):focus' | 99 PASS setThenReadSelectorText('input:not([type="file"]):focus') is 'input:not([ty
pe="file"]):focus' |
| 100 PASS setThenReadSelectorText('input:not([type="file"]):focus-within') is 'input:
not([type="file"]):focus-within' |
99 PASS setThenReadSelectorText(':-webkit-any([type="file"])') is ':-webkit-any([ty
pe="file"])' | 101 PASS setThenReadSelectorText(':-webkit-any([type="file"])') is ':-webkit-any([ty
pe="file"])' |
100 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)' | 102 PASS setThenReadSelectorText(':-webkit-any(:hover)') is ':-webkit-any(:hover)' |
101 PASS setThenReadSelectorText('input:-webkit-any([type="file"],:hover,:focus):ena
bled') is 'input:-webkit-any([type="file"],:hover,:focus):enabled' | 103 PASS setThenReadSelectorText('input:-webkit-any([type="file"],:hover,:focus):ena
bled') is 'input:-webkit-any([type="file"],:hover,:focus):enabled' |
102 PASS setThenReadSelectorText(':-webkit-any(input[type="file"],a:hover,button:foc
us)') is ':-webkit-any(input[type="file"],a:hover,button:focus)' | 104 PASS setThenReadSelectorText(':-webkit-any(input[type="file"],a:hover,button:foc
us)') is ':-webkit-any(input[type="file"],a:hover,button:focus)' |
103 PASS setThenReadSelectorText(':-webkit-any(.class1.class2.class3)') is ':-webkit
-any(.class1.class2.class3)' | 105 PASS setThenReadSelectorText(':-webkit-any(.class1.class2.class3)') is ':-webkit
-any(.class1.class2.class3)' |
104 PASS setThenReadSelectorText(':-webkit-any(.class1:hover)') is ':-webkit-any(.cl
ass1:hover)' | 106 PASS setThenReadSelectorText(':-webkit-any(.class1:hover)') is ':-webkit-any(.cl
ass1:hover)' |
105 PASS setThenReadSelectorText(':-webkit-any(a.class1.class2.class3:hover)') is ':
-webkit-any(a.class1.class2.class3:hover)' | 107 PASS setThenReadSelectorText(':-webkit-any(a.class1.class2.class3:hover)') is ':
-webkit-any(a.class1.class2.class3:hover)' |
106 | 108 |
107 PASS setThenReadSelectorText('*:active') is ':active' | 109 PASS setThenReadSelectorText('*:active') is ':active' |
108 PASS setThenReadSelectorText('|a') is '|a' | 110 PASS setThenReadSelectorText('|a') is '|a' |
109 | 111 |
110 PASS setThenReadSelectorText('input[type=file]:focus') is 'input[type="file"]:fo
cus' | 112 PASS setThenReadSelectorText('input[type=file]:focus') is 'input[type="file"]:fo
cus' |
| 113 PASS setThenReadSelectorText('input[type=file]:focus-within') is 'input[type="fi
le"]:focus-within' |
111 | 114 |
112 PASS setThenReadSelectorText('a+b') is 'a + b' | 115 PASS setThenReadSelectorText('a+b') is 'a + b' |
113 PASS setThenReadSelectorText('a~b') is 'a ~ b' | 116 PASS setThenReadSelectorText('a~b') is 'a ~ b' |
114 PASS setThenReadSelectorText('a>b') is 'a > b' | 117 PASS setThenReadSelectorText('a>b') is 'a > b' |
115 | 118 |
116 PASS setThenReadSelectorText(':after') is '::after' | 119 PASS setThenReadSelectorText(':after') is '::after' |
117 PASS setThenReadSelectorText(':before') is '::before' | 120 PASS setThenReadSelectorText(':before') is '::before' |
118 PASS setThenReadSelectorText(':first-letter') is '::first-letter' | 121 PASS setThenReadSelectorText(':first-letter') is '::first-letter' |
119 PASS setThenReadSelectorText(':first-line') is '::first-line' | 122 PASS setThenReadSelectorText(':first-line') is '::first-line' |
120 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )')
is ':-webkit-any(a.class1,#id,[attr])' | 123 PASS setThenReadSelectorText(':-webkit-any( a.class1 , #id,[attr] )')
is ':-webkit-any(a.class1,#id,[attr])' |
121 | 124 |
122 PASS successfullyParsed is true | 125 PASS successfullyParsed is true |
123 | 126 |
124 TEST COMPLETE | 127 TEST COMPLETE |
125 | 128 |
OLD | NEW |