| 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 |
| 10 PASS sandbox.firstChild.webkitMatchesSelector("div::x-part") is false |
| 11 PASS sandbox.firstChild.querySelector("div::x-pseudo") is null |
| 12 PASS sandbox.firstChild.querySelector("div::x-part") is null |
| 13 PASS sandbox.firstChild.querySelectorAll("div::x-pseudo").length is 0 |
| 14 PASS sandbox.firstChild.querySelectorAll("div::x-part").length is 0 |
| 9 PASS successfullyParsed is true | 15 PASS successfullyParsed is true |
| 10 | 16 |
| 11 TEST COMPLETE | 17 TEST COMPLETE |
| 12 | 18 |
| OLD | NEW |