summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/unknown-pseudo-element-matching-expected.txt
blob: 4c6b34785bcc7c568b8c6da4fc5e4db6d93e9238 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
Tests various selector combinations, containing unknown pseudo element selectors.

Basic selector tests:
::-webkit-slider-thumb should match: PASS
*::-webkit-slider-thumb should match: PASS
::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
*|::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
*|*::-webkit-slider-thumb, where HTML is not default namespace should match: PASS
html|::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
html|*::-webkit-slider-thumb, where HTML is not default namespace should match: PASS
#foo::-webkit-slider-thumb should match: PASS
.bar::-webkit-slider-thumb should match: PASS
#foo::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
.bar::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
html|#foo::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
html|.bar::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
*|#foo::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
input::-webkit-slider-thumb should match: PASS
input#foo::-webkit-slider-thumb should match: PASS
input.bar::-webkit-slider-thumb should match: PASS
input::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
input#foo::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
input.bar::-webkit-slider-thumb, where HTML is not default namespace should not match: PASS
html|input::-webkit-slider-thumb, where HTML is not default namespace should match: PASS
html|input#foo::-webkit-slider-thumb, where HTML is not default namespace should match: PASS
html|input.bar::-webkit-slider-thumb, where HTML is not default namespace should match: PASS
*|input#foo::-webkit-slider-thumb, where HTML is not default namespace should match: PASS
input[type=range]::-webkit-slider-thumb should match: PASS
input#foo[type=range]::-webkit-slider-thumb should match: PASS
input.bar[type=range]::-webkit-slider-thumb should match: PASS

Shouldn't ignore selector after the unknown pseudo element:
::-webkit-slider-thumb:disabled should not match: PASS
*::-webkit-slider-thumb:disabled should not match: PASS
input::-webkit-slider-thumb:disabled should not match: PASS
#foo::-webkit-slider-thumb:disabled should not match: PASS
input#foo::-webkit-slider-thumb:disabled should not match: PASS
input.bar::-webkit-slider-thumb:disabled should not match: PASS
input[type=range]::-webkit-slider-thumb:disabled should not match: PASS

Should not match disabled input, because the disabled state is on the input, not the thumb:
::-webkit-slider-thumb:disabled should not match: PASS
*::-webkit-slider-thumb:disabled should not match: PASS
input::-webkit-slider-thumb:disabled should not match: PASS
#foo::-webkit-slider-thumb:disabled should not match: PASS
input#foo::-webkit-slider-thumb:disabled should not match: PASS
input.bar::-webkit-slider-thumb:disabled should not match: PASS
input[type=range]::-webkit-slider-thumb:disabled should not match: PASS

Should match :hover when the mouse is over the slider thumb:
::-webkit-slider-thumb:hover should match: PASS
*::-webkit-slider-thumb:hover should match: PASS
input::-webkit-slider-thumb:hover should match: PASS
#foo::-webkit-slider-thumb:hover should match: PASS
input#foo::-webkit-slider-thumb:hover should match: PASS
input.bar::-webkit-slider-thumb:hover should match: PASS
input[type=range]::-webkit-slider-thumb:hover should match: PASS

Should match when combined with descendant selectors:
#baz ::-webkit-slider-thumb should match: PASS
#baz *::-webkit-slider-thumb should match: PASS
#baz input::-webkit-slider-thumb should match: PASS
#baz #foo::-webkit-slider-thumb should match: PASS
#baz input#foo::-webkit-slider-thumb should match: PASS
#baz input.bar::-webkit-slider-thumb should match: PASS
#baz input[type=range]::-webkit-slider-thumb should match: PASS
.qux ::-webkit-slider-thumb should match: PASS
.qux *::-webkit-slider-thumb should match: PASS
.qux input::-webkit-slider-thumb should match: PASS
.qux #foo::-webkit-slider-thumb should match: PASS
.qux input#foo::-webkit-slider-thumb should match: PASS
.qux input.bar::-webkit-slider-thumb should match: PASS
.qux input[type=range]::-webkit-slider-thumb should match: PASS

Should match when combined with sibling selectors:
#sib + ::-webkit-slider-thumb should match: PASS
#sib + *::-webkit-slider-thumb should match: PASS
#sib + input::-webkit-slider-thumb should match: PASS
#sib + #foo::-webkit-slider-thumb should match: PASS
#sib + input#foo::-webkit-slider-thumb should match: PASS
#sib + input.bar::-webkit-slider-thumb should match: PASS
#sib + input[type=range]::-webkit-slider-thumb should match: PASS
#sib ~ ::-webkit-slider-thumb should match: PASS
#sib ~ *::-webkit-slider-thumb should match: PASS
#sib ~ input::-webkit-slider-thumb should match: PASS
#sib ~ #foo::-webkit-slider-thumb should match: PASS
#sib ~ input#foo::-webkit-slider-thumb should match: PASS
#sib ~ input.bar::-webkit-slider-thumb should match: PASS
#sib ~ input[type=range]::-webkit-slider-thumb should match: PASS
.ling + ::-webkit-slider-thumb should match: PASS
.ling + *::-webkit-slider-thumb should match: PASS
.ling + input::-webkit-slider-thumb should match: PASS
.ling + #foo::-webkit-slider-thumb should match: PASS
.ling + input#foo::-webkit-slider-thumb should match: PASS
.ling + input.bar::-webkit-slider-thumb should match: PASS
.ling + input[type=range]::-webkit-slider-thumb should match: PASS
.ling ~ ::-webkit-slider-thumb should match: PASS
.ling ~ *::-webkit-slider-thumb should match: PASS
.ling ~ input::-webkit-slider-thumb should match: PASS
.ling ~ #foo::-webkit-slider-thumb should match: PASS
.ling ~ input#foo::-webkit-slider-thumb should match: PASS
.ling ~ input.bar::-webkit-slider-thumb should match: PASS
.ling ~ input[type=range]::-webkit-slider-thumb should match: PASS