Index: LayoutTests/fast/dom/shadow/distributed-pseudo-element-relative-selector-invalid.html |
diff --git a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-relative-selector-invalid.html b/LayoutTests/fast/dom/shadow/distributed-pseudo-element-relative-selector-invalid.html |
deleted file mode 100644 |
index ad9e0e81920b9c51a4eba46be5d2bc557f560d84..0000000000000000000000000000000000000000 |
--- a/LayoutTests/fast/dom/shadow/distributed-pseudo-element-relative-selector-invalid.html |
+++ /dev/null |
@@ -1,29 +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(+ div1 div2) { color: green; }' + |
- 'content::-webkit-distributed(~ div1 div2) { color: green; }'; |
- |
-var sandbox = document.getElementById('sandbox'); |
-sandbox.appendChild( |
- createDOM('div', {}, |
- createShadowRoot( |
- shadowStyle, |
- createDOM('content')), |
- createDOM('div', {}, |
- createDOM('div1', {}, |
- createDOM('div2', {}, |
- document.createTextNode('normal')))), |
- createDOM('div1', {}, |
- createDOM('div2', {}, |
- document.createTextNode('normal'))))); |
-</script> |
-</body> |
-</html> |