Index: LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api-expected.txt |
diff --git a/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api-expected.txt b/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api-expected.txt |
index 21f2d6ccd1f8b72a4960be65d0a67f3a9d027652..08a2b22724b96eb6ba8230476bdbb9eca908021f 100644 |
--- a/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api-expected.txt |
+++ b/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api-expected.txt |
@@ -6,6 +6,12 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE |
PASS sandbox.firstChild.webkitMatchesSelector("input[type='search']::-webkit-search-decoration") is false |
PASS sandbox.firstChild.querySelector("input[type='search']::-webkit-search-decoration") is null |
PASS sandbox.firstChild.querySelectorAll("input[type='search']::-webkit-search-decoration").length is 0 |
+PASS sandbox.firstChild.webkitMatchesSelector("div::x-pseudo") is false |
+PASS sandbox.firstChild.webkitMatchesSelector("div::x-part") is false |
+PASS sandbox.firstChild.querySelector("div::x-pseudo") is null |
+PASS sandbox.firstChild.querySelector("div::x-part") is null |
+PASS sandbox.firstChild.querySelectorAll("div::x-pseudo").length is 0 |
+PASS sandbox.firstChild.querySelectorAll("div::x-part").length is 0 |
PASS successfullyParsed is true |
TEST COMPLETE |