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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content.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-xsl-content.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content.html
index 935fad5c33db0559e4bdda860947d8cb9834851c..8ad4d25b4026d7089c45cfc8c51d7f095067b608 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content.html
@@ -27,7 +27,7 @@ function test()
function contentReceived(request, content)
{
var output = [];
- output.push(request.url)
+ output.push(request.url());
output.push("resource.type: " + request.resourceType());
output.push("resource.content: " + content);

Powered by Google App Engine
This is Rietveld 408576698