| Index: LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class.html
|
| diff --git a/LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class.html b/LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class.html
|
| deleted file mode 100644
|
| index 68fd009173322ad2f78f0fef9418aa14e416c1fe..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/content-pseudo-element-with-host-pseudo-class.html
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -<!doctype html>
|
| -<html>
|
| -<head>
|
| -<script src="resources/shadow-dom.js"></script>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -</head>
|
| -<body class="bodyClass">
|
| -
|
| - <template id="tmpl">
|
| - <style>
|
| - :host > .blue {
|
| - color: blue;
|
| - }
|
| - :host > ::content > * {
|
| - color: red;
|
| - }
|
| - </style>
|
| - <div class="blue">I am blue!</div>
|
| - <content></content>
|
| - </template>
|
| -
|
| - <div id="host" class="hostClass">
|
| - <div class="content">
|
| - content
|
| - </div>
|
| - </div>
|
| -
|
| - <pre id="console"></pre>
|
| -</body>
|
| -<script>
|
| -description("Test for crbug.com/274063, cannot style ::content with a rule that includes :host.");
|
| -
|
| -var host = document.querySelector('#host');
|
| -var root = host.createShadowRoot();
|
| -var template = document.querySelector('#tmpl');
|
| -root.appendChild(template.content);
|
| -
|
| -shouldBe('window.getComputedStyle(document.querySelector("#host > .content")).color', '"rgb(255, 0, 0)"');
|
| -</script>
|
| -</html>
|
|
|