OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 #inspected | 4 #inspected |
5 { | 5 { |
6 color: green; | 6 color: green; |
7 } | 7 } |
8 </style> | 8 </style> |
9 <link rel="stylesheet" href="resources/selector-line.css" /> | 9 <link rel="stylesheet" href="resources/selector-line-deprecated.css" /> |
10 <script src="../../http/tests/inspector/inspector-test.js"></script> | 10 <script src="../../http/tests/inspector/inspector-test.js"></script> |
11 <script src="../../http/tests/inspector/elements-test.js"></script> | 11 <script src="../../http/tests/inspector/elements-test.js"></script> |
12 <script> | 12 <script> |
13 | 13 |
14 function test() | 14 function test() |
15 { | 15 { |
16 WebInspector.experimentsSettings.sass.isEnabled = function() { return true;
} | 16 WebInspector.experimentsSettings.sass.isEnabled = function() { return true;
} |
17 InspectorTest.reloadPage(step1); | 17 InspectorTest.reloadPage(step1); |
18 | 18 |
19 function step1() | 19 function step1() |
(...skipping 16 matching lines...) Expand all Loading... |
36 <p> | 36 <p> |
37 Tests that selector line is computed correctly regardless of its start column. <
a href="https://bugs.webkit.org/show_bug.cgi?id=110732">Bug 110732</a>. | 37 Tests that selector line is computed correctly regardless of its start column. <
a href="https://bugs.webkit.org/show_bug.cgi?id=110732">Bug 110732</a>. |
38 </p> | 38 </p> |
39 | 39 |
40 <div id="container"> | 40 <div id="container"> |
41 <div id="inspected">Text</div> | 41 <div id="inspected">Text</div> |
42 </div> | 42 </div> |
43 | 43 |
44 </body> | 44 </body> |
45 </html> | 45 </html> |
OLD | NEW |