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> |