Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / inspector / console / console-log-before-inspector-open.html
blob4a0042ae9d9d0682a7927964d1693ea028bd3ed2
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 console.log('log');
8 console.debug('debug');
9 console.info('info');
10 console.warn('warn');
11 console.error('error');
13 function test()
15 InspectorTest.dumpConsoleMessages();
16 InspectorTest.completeTest();
19 </script>
20 </head>
22 <body onload="runTest()">
23 <p>
24 Tests that Web Inspector won't crash if some console have been logged by the time it's opening.
25 </p>
27 </body>
28 </html>