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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-redirect-method.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-xhr-redirect-method.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-redirect-method.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-redirect-method.html
index e27134e38be3877ac764cc786ff7c18c29972917..24f4bc042f953d877e51443dcaccb58ba48fa541 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-redirect-method.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-redirect-method.html
@@ -23,7 +23,7 @@ function test()
var request = requests[i];
var requestMethod = request.requestMethod;
var actualMethod = request.responseHeaderValue("request-method");
- InspectorTest.addResult(requestMethod + " " + request.url);
+ InspectorTest.addResult(requestMethod + " " + request.url());
InspectorTest.addResult(" actual http method was: " + actualMethod);
InspectorTest.addResult("");
}

Powered by Google App Engine
This is Rietveld 408576698