3 <script src=
"../../http/tests/inspector/inspector-test.js"></script>
4 <script src=
"../../http/tests/inspector/console-test.js"></script>
5 <script src=
"../../http/tests/inspector/debugger-test.js"></script>
8 window
.inspect
= "inspect";
11 function testFunction()
19 InspectorTest
.startDebuggerTest(step1
);
23 InspectorTest
.runTestFunctionAndWaitUntilPaused(step2
);
28 InspectorTest
.evaluateInConsole("dir + clear + inspect", step3
);
31 function step3(result
)
33 InspectorTest
.addResult("Evaluated in console in the top frame context: dir + clear + inspect = " + result
);
34 InspectorTest
.evaluateInConsole("typeof $$", step4
);
37 function step4(result
)
39 InspectorTest
.addResult("Evaluated in console in the top frame context: typeof $$ = " + result
);
40 InspectorTest
.completeDebuggerTest();
47 <body onload=
"runTest()">
49 Test that command line api does not mask values of scope variables while evaluating