summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/inspector/console/console-log-linkify-links.html
blob: 13f66bbe8b4d523decded12ad9fbb048a6c27b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script src="../../http/tests/inspector/console-test.js"></script>
<script>
console.log("http://www.chromium.org/");
console.log("follow http://www.chromium.org/");
console.log("string", "http://www.chromium.org/");
console.log(123, "http://www.chromium.org/");

function test()
{
    InspectorTest.dumpConsoleMessages(false, true);
    InspectorTest.completeTest();
}
</script>
</head>
<body onload="runTest()">
<p>
Test that console.log() would linkify the links. <a href="http://crbug.com/231074">Bug 231074.</a>
</p>
</body>
</html>