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

Unified Diff: LayoutTests/fast/dom/shadow/querySelector-for-multiple-shadowroots-expected.txt

Issue 210713002: Implement ::shadow pseudo element and replace /shadow/ with ::shadow. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed patch conflict Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/shadow/querySelector-for-multiple-shadowroots-expected.txt
diff --git a/LayoutTests/fast/dom/shadow/querySelector-for-multiple-shadowroots-expected.txt b/LayoutTests/fast/dom/shadow/querySelector-for-multiple-shadowroots-expected.txt
index a4befacb759a81ce346d4ab2cbb64ec77c15b0f6..0537c73528e3cbc21c899672a9a5431c209468ad 100644
--- a/LayoutTests/fast/dom/shadow/querySelector-for-multiple-shadowroots-expected.txt
+++ b/LayoutTests/fast/dom/shadow/querySelector-for-multiple-shadowroots-expected.txt
@@ -1,24 +1,24 @@
-crbug.com/337616: test for querySelectorAll with /shadow/ and /deep/
+crbug.com/337616: test for querySelectorAll with ::shadow and /deep/
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-PASS document.querySelectorAll("#foo-host /shadow/ span").length is 6
-PASS document.querySelectorAll("#foo-host /shadow/ span")[0].id is "not-top1"
-PASS document.querySelectorAll("#foo-host /shadow/ span")[1].id is "top1"
-PASS document.querySelectorAll("#foo-host /shadow/ span")[2].id is "not-top2"
-PASS document.querySelectorAll("#foo-host /shadow/ span")[3].id is "top2"
-PASS document.querySelectorAll("#foo-host /shadow/ span")[4].id is "not-top3"
-PASS document.querySelectorAll("#foo-host /shadow/ span")[5].id is "top3"
-PASS shadowRoot1.querySelectorAll(":host /shadow/ span").length is 2
-PASS shadowRoot1.querySelectorAll(":host /shadow/ span")[0].id is "not-top1"
-PASS shadowRoot1.querySelectorAll(":host /shadow/ span")[1].id is "top1"
-PASS shadowRoot2.querySelectorAll(":host /shadow/ span").length is 2
-PASS shadowRoot2.querySelectorAll(":host /shadow/ span")[0].id is "not-top2"
-PASS shadowRoot2.querySelectorAll(":host /shadow/ span")[1].id is "top2"
-PASS shadowRoot3.querySelectorAll(":host /shadow/ span").length is 2
-PASS shadowRoot3.querySelectorAll(":host /shadow/ span")[0].id is "not-top3"
-PASS shadowRoot3.querySelectorAll(":host /shadow/ span")[1].id is "top3"
+PASS document.querySelectorAll("#foo-host::shadow span").length is 6
+PASS document.querySelectorAll("#foo-host::shadow span")[0].id is "not-top1"
+PASS document.querySelectorAll("#foo-host::shadow span")[1].id is "top1"
+PASS document.querySelectorAll("#foo-host::shadow span")[2].id is "not-top2"
+PASS document.querySelectorAll("#foo-host::shadow span")[3].id is "top2"
+PASS document.querySelectorAll("#foo-host::shadow span")[4].id is "not-top3"
+PASS document.querySelectorAll("#foo-host::shadow span")[5].id is "top3"
+PASS shadowRoot1.querySelectorAll(":host::shadow span").length is 2
+PASS shadowRoot1.querySelectorAll(":host::shadow span")[0].id is "not-top1"
+PASS shadowRoot1.querySelectorAll(":host::shadow span")[1].id is "top1"
+PASS shadowRoot2.querySelectorAll(":host::shadow span").length is 2
+PASS shadowRoot2.querySelectorAll(":host::shadow span")[0].id is "not-top2"
+PASS shadowRoot2.querySelectorAll(":host::shadow span")[1].id is "top2"
+PASS shadowRoot3.querySelectorAll(":host::shadow span").length is 2
+PASS shadowRoot3.querySelectorAll(":host::shadow span")[0].id is "not-top3"
+PASS shadowRoot3.querySelectorAll(":host::shadow span")[1].id is "top3"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698