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

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

Issue 399043002: DevTools: switch Timeline frontend into buffered mode and remove the corresponding experiment. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: timeline-websocket-event rebaselined Created 6 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: LayoutTests/inspector/timeline/timeline-bound-function.html
diff --git a/LayoutTests/inspector/timeline/timeline-bound-function.html b/LayoutTests/inspector/timeline/timeline-bound-function.html
index b236b8fb04cae3e866cbf45b4f53354b6e5fadde..6c31dc3a521753880868a84cb66873fdc81a9800 100644
--- a/LayoutTests/inspector/timeline/timeline-bound-function.html
+++ b/LayoutTests/inspector/timeline/timeline-bound-function.html
@@ -16,9 +16,7 @@ function performActions()
function test()
{
- InspectorTest.startTimeline();
- InspectorTest.waitForRecordType("FunctionCall", finish);
- InspectorTest.evaluateInPage("performActions()");
+ InspectorTest.evaluateWithTimeline("performActions()", finish);
function finish()
{
@@ -27,7 +25,8 @@ function test()
if (record.type === "FunctionCall") {
var scriptName = record.data.scriptName;
var scriptNameShort = scriptName.substring(scriptName.lastIndexOf("/") + 1);
- InspectorTest.addResult(record.type + " " + scriptNameShort + ":" + record.data.scriptLine);
+ if (scriptNameShort !== "InjectedScript")
+ InspectorTest.addResult(record.type + " " + scriptNameShort + ":" + record.data.scriptLine);
}
}
InspectorTest.printTimelineRecords(null, formatter);

Powered by Google App Engine
This is Rietveld 408576698