| Index: LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector.html
|
| diff --git a/LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector.html b/LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector.html
|
| deleted file mode 100644
|
| index 23b46236a306f4065a304d71a0e0e95edd3dac20..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/content-pseudo-element-relative-selector.html
|
| +++ /dev/null
|
| @@ -1,27 +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 > 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('green')))));
|
| -</script>
|
| -</body>
|
| -</html>
|
|
|