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

Unified Diff: tools/telemetry/unittest_data/interaction_enabled_page.html

Issue 1013803003: [Telemetry] Remove is_smooth flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix failing test Created 5 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
« no previous file with comments | « tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/unittest_data/interaction_enabled_page.html
diff --git a/tools/telemetry/unittest_data/interaction_enabled_page.html b/tools/telemetry/unittest_data/interaction_enabled_page.html
index 59af4e5f4540afac33f4ffe905904f10169ac968..761f9128c5ef408ffe9a7d71ac25d5583b8f7211 100644
--- a/tools/telemetry/unittest_data/interaction_enabled_page.html
+++ b/tools/telemetry/unittest_data/interaction_enabled_page.html
@@ -33,14 +33,14 @@
function makeAnimation() {
var centerEl = document.querySelector('#center');
centerEl.style.webkitTransform = 'scale(1.0, 1.0)';
- console.time('Interaction.CenterAnimation/is_smooth');
+ console.time('Interaction.CenterAnimation');
centerEl.addEventListener('transitionend', function() {
- console.timeEnd('Interaction.CenterAnimation/is_smooth');
+ console.timeEnd('Interaction.CenterAnimation');
var drawerEl = document.querySelector('#drawer');
drawerEl.style.webkitTransform = 'translate3D(0, 0, 0)';
- console.time('Interaction.DrawerAnimation/is_smooth');
+ console.time('Interaction.DrawerAnimation');
drawerEl.addEventListener('transitionend', function() {
- console.timeEnd('Interaction.DrawerAnimation/is_smooth');
+ console.timeEnd('Interaction.DrawerAnimation');
window.animationDone = true;
});
});
« no previous file with comments | « tools/telemetry/telemetry/web_perf/timeline_interaction_record_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698