| OLD | NEW |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | 1 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 2 <head> | 2 <head> |
| 3 | 3 |
| 4 <script src="../../../http/tests/inspector/inspector-test.js"></script> | 4 <script src="../../../http/tests/inspector/inspector-test.js"></script> |
| 5 <script src="../../../http/tests/inspector/elements-test.js"></script> | 5 <script src="../../../http/tests/inspector/elements-test.js"></script> |
| 6 <script> | 6 <script> |
| 7 | 7 |
| 8 function test() | 8 function test() |
| 9 { | 9 { |
| 10 InspectorTest.selectNodeAndWaitForStyles("main", step1); | 10 InspectorTest.selectNodeAndWaitForStyles("main", step1); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 <svg:svg xmlns:svg="http://www.w3.org/2000/svg" version="1.1"> | 27 <svg:svg xmlns:svg="http://www.w3.org/2000/svg" version="1.1"> |
| 28 <svg:defs> | 28 <svg:defs> |
| 29 <svg:style type="text/css"> | 29 <svg:style type="text/css"> |
| 30 rect {fill: red} | 30 rect {fill: red} |
| 31 </svg:style> | 31 </svg:style> |
| 32 </svg:defs> | 32 </svg:defs> |
| 33 <svg:rect id="main" width="100" height="100"/> | 33 <svg:rect id="main" width="100" height="100"/> |
| 34 </svg:svg> | 34 </svg:svg> |
| 35 </body> | 35 </body> |
| 36 </html> | 36 </html> |
| OLD | NEW |