Index: LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html |
diff --git a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html b/LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html |
deleted file mode 100644 |
index 1efb4f84902d738ae029b720908ebe43f450501b..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-style-in-doc.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<!doctype html> |
-<html> |
-<head> |
-<style> |
- ::-webkit-distributed(h1) { |
- border: 1px solid currentcolor; |
- } |
- h1 { |
- color: red; |
- } |
-</style> |
- |
-<template> |
- <content select="#second"></content> |
-</template> |
- |
-<script> |
-function runTest() { |
- var host = document.querySelector('#shadowhost'); |
- var shadow = host.createShadowRoot(); |
- shadow.innerHTML = document.querySelector('template').innerHTML; |
-} |
-</script> |
-</head> |
-<body onload="runTest()"> |
-<div id='shadowhost'> |
- <h1 id='first'>First element</h1> |
- <h1 id='second'>I should be red without a border</h1> |
-</div> |
-</body> |
-</html> |