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

Unified Diff: LayoutTests/fast/dom/shadow/querySelector-for-useragent-shadowroot-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-useragent-shadowroot-expected.txt
diff --git a/LayoutTests/fast/dom/shadow/querySelector-for-useragent-shadowroot-expected.txt b/LayoutTests/fast/dom/shadow/querySelector-for-useragent-shadowroot-expected.txt
index 66890fef375d99ec6fb883492816df1c78a02a8a..b4f96f2872804d4adccc001dc71e33792e0002dc 100644
--- a/LayoutTests/fast/dom/shadow/querySelector-for-useragent-shadowroot-expected.txt
+++ b/LayoutTests/fast/dom/shadow/querySelector-for-useragent-shadowroot-expected.txt
@@ -1,25 +1,25 @@
-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("form /deep/ *").length is 1
PASS document.querySelectorAll("form /deep/ *")[0].id is "input"
-PASS document.querySelectorAll("form /shadow/ *").length is 0
+PASS document.querySelectorAll("form::shadow *").length is 0
PASS document.querySelectorAll("input /deep/ *").length is 0
-PASS document.querySelectorAll("input /shadow/ *").length is 0
+PASS document.querySelectorAll("input::shadow *").length is 0
PASS document.querySelectorAll("details /deep/ *").length is 2
PASS document.querySelectorAll("details /deep/ *")[0].id is "summary"
PASS document.querySelectorAll("details /deep/ *")[1].id is "p"
-PASS document.querySelectorAll("details /shadow/ *").length is 0
+PASS document.querySelectorAll("details::shadow *").length is 0
PASS document.querySelectorAll("summary /deep/ *").length is 0
-PASS document.querySelectorAll("summary /shadow/ *").length is 0
+PASS document.querySelectorAll("summary::shadow *").length is 0
PASS document.querySelectorAll("meter /deep/ *").length is 0
-PASS document.querySelectorAll("meter /shadow/ *").length is 0
+PASS document.querySelectorAll("meter::shadow *").length is 0
PASS document.querySelectorAll("progress /deep/ *").length is 0
-PASS document.querySelectorAll("progress /shadow/ *").length is 0
+PASS document.querySelectorAll("progress::shadow *").length is 0
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698