Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(108)

Side by Side Diff: LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api-expected.txt

Issue 82863002: Remove ::part. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698