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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disable-cache-cors.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-disable-cache-cors.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disable-cache-cors.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disable-cache-cors.html
index 72c5744972520584e6630b3ef10b3634835802ab..9170c1c7f30f8cd47908be22c7b09d8aa1fc7b8d 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disable-cache-cors.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-disable-cache-cors.html
@@ -61,7 +61,7 @@ function test()
var request = requests[i];
var method = request.requestMethod;
if (method === "OPTIONS" || method === "POST")
- InspectorTest.addResult(method + ": " + request.url);
+ InspectorTest.addResult(method + ": " + request.url());
}
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698