blob: 4a0042ae9d9d0682a7927964d1693ea028bd3ed2 [file] [log] [blame]
<html>
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="../../http/tests/inspector/console-test.js"></script>
<script>
console.log('log');
console.debug('debug');
console.info('info');
console.warn('warn');
console.error('error');
function test()
{
InspectorTest.dumpConsoleMessages();
InspectorTest.completeTest();
}
</script>
</head>
<body onload="runTest()">
<p>
Tests that Web Inspector won't crash if some console have been logged by the time it's opening.
</p>
</body>
</html>