| Index: LayoutTests/fast/dom/shadow/content-pseudo-element-match-descendant.html
|
| diff --git a/LayoutTests/fast/dom/shadow/content-pseudo-element-match-descendant.html b/LayoutTests/fast/dom/shadow/content-pseudo-element-match-descendant.html
|
| deleted file mode 100644
|
| index 7cc0952f2b774ecca3511f4e888a45a797ee3785..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/content-pseudo-element-match-descendant.html
|
| +++ /dev/null
|
| @@ -1,23 +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::content div { color: green; }';
|
| -
|
| -var sandbox = document.getElementById('sandbox');
|
| -sandbox.appendChild(
|
| - createDOM('div', {},
|
| - createShadowRoot(
|
| - shadowStyle,
|
| - createDOM('content')),
|
| - createDOM('p', {},
|
| - createDOM('div', {},
|
| - document.createTextNode('green')))));
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|