| 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 test() | 7 function test() |
| 8 { | 8 { |
| 9 | 9 |
| 10 InspectorTest.selectNodeAndWaitForStyles("nested", step1); | 10 InspectorTest.selectNodeAndWaitForStyles("nested", step1); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 <p> | 38 <p> |
| 39 Tests that disabling inherited style property does not break further style inspe
ction. | 39 Tests that disabling inherited style property does not break further style inspe
ction. |
| 40 </p> | 40 </p> |
| 41 | 41 |
| 42 <div id="container" style="font-weight:bold"> | 42 <div id="container" style="font-weight:bold"> |
| 43 <div id="nested"></div> | 43 <div id="nested"></div> |
| 44 </div> | 44 </div> |
| 45 | 45 |
| 46 </body> | 46 </body> |
| 47 </html> | 47 </html> |
| OLD | NEW |