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

Unified Diff: LayoutTests/inspector/sources/debugger/source-url-comment.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-url-comment.html
diff --git a/LayoutTests/inspector/sources/debugger/source-url-comment.html b/LayoutTests/inspector/sources/debugger/source-url-comment.html
index e889fbce59f4cce99025aa61348d567e630b392d..58f8fdd8776993fd9b6950116b12e81bfe66ef4d 100644
--- a/LayoutTests/inspector/sources/debugger/source-url-comment.html
+++ b/LayoutTests/inspector/sources/debugger/source-url-comment.html
@@ -54,7 +54,7 @@ function test()
{
function forEachScriptMatchingURL(url, handler)
{
- var scripts = WebInspector.debuggerModel._scripts;
+ var scripts = InspectorTest.debuggerModel._scripts;
for (var id in scripts) {
if (scripts[id].sourceURL.indexOf(url) !== -1)
handler(scripts[id]);

Powered by Google App Engine
This is Rietveld 408576698