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

Unified Diff: chrome/browser/resources/tracing/timeline_model_test.html

Issue 8359025: Tons of timeline tweaks (Closed)
Patch Set: Disable eliding due to perf issues Created 9 years, 1 month 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: chrome/browser/resources/tracing/timeline_model_test.html
diff --git a/chrome/browser/resources/tracing/timeline_model_test.html b/chrome/browser/resources/tracing/timeline_model_test.html
index 79d0779c03627b4d8d81606430d50b2bf19b0982..84c6d4eedda4f2aeda7b9f5be3951f97b3c6e2a8 100644
--- a/chrome/browser/resources/tracing/timeline_model_test.html
+++ b/chrome/browser/resources/tracing/timeline_model_test.html
@@ -275,9 +275,9 @@ function testUserTime() {
];
var m = new tracing.TimelineModel(events);
var subRow = m.processes[1].threads[1].subRows[0];
- assertEquals(subRow[0].startInUserTime, 70);
- assertEquals(subRow[0].durationInUserTime, 7);
- assertEquals(subRow[1].startInUserTime, 80);
+ assertEquals(subRow[0].startInUserTime, 0.07);
+ assertEquals(subRow[0].durationInUserTime, 0.007);
+ assertEquals(subRow[1].startInUserTime, 0.08);
assertEquals(subRow[1].durationInUserTime, 0);
}

Powered by Google App Engine
This is Rietveld 408576698