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/debugger-test.js"></script> | 4 <script src="../../http/tests/inspector/debugger-test.js"></script> |
5 <script> | 5 <script> |
6 | 6 |
7 var a = 1; | 7 var a = 1; |
8 function testFunction() | 8 function testFunction() |
9 { | 9 { |
10 var var1 = 2; | 10 var var1 = 2; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 </head> | 62 </head> |
63 | 63 |
64 <body onload="runTest()"> | 64 <body onload="runTest()"> |
65 <p> | 65 <p> |
66 Test that completions in the context of the call frame will result in names | 66 Test that completions in the context of the call frame will result in names |
67 of its scope variables. | 67 of its scope variables. |
68 </p> | 68 </p> |
69 | 69 |
70 </body> | 70 </body> |
71 </html> | 71 </html> |
OLD | NEW |