| Index: LayoutTests/fast/dom/shadow/part-pseudo-element-css-text.html
|
| diff --git a/LayoutTests/fast/dom/shadow/part-pseudo-element-css-text.html b/LayoutTests/fast/dom/shadow/part-pseudo-element-css-text.html
|
| deleted file mode 100644
|
| index 6fc6358afc6718192110ac9251a7a8fa77897693..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/part-pseudo-element-css-text.html
|
| +++ /dev/null
|
| @@ -1,21 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -<style id="style1">
|
| -div > .foo::part(target) { display: block; }
|
| -</style>
|
| -<style id="style-invalid">
|
| -::part(target1, target2) { display: block }
|
| -::part(target1.foo#bar) { display: block }
|
| -::part(target1:hover) { display: block }
|
| -::part() { display: block }
|
| -::part { display: block }
|
| -</style>
|
| -</head>
|
| -<script>
|
| -description("Test for cssText of ':host()' rule.");
|
| -shouldBeEqualToString("document.getElementById('style1').sheet.cssRules.item(0).cssText", "div > .foo::part(target) { display: block; }");
|
| -shouldBe("document.getElementById('style-invalid').sheet.cssRules.length", "0");
|
| -</script>
|
| -</html>
|
|
|