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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.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/resource-har-conversion.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html
index 2dcdd00d22802dbccbd9e7049c7d779b051426cf..dbbc6b2ec80dc65bdaec56ddba70b4f6e74f0617 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-har-conversion.html
@@ -34,7 +34,7 @@ var test = function()
{
var requests = InspectorTest.networkRequests();
for (var i = 0; i < requests.length; ++i) {
- if (url.test(requests[i].url))
+ if (url.test(requests[i].url()))
return requests[i];
}
}

Powered by Google App Engine
This is Rietveld 408576698