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

Unified Diff: LayoutTests/inspector/sources/debugger/source-frame.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/sources/debugger/source-frame.html
diff --git a/LayoutTests/inspector/sources/debugger/source-frame.html b/LayoutTests/inspector/sources/debugger/source-frame.html
index a7e928bd06e8dfb8794aed7f795e593fd1d2c3c5..7e1171feef6647124057ec8741d32942ff362353 100644
--- a/LayoutTests/inspector/sources/debugger/source-frame.html
+++ b/LayoutTests/inspector/sources/debugger/source-frame.html
@@ -58,7 +58,7 @@ function test()
if (this !== shownSourceFrame)
return;
InspectorTest.addResult("Message added to source frame: " + message.messageText());
- WebInspector.consoleModel.requestClearMessages();
+ InspectorTest.consoleModel.requestClearMessages();
}
function clearMessages()
@@ -76,7 +76,7 @@ function test()
InspectorTest.addSniffer(WebInspector.SourceFrame.prototype, "show", didShowSourceFrame);
- WebInspector.resourceTreeModel.forAllResources(visit);
+ InspectorTest.resourceTreeModel.forAllResources(visit);
function visit(resource)
{
if (resource.url.indexOf("debugger-test.js") !== -1) {

Powered by Google App Engine
This is Rietveld 408576698