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

Unified Diff: third_party/WebKit/LayoutTests/inspector/console/console-preserve-log.html

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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: third_party/WebKit/LayoutTests/inspector/console/console-preserve-log.html
diff --git a/third_party/WebKit/LayoutTests/inspector/console/console-preserve-log.html b/third_party/WebKit/LayoutTests/inspector/console/console-preserve-log.html
index bb98fbeaca183b4302e8038361cd886600fda945..9e34fe5e10cba647052f3e5bc3592429bc512efb 100644
--- a/third_party/WebKit/LayoutTests/inspector/console/console-preserve-log.html
+++ b/third_party/WebKit/LayoutTests/inspector/console/console-preserve-log.html
@@ -5,11 +5,11 @@
<script>
function test()
{
- InspectorTest.consoleModel.addMessage(new WebInspector.ConsoleMessage(InspectorTest.consoleModel.target(), WebInspector.ConsoleMessage.MessageSource.Other, WebInspector.ConsoleMessage.MessageLevel.Log, "PASS"));
- WebInspector.settingForTest("preserveConsoleLog").set(true);
+ InspectorTest.consoleModel.addMessage(new SDK.ConsoleMessage(InspectorTest.consoleModel.target(), SDK.ConsoleMessage.MessageSource.Other, SDK.ConsoleMessage.MessageLevel.Log, "PASS"));
+ Common.settingForTest("preserveConsoleLog").set(true);
InspectorTest.reloadPage(function() {
InspectorTest.dumpConsoleMessages();
- WebInspector.settingForTest("preserveConsoleLog").set(false);
+ Common.settingForTest("preserveConsoleLog").set(false);
InspectorTest.completeTest();
});
}

Powered by Google App Engine
This is Rietveld 408576698