| 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 <script> | 5 <script> |
| 6 | 6 |
| 7 function removeInspectedNode() | 7 function removeInspectedNode() |
| 8 { | 8 { |
| 9 document.querySelector("#inspected").remove(); | 9 document.querySelector("#inspected").remove(); |
| 10 } | 10 } |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 </script> | 63 </script> |
| 64 </head> | 64 </head> |
| 65 | 65 |
| 66 <body onload="runTest()"> | 66 <body onload="runTest()"> |
| 67 <p> | 67 <p> |
| 68 Tests that removing node while editing its styles does not cause styles sidebar
pane to refresh. | 68 Tests that removing node while editing its styles does not cause styles sidebar
pane to refresh. |
| 69 </p> | 69 </p> |
| 70 <div id="inspected" style="color: blue">Text</div> | 70 <div id="inspected" style="color: blue">Text</div> |
| 71 </body> | 71 </body> |
| 72 </html> | 72 </html> |
| OLD | NEW |