Index: LayoutTests/inspector/elements/styles/shadow-dom-rules.html |
diff --git a/LayoutTests/inspector/elements/styles/shadow-dom-rules.html b/LayoutTests/inspector/elements/styles/shadow-dom-rules.html |
deleted file mode 100644 |
index c1324c89786545a86e3bd13f5f47e2d083072396..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/styles/shadow-dom-rules.html |
+++ /dev/null |
@@ -1,47 +0,0 @@ |
-<html> |
-<head> |
-<script src="../../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../../http/tests/inspector/elements-test.js"></script> |
-<script> |
- |
-function createShadowRoot() |
-{ |
- var template = document.querySelector('#tmpl'); |
- var root = document.querySelector('#host').createShadowRoot(); |
- root.appendChild(template.content.cloneNode(true)); |
-} |
- |
-function test() |
-{ |
- InspectorTest.runTestSuite([ |
- function testInit(next) |
- { |
- InspectorTest.evaluateInPage("createShadowRoot()", callback); |
- function callback() |
- { |
- InspectorTest.selectNodeAndWaitForStyles("inner", next); |
- } |
- }, |
- |
- function testDumpStyles(next) |
- { |
- InspectorTest.dumpSelectedElementStyles(true); |
- next(); |
- } |
- ]); |
-} |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-This test checks that style sheets hosted inside shadow roots |
-could be inspected. |
-</p> |
-<div id="host"></div> |
-<template id="tmpl"> |
- <style> .red { color: red; } </style> |
- <div id="inner" class="red">hi!</div> |
-</template> |
-</body> |
-</html> |