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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async.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-async.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async.html
index fd9322e110f96eaaf1d33433878a0057bf6e632c..50dcc7c228c2411d3f24efdb13098acdee9add3c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async.html
@@ -11,7 +11,7 @@ function test()
function step2()
{
var request1 = InspectorTest.networkRequests().pop();
- InspectorTest.addResult(request1.url);
+ InspectorTest.addResult(request1.url());
InspectorTest.addResult("resource.type: " + request1.resourceType());
InspectorTest.addResult("resource.content before requesting content: " + request1.content);
InspectorTest.assertTrue(!request1.failed, "Resource loading failed.");

Powered by Google App Engine
This is Rietveld 408576698