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

Unified Diff: LayoutTests/inspector/console/console-eval-throw.html

Issue 881263002: DevTools: use target-based model accessors only. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 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-eval-throw.html
diff --git a/LayoutTests/inspector/console/console-eval-throw.html b/LayoutTests/inspector/console/console-eval-throw.html
index 8d85bd198e60c4735bc7a8be6bb608c10a7991d7..84c7aea5f39fa0c65951bbce8787d3bd1a6101e2 100644
--- a/LayoutTests/inspector/console/console-eval-throw.html
+++ b/LayoutTests/inspector/console/console-eval-throw.html
@@ -8,12 +8,12 @@ function test()
function dumpMessages(next, message)
{
InspectorTest.dumpConsoleMessages();
- WebInspector.consoleModel.requestClearMessages();
+ InspectorTest.consoleModel.requestClearMessages();
- WebInspector.consoleModel.addEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, afterCleared);
+ InspectorTest.consoleModel.addEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, afterCleared);
function afterCleared() {
- WebInspector.consoleModel.removeEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, afterCleared);
+ InspectorTest.consoleModel.removeEventListener(WebInspector.ConsoleModel.Events.ConsoleCleared, afterCleared);
next();
}
}
« no previous file with comments | « LayoutTests/inspector/console/console-eval-scoped.html ('k') | LayoutTests/inspector/console/console-last-result.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698