Index: LayoutTests/inspector/elements/styles/styles-source-lines.html |
diff --git a/LayoutTests/inspector/elements/styles/styles-source-lines.html b/LayoutTests/inspector/elements/styles/styles-source-lines.html |
deleted file mode 100644 |
index b02410bc7ec7ab03fa094c1bf5e6dc5c3c2d8275..0000000000000000000000000000000000000000 |
--- a/LayoutTests/inspector/elements/styles/styles-source-lines.html |
+++ /dev/null |
@@ -1,82 +0,0 @@ |
-<html> |
-<head> |
-<!-- |
- Line numbers are reported wrt the opened style tag baseline. |
- Allow some space here to align local line numbers to be style + 10. |
- Selector sourceLine is the line of the corresponding { following the |
- selector text. |
---> |
- |
-<style type="text/css" media="screen"> |
-#main, .at_line_11::/* |
-Multiline comment |
-before pseudo element |
- */before |
-{ |
- color:red; |
- content: "Before" |
-} |
-/* |
- |
-Multiline comment followed with whitespace |
- |
- |
-*/ |
- |
-#main, .at_line_26 |
- |
- |
-{ |
- /* Comment in definition*/ |
- /* Comment in definition 2*/ |
- |
- /* Comment in definition 3 |
- */font-family:/* Comment in |
- value */courier; |
- color blue; |
-}/*Multiline comment |
- |
-followed by selector |
-*/#main, |
-.at_line_41 |
- |
-{ |
- font-size: |
- 10px; |
-} |
- |
- |
-#main, .at_line_49 |
-{ |
- border: 1px solid |
- red; |
-} |
-</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.dumpSelectedElementStyles(true, false, true); |
- InspectorTest.completeTest(); |
- } |
-} |
- |
-</script> |
-</head> |
- |
-<body onload="runTest()"> |
-<p> |
-Tests that proper source lines are reported for the parsed styles. |
-</p> |
- |
-<div id="main"></div> |
- |
-</body> |
-</html> |