| 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;
|
| });
|
| });
|
|
|