Index: LayoutTests/fast/dom/shadow/distributed-pseudo-element.html |
diff --git a/LayoutTests/fast/dom/shadow/distributed-pseudo-element.html b/LayoutTests/fast/dom/shadow/distributed-pseudo-element.html |
deleted file mode 100644 |
index d243ca1c8c94f3268b64f70edd2126b07b0df01a..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/distributed-pseudo-element.html |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<script src="resources/shadow-dom.js"></script> |
-</head> |
-<body> |
-<div id="sandbox"></div> |
-<script> |
-var shadowStyle = document.createElement('style'); |
-shadowStyle.innerHTML = 'content::-webkit-distributed(div) { color: green; }'; |
- |
-var sandbox = document.getElementById('sandbox'); |
-sandbox.appendChild( |
- createDOM('div', {}, |
- createShadowRoot( |
- shadowStyle, |
- createDOM('content')), |
- createDOM('div', {}, |
- document.createTextNode('green')))); |
-</script> |
-</body> |
-</html> |