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

Unified Diff: LayoutTests/fast/dom/shadow/part-pseudo-element-css-text.html

Issue 82863002: Remove ::part. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/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>

Powered by Google App Engine
This is Rietveld 408576698