Index: LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api.html |
diff --git a/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api.html b/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api.html |
index 23ba21003b5c2d396340c767adb4865dc2ec503b..ccda1a6f9431708eea9624247c929055ba8145ba 100644 |
--- a/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api.html |
+++ b/LayoutTests/fast/dom/shadow/custom-pseudo-in-selector-api.html |
@@ -26,13 +26,10 @@ sandbox.appendChild( |
shouldBeFalse('sandbox.firstChild.webkitMatchesSelector("div::x-pseudo")'); |
shouldBeFalse('sandbox.firstChild.webkitMatchesSelector("div::x-part")'); |
-shouldBeFalse('sandbox.firstChild.webkitMatchesSelector("div::part(x-part)")'); |
shouldBeNull('sandbox.firstChild.querySelector("div::x-pseudo")'); |
shouldBeNull('sandbox.firstChild.querySelector("div::x-part")'); |
-shouldBeNull('sandbox.firstChild.querySelector("div::part(x-part)")'); |
shouldBe('sandbox.firstChild.querySelectorAll("div::x-pseudo").length', '0'); |
shouldBe('sandbox.firstChild.querySelectorAll("div::x-part").length', '0'); |
-shouldBe('sandbox.firstChild.querySelectorAll("div::part(x-part)").length', '0'); |
sandbox.innerHTML = ''; |
</script> |