<html> | |
<head> | |
<script src="../../http/tests/inspector/inspector-test.js"></script> | |
<script src="../../http/tests/inspector/console-test.js"></script> | |
<script> | |
function test() | |
{ | |
InspectorTest.evaluateInConsole("1+2", step2); | |
function step2() | |
{ | |
InspectorTest.dumpConsoleMessages(); | |
InspectorTest.completeTest(); | |
} | |
} | |
</script> | |
</head> | |
<body onload="runTest()"> | |
<p> | |
Tests that simple evaluations may be performed in the console. | |
</p> | |
</body> | |
</html> |