| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <script src="../../http/tests/inspector/inspector-test.js"></script> | 2 <script src="../../http/tests/inspector/inspector-test.js"></script> |
| 3 <script src="../../http/tests/inspector/debugger-test.js"></script> | 3 <script src="../../http/tests/inspector/debugger-test.js"></script> |
| 4 | 4 |
| 5 <script type="application/dart" src="scope-variables.dart"></script> | 5 <script type="application/dart" src="scope-variables.dart"></script> |
| 6 | 6 |
| 7 <script> | 7 <script> |
| 8 if (window.navigator.webkitStartDart) | 8 if (window.navigator.webkitStartDart) |
| 9 navigator.webkitStartDart(); | 9 navigator.webkitStartDart(); |
| 10 </script> | 10 </script> |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 var section = sections[i]; | 74 var section = sections[i]; |
| 75 var properties = section.propertiesForTest; | 75 var properties = section.propertiesForTest; |
| 76 var contents = InspectorTest.textContentWithLineBreaks(section.eleme
nt); | 76 var contents = InspectorTest.textContentWithLineBreaks(section.eleme
nt); |
| 77 InspectorTest.addResult(contents); | 77 InspectorTest.addResult(contents); |
| 78 } | 78 } |
| 79 } | 79 } |
| 80 }; | 80 }; |
| 81 </script> | 81 </script> |
| 82 | 82 |
| 83 <body onload="runTest()"> | 83 <body onload="runTest()"> |
| 84 <div id="example_div">Example div</div> |
| 84 </body> | 85 </body> |
| 85 </html> | 86 </html> |
| OLD | NEW |