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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async-response-type-blob.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-response-type-blob.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async-response-type-blob.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async-response-type-blob.html
index 8ec68ddb790e37b33bcb30c4a720f37a07518d9b..d0d7a31ce8bdc8c2eeeee6a23255e62dc5c637e8 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async-response-type-blob.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xhr-async-response-type-blob.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.size: " + request1.resourceSize);
InspectorTest.addResult("resource.content before requesting content: " + request1.content);

Powered by Google App Engine
This is Rietveld 408576698