| 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="evaluate-in-console.dart"></script> | 5 <script type="application/dart" src="evaluate-in-console.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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 } | 46 } |
| 47 } | 47 } |
| 48 | 48 |
| 49 var expressions = [ | 49 var expressions = [ |
| 50 // Instance fields and methods. | 50 // Instance fields and methods. |
| 51 'test.instanceField', | 51 'test.instanceField', |
| 52 'test.instanceField = "new value"', | 52 'test.instanceField = "new value"', |
| 53 'test.foo', | 53 'test.foo', |
| 54 'test.foo = 3', | 54 'test.foo = 3', |
| 55 'test.foo', | 55 'test.foo', |
| 56 'test.somePropertyThatDoesntExist', |
| 56 'test.toString()', | 57 'test.toString()', |
| 57 'test.toString(1)', | 58 'test.toString(1)', |
| 58 'test.create("x").instanceField', | 59 'test.create("x").instanceField', |
| 59 'test.concat(test.create("x"), test.create("y"))', | 60 'test.concat(test.create("x"), test.create("y"))', |
| 60 // Local variables and functions. | 61 // Local variables and functions. |
| 61 '_private', | 62 '_private', |
| 62 // Global fields and functions. | 63 // Global fields and functions. |
| 63 'globalField', | 64 'globalField', |
| 64 'calculateSquareRoot(25)', | 65 'calculateSquareRoot(25)', |
| 65 'new Element.tag("div").outerHtml', | 66 'new Element.tag("div").outerHtml', |
| (...skipping 20 matching lines...) Expand all Loading... |
| 86 InspectorTest.resumeExecution(next); | 87 InspectorTest.resumeExecution(next); |
| 87 }); | 88 }); |
| 88 } | 89 } |
| 89 ]); | 90 ]); |
| 90 }; | 91 }; |
| 91 </script> | 92 </script> |
| 92 | 93 |
| 93 <body onload="runTest()"> | 94 <body onload="runTest()"> |
| 94 </body> | 95 </body> |
| 95 </html> | 96 </html> |
| OLD | NEW |