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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/async-callstack-network-initiator-image.html

Issue 2186753002: [DevTools] Track URL through the target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comments addressed Created 4 years, 5 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/sources/debugger/async-callstack-network-initiator-image.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/async-callstack-network-initiator-image.html b/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/async-callstack-network-initiator-image.html
index 53d14aa81da7f4bac22f40191d7cc250ca68d1d2..ce659dbd60a5f56023737bf2785c6a216041ed8c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/async-callstack-network-initiator-image.html
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/sources/debugger/async-callstack-network-initiator-image.html
@@ -16,9 +16,9 @@ function test()
{
WebInspector.settingForTest("enableAsyncStackTraces").set(true);
InspectorTest.evaluateInPage("testFunction()");
- InspectorTest.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestFinished, reuestFinished);
+ InspectorTest.networkManager.addEventListener(WebInspector.NetworkManager.EventTypes.RequestFinished, requestFinished);
- function reuestFinished(event)
+ function requestFinished(event)
{
if (!event.data.url.endsWith("resources/image.png"))
return;

Powered by Google App Engine
This is Rietveld 408576698