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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/shadow/stylesheets-order-in-shadow-dom.html

Issue 2843883002: Remove, or rewrite if necessary, tests which use /deep/ or ::shadow (Closed)
Patch Set: rev Created 3 years, 8 months 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: third_party/WebKit/LayoutTests/fast/dom/shadow/stylesheets-order-in-shadow-dom.html
diff --git a/third_party/WebKit/LayoutTests/fast/dom/shadow/stylesheets-order-in-shadow-dom.html b/third_party/WebKit/LayoutTests/fast/dom/shadow/stylesheets-order-in-shadow-dom.html
deleted file mode 100644
index 7072ae195d9b02d708b05023eb8e8854cb1035aa..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/dom/shadow/stylesheets-order-in-shadow-dom.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<!DOCTYPE html>
-<script src="resources/shadow-dom.js"></script>
-<script src="../../../resources/js-test.js"></script>
-<style>
-.hello, div::shadow .hello {
- color: yellowgreen;
-}
-.world, div::shadow .world {
- color: red;
-}
-</style>
-<style>
-.world, div::shadow .world {
- color: yellow;
-}
-</style>
-<body></body>
-<script>
-description('crbug.com/396585: ShadowDom CSS doesn\'t merge style');
-
-document.body.appendChild(
- createDOM('div', {'id': 'host'},
- createShadowRoot(
- createDOM('span', {'class': 'hello' },
- document.createTextNode("Hello, ")),
- createDOM('span', {'id': 'world', 'class': 'hello world' },
- document.createTextNode("World")))));
-
-shouldBe('window.getComputedStyle(getNodeInComposedTree("host/world")).color', '"rgb(255, 255, 0)"');
-</script>

Powered by Google App Engine
This is Rietveld 408576698