| 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="../styles/resources/selector-line.css" /> |
| 10 <script src="../../inspector-test.js"></script> | 10 <script src="../../inspector-test.js"></script> |
| 11 <script src="../../elements-test.js"></script> | 11 <script src="../../elements-test.js"></script> |
| 12 <script src="../../debugger-test.js"></script> | 12 <script src="../../debugger-test.js"></script> |
| 13 <script> | 13 <script> |
| 14 | 14 |
| 15 function test() | 15 function test() |
| 16 { | 16 { |
| 17 InspectorTest.waitForScriptSource("selector-line.scss", onSourceMapLoaded); | 17 InspectorTest.waitForScriptSource("selector-line.scss", onSourceMapLoaded); |
| 18 | 18 |
| 19 function onSourceMapLoaded() | 19 function onSourceMapLoaded() |
| (...skipping 15 matching lines...) Expand all Loading... |
| 35 <p> | 35 <p> |
| 36 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>. | 36 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 </p> | 37 </p> |
| 38 | 38 |
| 39 <div id="container"> | 39 <div id="container"> |
| 40 <div id="inspected">Text</div> | 40 <div id="inspected">Text</div> |
| 41 </div> | 41 </div> |
| 42 | 42 |
| 43 </body> | 43 </body> |
| 44 </html> | 44 </html> |
| OLD | NEW |