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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator-from-console.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-from-console.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator-from-console.html b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator-from-console.html
index 6083f33ad5a35a74336dd1e12b23460fa9f94fc9..5c8c04de6029c32192e6a7f9f49a89a15c592c03 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator-from-console.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/network/network-initiator-from-console.html
@@ -20,7 +20,7 @@ var test = function()
function onRequest(event)
{
var request = event.data;
- if (/silent_script.js/.test(request.url))
+ if (/silent_script.js/.test(request.url()))
step2();
}

Powered by Google App Engine
This is Rietveld 408576698