Index: LayoutTests/inspector/elements/styles/media-using-same-url.html |
diff --git a/LayoutTests/inspector/elements/styles/media-using-same-url.html b/LayoutTests/inspector/elements/styles/media-using-same-url.html |
deleted file mode 100644 |
index 28f2035e9c065b3600e6be0120112d775ac9ec4a..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/styles/media-using-same-url.html |
+++ /dev/null |
@@ -1,45 +0,0 @@ |
-<html> |
-<head> |
- |
-<style type="text/css" media="screen"> |
-@media not print { |
-#main { |
- background: blue; |
-} |
-} |
-</style> |
- |
-<style type="text/css" media="screen"> |
-@media not print { |
-#main { |
- color: white; |
-} |
-} |
-</style> |
- |
-<script src="../../../http/tests/inspector/inspector-test.js"></script> |
-<script src="../../../http/tests/inspector/elements-test.js"></script> |
-<script> |
- |
-function test() |
-{ |
- InspectorTest.selectNodeAndWaitForStyles("main", step1); |
- |
- function step1() |
- { |
- InspectorTest.addResult("Main style:"); |
- InspectorTest.dumpSelectedElementStyles(true, false, true); |
- InspectorTest.completeTest(); |
- } |
-} |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests that media query stack is computed correctly when several stylesheets share the same URL. |
-</p> |
- |
-<div id="main"></div> |
-</body> |
-</html> |