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

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

Issue 399393002: Add CSS Transitions performance tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Appease linter Created 6 years, 2 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 | « no previous file | tools/perf/page_sets/tough_animation_cases/css_transitions_simultaneous_by_inserting_new_elements.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 14d801d89689ffbae7067d7da9f02a06a45f7ef3..ae0b8ec16ff352fced3e5f6bc205a374876a37a7 100644
--- a/tools/perf/page_sets/tough_animation_cases.py
+++ b/tools/perf/page_sets/tough_animation_cases.py
@@ -15,7 +15,7 @@ class ToughAnimationCasesPage(page_module.Page):
def RunNavigateSteps(self, action_runner):
action_runner.NavigateToPage(self)
if self._need_measurement_ready:
- action_runner.WaitForJavaScriptCondition('measurementReady')
+ action_runner.WaitForJavaScriptCondition('window.measurementReady')
def RunSmoothness(self, action_runner):
action_runner.Wait(10)
@@ -54,7 +54,55 @@ class ToughAnimationCasesPageSet(page_set_module.PageSet):
# animatable properties.
'file://tough_animation_cases/balls_css_transition_all_properties.html',
# pylint: disable=C0301
- 'file://tough_animation_cases/overlay_background_color_css_transitions.html'
+ 'file://tough_animation_cases/overlay_background_color_css_transitions.html',
+ # Why: Tests many CSS Transitions all starting at the same time triggered
+ # by inserting new elements.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_simultaneous_by_inserting_new_elements.html?N=0316',
+ # Why: Tests many CSS Transitions all starting at the same time triggered
+ # by inserting style sheets.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_simultaneous_by_inserting_style_element.html?N=0316',
+ # Why: Tests many CSS Transitions all starting at the same time triggered
+ # by updating class.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_simultaneous_by_updating_class.html?N=0316',
+ # Why: Tests many CSS Transitions all starting at the same time triggered
+ # by updating inline style.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_simultaneous_by_updating_inline_style.html?N=0316',
+ # Why: Tests many CSS Transitions chained together using events at
+ # different times triggered by inserting new elements.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_chaining_by_inserting_new_element.html?N=0316',
+ # Why: Tests many CSS Transitions chained together using events at
+ # different times triggered by inserting style sheets.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_chaining_by_inserting_style_element.html?N=0316',
+ # Why: Tests many CSS Transitions chained together using events at
+ # different times triggered by updating class.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_chaining_by_updating_class.html?N=0316',
+ # Why: Tests many CSS Transitions chained together using events at
+ # different times triggered by updating inline style.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_chaining_by_updating_inline_style.html?N=0316',
+ # Why: Tests many CSS Transitions starting at different times triggered by
+ # inserting new elements.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_triggering_by_inserting_new_element.html?N=0316',
+ # Why: Tests many CSS Transitions starting at different times triggered by
+ # inserting style sheets.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_triggering_by_inserting_style.html?N=0316',
+ # Why: Tests many CSS Transitions starting at different times triggered by
+ # updating class.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_triggering_by_updating_class.html?N=0316',
+ # Why: Tests many CSS Transitions starting at different times triggered by
+ # updating inline style.
+ # pylint: disable=C0301
+ 'file://tough_animation_cases/css_transitions_staggered_triggering_by_updating_inline_style.html?N=0316',
]
for url in urls_list_one:
« no previous file with comments | « no previous file | tools/perf/page_sets/tough_animation_cases/css_transitions_simultaneous_by_inserting_new_elements.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698