Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-eval.html
blob64a0edbf092e1e4659040f4f6395d7bceca2fc8a
1 <html>
2 <head>
3 <script src="../../http/tests/inspector/inspector-test.js"></script>
4 <script src="../../http/tests/inspector/console-test.js"></script>
5 <script>
7 function test()
9 InspectorTest.evaluateInConsole("1+2", step2);
11 function step2()
13 InspectorTest.dumpConsoleMessages();
14 InspectorTest.completeTest();
18 </script>
19 </head>
21 <body onload="runTest()">
22 <p>
23 Tests that simple evaluations may be performed in the console.
24 </p>
26 </body>
27 </html>