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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/network/network-xsl-content.html

Issue 2749043005: [DevTools] Make NetworkLog a singleton, and not an SDKModel (Closed)
Patch Set: review comments addressed Created 3 years, 9 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 8ad4d25b4026d7089c45cfc8c51d7f095067b608..a75e785f3e7ab4ed0af226ff6b419c68d905e58a 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
@@ -21,7 +21,7 @@ function test()
function loadingFinished(requestId)
{
- var request = InspectorTest.networkLog.requestForId(requestId);
+ var request = InspectorTest.networkLog.requestForId(InspectorTest.mainTarget, requestId);
request.requestContent().then(contentReceived.bind(this, request));
}
function contentReceived(request, content)

Powered by Google App Engine
This is Rietveld 408576698