Index: LayoutTests/fast/dom/shadow/distributed-pseudo-element-support-selector.html |
diff --git a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-support-selector.html b/LayoutTests/fast/dom/shadow/distributed-pseudo-element-support-selector.html |
deleted file mode 100644 |
index 3fdbd86ef782b141cff59ba3c165ba57eb3e785d..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-support-selector.html |
+++ /dev/null |
@@ -1,28 +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.hello div) { color: green; }'; |
- |
-var sandbox = document.getElementById('sandbox'); |
-sandbox.appendChild( |
- createDOM('div', {'id': 'host'}, |
- createShadowRoot( |
- shadowStyle, |
- createDOM('content')), |
- createDOM('div', {'class': 'hello'}, |
- document.createTextNode('normal'), |
- createDOM('div', {}, |
- document.createTextNode('green'))), |
- createDOM('div', {}, |
- document.createTextNode('normal'), |
- createDOM('div', {}, |
- document.createTextNode('normal'))))); |
-</script> |
-</body> |
-</html> |