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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/ping-response.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/ping-response.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/ping-response.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/ping-response.html
index 4a4414f5e414b95b6c29922f5f6e8877fcd9cbc1..af47466dbba73416285a57665a624237905b3613 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/ping-response.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/ping-response.html
@@ -22,7 +22,7 @@ function test()
function step3()
{
var request = InspectorTest.networkRequests().pop();
- InspectorTest.addResult("URL: " + request.url);
+ InspectorTest.addResult("URL: " + request.url());
InspectorTest.addResult("Finished: " + request.finished);
InspectorTest.addResult("Cached: " + request.cached());
InspectorTest.addResult("Method: " + request.requestMethod);

Powered by Google App Engine
This is Rietveld 408576698