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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-request-revision-content.html

Issue 2626553002: [Devtools][Code health] Changed NetworkRequest.url to proper getter/setter (Closed)
Patch Set: changes Created 3 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: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-request-revision-content.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-request-revision-content.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-request-revision-content.html
index 12992403f003a21e894bccb21f49b40a895b2169..c158e02673e5a3a2c7dcfbd89465c0defda496e7 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-request-revision-content.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-request-revision-content.html
@@ -25,7 +25,7 @@ function test()
if (eventUISourceCode.url().indexOf("style.css") == -1)
return;
var request = InspectorTest.networkRequests().pop();
- uiSourceCode = Workspace.workspace.uiSourceCodeForURL(request.url);
+ uiSourceCode = Workspace.workspace.uiSourceCodeForURL(request.url());
if (!uiSourceCode)
return;
uiSourceCode.addRevision("");

Powered by Google App Engine
This is Rietveld 408576698