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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/fragment.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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/network-preflight-options.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/inspector/fragment.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/fragment.html b/third_party/WebKit/LayoutTests/http/tests/inspector/fragment.html
index 303774ca0787cbb752fe7bbcaaf418bdc4d54125..1e8e3c2235dcd556f8bcaf4866cb8341d433a4a4 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/fragment.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/fragment.html
@@ -37,11 +37,11 @@ function test()
function filterFrame(request)
{
- return request.url.indexOf("fragment-frame.html") !== -1
+ return request.url().indexOf("fragment-frame.html") !== -1
}
var request = InspectorTest.networkRequests().filter(filterFrame)[0];
- InspectorTest.addResult("Child frame request url: " + request.url);
+ InspectorTest.addResult("Child frame request url: " + request.url());
InspectorTest.completeTest(step2);
}
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/inspector/network-preflight-options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698