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

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

Powered by Google App Engine
This is Rietveld 408576698