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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/querySelector-for-useragent-shadowroot-expected.txt

Issue 1796573005: Do not show deprecation message for ::shadow and /deep/ on querySelector (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix layout test expectation Created 4 years, 9 months 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
OLDNEW
1 CONSOLE WARNING: /deep/ combinator is deprecated. See https://www.chromestatus.c om/features/6750456638341120 for more details.
2 1
3 2
4 crbug.com/337616: test for querySelectorAll with ::shadow and /deep/ 3 crbug.com/337616: test for querySelectorAll with ::shadow and /deep/
5 4
6 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
7 6
8 7
9 PASS document.querySelectorAll("form /deep/ *").length is 1 8 PASS document.querySelectorAll("form /deep/ *").length is 1
10 PASS document.querySelectorAll("form /deep/ *")[0].id is "input" 9 PASS document.querySelectorAll("form /deep/ *")[0].id is "input"
11 PASS document.querySelectorAll("form::shadow *").length is 0 10 PASS document.querySelectorAll("form::shadow *").length is 0
12 PASS document.querySelectorAll("input /deep/ *").length is 0 11 PASS document.querySelectorAll("input /deep/ *").length is 0
13 PASS document.querySelectorAll("input::shadow *").length is 0 12 PASS document.querySelectorAll("input::shadow *").length is 0
14 PASS document.querySelectorAll("details /deep/ *").length is 2 13 PASS document.querySelectorAll("details /deep/ *").length is 2
15 PASS document.querySelectorAll("details /deep/ *")[0].id is "summary" 14 PASS document.querySelectorAll("details /deep/ *")[0].id is "summary"
16 PASS document.querySelectorAll("details /deep/ *")[1].id is "p" 15 PASS document.querySelectorAll("details /deep/ *")[1].id is "p"
17 PASS document.querySelectorAll("details::shadow *").length is 0 16 PASS document.querySelectorAll("details::shadow *").length is 0
18 PASS document.querySelectorAll("summary /deep/ *").length is 0 17 PASS document.querySelectorAll("summary /deep/ *").length is 0
19 PASS document.querySelectorAll("summary::shadow *").length is 0 18 PASS document.querySelectorAll("summary::shadow *").length is 0
20 PASS document.querySelectorAll("meter /deep/ *").length is 0 19 PASS document.querySelectorAll("meter /deep/ *").length is 0
21 PASS document.querySelectorAll("meter::shadow *").length is 0 20 PASS document.querySelectorAll("meter::shadow *").length is 0
22 PASS document.querySelectorAll("progress /deep/ *").length is 0 21 PASS document.querySelectorAll("progress /deep/ *").length is 0
23 PASS document.querySelectorAll("progress::shadow *").length is 0 22 PASS document.querySelectorAll("progress::shadow *").length is 0
24 PASS successfullyParsed is true 23 PASS successfullyParsed is true
25 24
26 TEST COMPLETE 25 TEST COMPLETE
27 26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698