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

Unified Diff: LayoutTests/inspector/console/clients-ignored-in-privatebrowsing.html

Issue 14142009: Remove Apple's unused implementation of private browsing from WebCore (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/clients-ignored-in-privatebrowsing.html
diff --git a/LayoutTests/inspector/console/clients-ignored-in-privatebrowsing.html b/LayoutTests/inspector/console/clients-ignored-in-privatebrowsing.html
deleted file mode 100644
index 4c78427049c7aee7f56dcff5b139f20a30002472..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/console/clients-ignored-in-privatebrowsing.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-<head>
-<script src="../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../http/tests/inspector/console-test.js"></script>
-<script>
-
-function test()
-{
- if (window.testRunner)
- testRunner.setPrivateBrowsingEnabled(true);
-
- console.log('This should show up once console messages are dumped, but should _not_ show up as a "CONSOLE MESSAGE:" at the top of the output.');
-
- InspectorTest.dumpConsoleMessages();
-
- if (window.testRunner)
- testRunner.setPrivateBrowsingEnabled(false);
- InspectorTest.completeTest();
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>In PrivateBrowsing mode, console messages are visible in the Console, but
-aren't sent to ChromeClients (or printf'd) in order to ensure they never end
-up in logs. Better safe than sorry.</p>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698