| Index: LayoutTests/fast/dom/shadow/content-pseudo-element-overridden.html
|
| diff --git a/LayoutTests/fast/dom/shadow/content-pseudo-element-overridden.html b/LayoutTests/fast/dom/shadow/content-pseudo-element-overridden.html
|
| deleted file mode 100644
|
| index 7ef8cd5a7d65e9fbb45fa6efb8560565196f9332..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/dom/shadow/content-pseudo-element-overridden.html
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -<!doctype html>
|
| -<html>
|
| -<head>
|
| -<script src="../../../resources/js-test.js"></script>
|
| -<style>
|
| - .contentClass {
|
| - color: blue;
|
| - }
|
| -</style>
|
| -</head>
|
| -<body class="bodyClass">
|
| -
|
| - <template id="tmpl">
|
| - <style>
|
| - ::content > * {
|
| - color: red;
|
| - }
|
| - </style>
|
| - <content></content>
|
| - </template>
|
| -
|
| - <div id="host" class="hostClass">
|
| - <div class="contentClass">
|
| - content
|
| - </div>
|
| - </div>
|
| -
|
| - <pre id='console'></pre>
|
| -</body>
|
| -<script>
|
| -description('Test for crbug.com/274059. Should be able to override ::content styles in shadow root style sheet from the document.');
|
| -var host = document.querySelector('#host');
|
| -var root = host.createShadowRoot();
|
| -var template = document.querySelector('#tmpl');
|
| -root.appendChild(template.content);
|
| -shouldBe('window.getComputedStyle(document.querySelector(".contentClass")).color', '"rgb(0, 0, 255)"');
|
| -</script>
|
| -</html>
|
|
|