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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator.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-initiator.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator.html
index 28ed49788d29695d254d4a4741e33bedb089dc9e..b8f2a887d088abaaab3978bfcc1a15b196fb248c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator.html
@@ -60,7 +60,7 @@ var test = function()
}
var request = matching_requests[0];
var initiator = request.initiator();
- InspectorTest.addResult(request.url + ": " + initiator.type);
+ InspectorTest.addResult(request.url() + ": " + initiator.type);
if (initiator.url)
InspectorTest.addResult(" " + initiator.url + " " + initiator.lineNumber);
if (initiator.stack) {

Powered by Google App Engine
This is Rietveld 408576698