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

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/timeline-bound-function.html

Issue 1809073003: [DevTools] Move callFunctionOn to native (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-evaluate-v2
Patch Set: Created 4 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/inspector/tracing/timeline-bound-function.html
diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-bound-function.html b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-bound-function.html
index db71e9eb807e87b8738d4ebbeee757de54b6e7a6..2c0903a5b60187bb6a1e73325dd6a1bce12821d2 100644
--- a/third_party/WebKit/LayoutTests/inspector/tracing/timeline-bound-function.html
+++ b/third_party/WebKit/LayoutTests/inspector/tracing/timeline-bound-function.html
@@ -26,8 +26,7 @@ function test()
var data = record.traceEvent().args["data"];
var scriptName = data.scriptName;
var scriptNameShort = scriptName.substring(scriptName.lastIndexOf("/") + 1);
- if (scriptNameShort !== "InjectedScript")
- InspectorTest.addResult(record.type() + " " + scriptNameShort + ":" + data.scriptLine);
+ InspectorTest.addResult(record.type() + " " + scriptNameShort + ":" + data.scriptLine);
}
}
InspectorTest.printTimelineRecords(null, formatter);

Powered by Google App Engine
This is Rietveld 408576698