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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-cachedresources-with-same-urls.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-cachedresources-with-same-urls.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-cachedresources-with-same-urls.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-cachedresources-with-same-urls.html
index a8d9593d9ccf964e51af22086edcefa5503ce74f..cd84aed24050a4f64beae8ac4eeaf76db1db59d4 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-cachedresources-with-same-urls.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-cachedresources-with-same-urls.html
@@ -51,8 +51,8 @@ function test()
var request1 = requests[requests.length - 2];
var request2 = requests[requests.length - 1];
- InspectorTest.addResult(request1.url);
- InspectorTest.addResult(request2.url);
+ InspectorTest.addResult(request1.url());
+ InspectorTest.addResult(request2.url());
InspectorTest.assertTrue(request1.content !== request2.content);
InspectorTest.completeTest();
}

Powered by Google App Engine
This is Rietveld 408576698