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 |