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

Unified Diff: tools/perf/page_sets/tough_animation_cases.py

Issue 931723002: Add perf tests for animations using different CSS value types (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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: tools/perf/page_sets/tough_animation_cases.py
diff --git a/tools/perf/page_sets/tough_animation_cases.py b/tools/perf/page_sets/tough_animation_cases.py
index 83c9fa4c2f8d67330f9d7fc33b3a3c895406d8a2..5c458d8b8261545eaf055e6a892a7a14e0a841ab 100644
--- a/tools/perf/page_sets/tough_animation_cases.py
+++ b/tools/perf/page_sets/tough_animation_cases.py
@@ -181,6 +181,53 @@ class ToughAnimationCasesPageSet(page_set_module.PageSet):
# Why: Tests many Web Animations all starting at different times.
# pylint: disable=C0301
'file://tough_animation_cases/web_animations_staggered_triggering.html?N=0316',
+
+ # Why: Tests color animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_color.html?api=css_animations&N=0316',
+ # Why: Tests filter animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_filter.html?api=css_animations&N=0316',
+ # Why: Tests length 3D animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_length_3d.html?api=css_animations&N=0316',
+ # Why: Tests complex length animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_length_complex.html?api=css_animations&N=0316',
+ # Why: Tests simple length animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_length_simple.html?api=css_animations&N=0316',
+ # Why: Tests shadow animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_shadow.html?api=css_animations&N=0316',
+ # Why: Tests complex transform animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_transform_complex.html?api=css_animations&N=0316',
+ # Why: Tests simple transform animations using CSS Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_transform_simple.html?api=css_animations&N=0316',
+
+ # Why: Tests color animations using Web Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_color.html?api=web_animations&N=0316',
+ # Why: Tests length 3D animations using Web Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_length_3d.html?api=web_animations&N=0316',
+ # Why: Tests complex length animations using Web Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_length_complex.html?api=web_animations&N=0316',
+ # Why: Tests simple length animations using Web Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_length_simple.html?api=web_animations&N=0316',
+ # Why: Tests shadow animations using Web Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_shadow.html?api=web_animations&N=0316',
+ # Why: Tests complex transform animations using Web Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_transform_complex.html?api=web_animations&N=0316',
+ # Why: Tests simple transform animations using Web Animations.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_value_type_transform_simple.html?api=web_animations&N=0316',
]
for url in urls_list_one:

Powered by Google App Engine
This is Rietveld 408576698