| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 3 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 4 <script src="../../../http/tests/inspector/elements-test.js"></script> | 4 <script src="../../../http/tests/inspector/elements-test.js"></script> |
| 5 | 5 |
| 6 <style> | 6 <style> |
| 7 .foo { | 7 .foo { |
| 8 color: blue; | 8 color: blue; |
| 9 } | 9 } |
| 10 </style> | 10 </style> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 </script> | 25 </script> |
| 26 </head> | 26 </head> |
| 27 | 27 |
| 28 <body onload="runTest()"> | 28 <body onload="runTest()"> |
| 29 <p> | 29 <p> |
| 30 Tests that elements panel shows proper inline style locations in the sidebar pan
el. | 30 Tests that elements panel shows proper inline style locations in the sidebar pan
el. |
| 31 </p> | 31 </p> |
| 32 | 32 |
| 33 <div id="foo" class="foo" style="display:none">Foo</div> | 33 <div id="foo" class="foo" style="display:none">Foo</div> |
| 34 <iframe src="resources/styles-source-lines-inline-iframe.html"> | 34 <iframe src="../styles/resources/styles-source-lines-inline-iframe.html"> |
| 35 | 35 |
| 36 </body> | 36 </body> |
| 37 </html> | 37 </html> |
| OLD | NEW |