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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/querySelector-with-shadow-all-and-shadow-deep-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: ::shadow pseudo-element is deprecated. See https://www.chromest atus.com/features/6750456638341120 for more details.
2 CONSOLE WARNING: /deep/ combinator is deprecated. See https://www.chromestatus.c om/features/6750456638341120 for more details.
3 crbug.com/337616: test for querySelectorAll with ::shadow and /deep/ 1 crbug.com/337616: test for querySelectorAll with ::shadow and /deep/
4 2
5 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 ".
6 4
7 5
8 PASS document.querySelectorAll("#foo-host::shadow span").length is 3 6 PASS document.querySelectorAll("#foo-host::shadow span").length is 3
9 PASS document.querySelectorAll("#foo-host::shadow span")[0].id is "not-top" 7 PASS document.querySelectorAll("#foo-host::shadow span")[0].id is "not-top"
10 PASS document.querySelectorAll("#foo-host::shadow span")[1].id is "top" 8 PASS document.querySelectorAll("#foo-host::shadow span")[1].id is "top"
11 PASS document.querySelectorAll("#foo-host::shadow span")[2].id is "inner-host" 9 PASS document.querySelectorAll("#foo-host::shadow span")[2].id is "inner-host"
12 PASS document.querySelectorAll("#foo-host /deep/ span").length is 5 10 PASS document.querySelectorAll("#foo-host /deep/ span").length is 5
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 PASS fooHost.querySelectorAll("::shadow span")[1].id is "top" 50 PASS fooHost.querySelectorAll("::shadow span")[1].id is "top"
53 PASS fooHost.querySelectorAll("::shadow span")[2].id is "inner-host" 51 PASS fooHost.querySelectorAll("::shadow span")[2].id is "inner-host"
54 PASS document.querySelectorAll("::shadow span").length is 3 52 PASS document.querySelectorAll("::shadow span").length is 3
55 PASS document.querySelectorAll("::shadow span")[0].id is "not-top" 53 PASS document.querySelectorAll("::shadow span")[0].id is "not-top"
56 PASS document.querySelectorAll("::shadow span")[1].id is "top" 54 PASS document.querySelectorAll("::shadow span")[1].id is "top"
57 PASS document.querySelectorAll("::shadow span")[2].id is "inner-host" 55 PASS document.querySelectorAll("::shadow span")[2].id is "inner-host"
58 PASS successfullyParsed is true 56 PASS successfullyParsed is true
59 57
60 TEST COMPLETE 58 TEST COMPLETE
61 59
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698