| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 #inspected { | 4 #inspected { |
| 5 color: green; | 5 color: green; |
| 6 } | 6 } |
| 7 </style> | 7 </style> |
| 8 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 8 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 9 <script src="../../../http/tests/inspector/elements-test.js"></script> | 9 <script src="../../../http/tests/inspector/elements-test.js"></script> |
| 10 <script> | 10 <script> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 <body onload="runTest()"> | 49 <body onload="runTest()"> |
| 50 <p> | 50 <p> |
| 51 Tests that renaming a selector updates element styles. <a href="https://bugs.web
kit.org/show_bug.cgi?id=70018">Bug 70018</a>. | 51 Tests that renaming a selector updates element styles. <a href="https://bugs.web
kit.org/show_bug.cgi?id=70018">Bug 70018</a>. |
| 52 </p> | 52 </p> |
| 53 | 53 |
| 54 <div id="inspected" style="color: red">Text</div> | 54 <div id="inspected" style="color: red">Text</div> |
| 55 <div id="other"></div> | 55 <div id="other"></div> |
| 56 | 56 |
| 57 </body> | 57 </body> |
| 58 </html> | 58 </html> |
| OLD | NEW |