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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-document-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-document-initiator.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-document-initiator.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-document-initiator.html
index 2e7e2b6bfd036c1cc017366aa55d139a0ec1449e..40b8a094f78de639c56a2886637ad7133968c6b8 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-document-initiator.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-document-initiator.html
@@ -17,7 +17,7 @@ var test = function()
function dumpInitiator(request)
{
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);
var stackTrace = initiator.stack;

Powered by Google App Engine
This is Rietveld 408576698