Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(307)

Unified Diff: LayoutTests/inspector/console/console-url-and-line.html

Issue 40513003: Delete/move the remaining stale tests in TestExpectations. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: delete plugins/reentrant-update-widget-positions.html as well Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698