OLD | NEW |
1 Test for crbug.com/273960. Vendor prefixed pseudo elements should not cause DOM
exception 12 when using querySelector, querySelectorAll and webkitMatchesSelecto
r. | 1 Test for crbug.com/273960. Vendor prefixed pseudo elements should not cause DOM
exception 12 when using querySelector, querySelectorAll and webkitMatchesSelecto
r. |
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 sandbox.firstChild.webkitMatchesSelector("input[type='search']::-webkit-sea
rch-decoration") is false | 6 PASS sandbox.firstChild.webkitMatchesSelector("input[type='search']::-webkit-sea
rch-decoration") is false |
7 PASS sandbox.firstChild.querySelector("input[type='search']::-webkit-search-deco
ration") is null | 7 PASS sandbox.firstChild.querySelector("input[type='search']::-webkit-search-deco
ration") is null |
8 PASS sandbox.firstChild.querySelectorAll("input[type='search']::-webkit-search-d
ecoration").length is 0 | 8 PASS sandbox.firstChild.querySelectorAll("input[type='search']::-webkit-search-d
ecoration").length is 0 |
9 PASS sandbox.firstChild.webkitMatchesSelector("div::x-pseudo") is false | 9 PASS sandbox.firstChild.webkitMatchesSelector("div::x-pseudo") is false |
10 PASS sandbox.firstChild.webkitMatchesSelector("div::x-part") is false | 10 PASS sandbox.firstChild.webkitMatchesSelector("div::x-part") is false |
11 PASS sandbox.firstChild.webkitMatchesSelector("div::part(x-part)") is false | |
12 PASS sandbox.firstChild.querySelector("div::x-pseudo") is null | 11 PASS sandbox.firstChild.querySelector("div::x-pseudo") is null |
13 PASS sandbox.firstChild.querySelector("div::x-part") is null | 12 PASS sandbox.firstChild.querySelector("div::x-part") is null |
14 PASS sandbox.firstChild.querySelector("div::part(x-part)") is null | |
15 PASS sandbox.firstChild.querySelectorAll("div::x-pseudo").length is 0 | 13 PASS sandbox.firstChild.querySelectorAll("div::x-pseudo").length is 0 |
16 PASS sandbox.firstChild.querySelectorAll("div::x-part").length is 0 | 14 PASS sandbox.firstChild.querySelectorAll("div::x-part").length is 0 |
17 PASS sandbox.firstChild.querySelectorAll("div::part(x-part)").length is 0 | |
18 PASS successfullyParsed is true | 15 PASS successfullyParsed is true |
19 | 16 |
20 TEST COMPLETE | 17 TEST COMPLETE |
21 | 18 |
OLD | NEW |