| Index: LayoutTests/inspector/console/console-url-and-line.html
|
| diff --git a/LayoutTests/inspector/console/console-url-and-line.html b/LayoutTests/inspector/console/console-url-and-line.html
|
| deleted file mode 100644
|
| index cd65f807b820f62888cd9cf2a275ecb8892b5987..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/inspector/console/console-url-and-line.html
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script src="../../http/tests/inspector/inspector-test.js"></script>
|
| -<script src="../../http/tests/inspector/console-test.js"></script>
|
| -<script>
|
| -
|
| -function log() {
|
| - // Fill console.
|
| - console.log("one");
|
| - console.log("two");
|
| - console.log("three");
|
| -}
|
| -
|
| -function test()
|
| -{
|
| - InspectorTest.addSniffer(WebInspector.ConsoleDispatcher.prototype, "messageAdded", messageAdded, true);
|
| -
|
| - function messageAdded(payload)
|
| - {
|
| - var url = payload.url;
|
| - var lastSlashIndex = url.lastIndexOf("/");
|
| - url = url.substring(lastSlashIndex + 1);
|
| - InspectorTest.addResult("Message at location: " + url + ":" + payload.line);
|
| - if (payload.line === 10)
|
| - InspectorTest.completeTest();
|
| - }
|
| -
|
| - InspectorTest.evaluateInPage("log()");
|
| -}
|
| -
|
| -</script>
|
| -</head>
|
| -
|
| -<body onload="runTest()">
|
| -<p>
|
| -Tests that console's url and line properties are defiend for console.log entries. Bug 72256.
|
| -</p>
|
| -
|
| -</body>
|
| -</html>
|
|
|