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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-ipv6.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-parameters-ipv6.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-ipv6.html b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-ipv6.html
index ad15adb67c1b11ed99a2e25698d703d74cc46fa6..cd476b2fbcf2ce527d82f9970162d5419e7c43bf 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-ipv6.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/resource-parameters-ipv6.html
@@ -17,7 +17,7 @@ function test()
function onRequestFinished(event)
{
var request = event.data;
- InspectorTest.addResult(request.url);
+ InspectorTest.addResult(request.url());
InspectorTest.addObject(new SDK.HAREntry(request).build(), InspectorTest.HARPropertyFormatters);
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698