OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 from telemetry.page import page as page_module | 4 from telemetry.page import page as page_module |
5 from telemetry import story | 5 from telemetry import story |
6 | 6 |
7 | 7 |
8 class ToughAnimationCasesPage(page_module.Page): | 8 class ToughAnimationCasesPage(page_module.Page): |
9 | 9 |
10 def __init__(self, url, page_set, need_measurement_ready): | 10 def __init__(self, url, page_set, need_measurement_ready): |
(...skipping 25 matching lines...) Expand all Loading... |
36 # Why: Tests the balls animation implemented with SVG animations. | 36 # Why: Tests the balls animation implemented with SVG animations. |
37 'file://tough_animation_cases/balls_svg_animations.html', | 37 'file://tough_animation_cases/balls_svg_animations.html', |
38 # Why: Tests the balls animation implemented with Javascript and canvas. | 38 # Why: Tests the balls animation implemented with Javascript and canvas. |
39 'file://tough_animation_cases/balls_javascript_canvas.html', | 39 'file://tough_animation_cases/balls_javascript_canvas.html', |
40 # Why: Tests the balls animation implemented with Javascript and CSS. | 40 # Why: Tests the balls animation implemented with Javascript and CSS. |
41 'file://tough_animation_cases/balls_javascript_css.html', | 41 'file://tough_animation_cases/balls_javascript_css.html', |
42 # Why: Tests the balls animation implemented with CSS keyframe animations. | 42 # Why: Tests the balls animation implemented with CSS keyframe animations. |
43 'file://tough_animation_cases/balls_css_keyframe_animations.html', | 43 'file://tough_animation_cases/balls_css_keyframe_animations.html', |
44 # Why: Tests the balls animation implemented with transforms and CSS | 44 # Why: Tests the balls animation implemented with transforms and CSS |
45 # keyframe animations to be run on the compositor thread. | 45 # keyframe animations to be run on the compositor thread. |
46 # pylint: disable=C0301 | 46 # pylint: disable=line-too-long |
47 'file://tough_animation_cases/balls_css_keyframe_animations_composited_tra
nsform.html', | 47 'file://tough_animation_cases/balls_css_keyframe_animations_composited_tra
nsform.html', |
48 # Why: Tests the balls animation implemented with CSS transitions on 2 | 48 # Why: Tests the balls animation implemented with CSS transitions on 2 |
49 # properties. | 49 # properties. |
50 'file://tough_animation_cases/balls_css_transition_2_properties.html', | 50 'file://tough_animation_cases/balls_css_transition_2_properties.html', |
51 # Why: Tests the balls animation implemented with CSS transitions on 40 | 51 # Why: Tests the balls animation implemented with CSS transitions on 40 |
52 # properties. | 52 # properties. |
53 'file://tough_animation_cases/balls_css_transition_40_properties.html', | 53 'file://tough_animation_cases/balls_css_transition_40_properties.html', |
54 # Why: Tests the balls animation implemented with CSS transitions on all | 54 # Why: Tests the balls animation implemented with CSS transitions on all |
55 # animatable properties. | 55 # animatable properties. |
56 'file://tough_animation_cases/balls_css_transition_all_properties.html', | 56 'file://tough_animation_cases/balls_css_transition_all_properties.html', |
57 # pylint: disable=C0301 | 57 # pylint: disable=line-too-long |
58 'file://tough_animation_cases/overlay_background_color_css_transitions.htm
l', | 58 'file://tough_animation_cases/overlay_background_color_css_transitions.htm
l', |
59 | 59 |
60 # Why: Tests many CSS Transitions all starting at the same time triggered | 60 # Why: Tests many CSS Transitions all starting at the same time triggered |
61 # by inserting new elements. | 61 # by inserting new elements. |
62 # pylint: disable=C0301 | 62 # pylint: disable=line-too-long |
63 'file://tough_animation_cases/css_transitions_simultaneous_by_inserting_ne
w_element.html?N=0316', | 63 'file://tough_animation_cases/css_transitions_simultaneous_by_inserting_ne
w_element.html?N=0316', |
64 # Why: Tests many CSS Transitions all starting at the same time triggered | 64 # Why: Tests many CSS Transitions all starting at the same time triggered |
65 # by inserting style sheets. | 65 # by inserting style sheets. |
66 # pylint: disable=C0301 | 66 # pylint: disable=line-too-long |
67 'file://tough_animation_cases/css_transitions_simultaneous_by_inserting_st
yle_element.html?N=0316', | 67 'file://tough_animation_cases/css_transitions_simultaneous_by_inserting_st
yle_element.html?N=0316', |
68 # Why: Tests many CSS Transitions all starting at the same time triggered | 68 # Why: Tests many CSS Transitions all starting at the same time triggered |
69 # by updating class. | 69 # by updating class. |
70 # pylint: disable=C0301 | 70 # pylint: disable=line-too-long |
71 'file://tough_animation_cases/css_transitions_simultaneous_by_updating_cla
ss.html?N=0316', | 71 'file://tough_animation_cases/css_transitions_simultaneous_by_updating_cla
ss.html?N=0316', |
72 # Why: Tests many CSS Transitions all starting at the same time triggered | 72 # Why: Tests many CSS Transitions all starting at the same time triggered |
73 # by updating inline style. | 73 # by updating inline style. |
74 # pylint: disable=C0301 | 74 # pylint: disable=line-too-long |
75 'file://tough_animation_cases/css_transitions_simultaneous_by_updating_inl
ine_style.html?N=0316', | 75 'file://tough_animation_cases/css_transitions_simultaneous_by_updating_inl
ine_style.html?N=0316', |
76 # Why: Tests many CSS Transitions chained together using events at | 76 # Why: Tests many CSS Transitions chained together using events at |
77 # different times triggered by inserting new elements. | 77 # different times triggered by inserting new elements. |
78 # pylint: disable=C0301 | 78 # pylint: disable=line-too-long |
79 'file://tough_animation_cases/css_transitions_staggered_chaining_by_insert
ing_new_element.html?N=0316', | 79 'file://tough_animation_cases/css_transitions_staggered_chaining_by_insert
ing_new_element.html?N=0316', |
80 # Why: Tests many CSS Transitions chained together using events at | 80 # Why: Tests many CSS Transitions chained together using events at |
81 # different times triggered by inserting style sheets. | 81 # different times triggered by inserting style sheets. |
82 # pylint: disable=C0301 | 82 # pylint: disable=line-too-long |
83 'file://tough_animation_cases/css_transitions_staggered_chaining_by_insert
ing_style_element.html?N=0316', | 83 'file://tough_animation_cases/css_transitions_staggered_chaining_by_insert
ing_style_element.html?N=0316', |
84 # Why: Tests many CSS Transitions chained together using events at | 84 # Why: Tests many CSS Transitions chained together using events at |
85 # different times triggered by updating class. | 85 # different times triggered by updating class. |
86 # pylint: disable=C0301 | 86 # pylint: disable=line-too-long |
87 'file://tough_animation_cases/css_transitions_staggered_chaining_by_updati
ng_class.html?N=0316', | 87 'file://tough_animation_cases/css_transitions_staggered_chaining_by_updati
ng_class.html?N=0316', |
88 # Why: Tests many CSS Transitions chained together using events at | 88 # Why: Tests many CSS Transitions chained together using events at |
89 # different times triggered by updating inline style. | 89 # different times triggered by updating inline style. |
90 # pylint: disable=C0301 | 90 # pylint: disable=line-too-long |
91 'file://tough_animation_cases/css_transitions_staggered_chaining_by_updati
ng_inline_style.html?N=0316', | 91 'file://tough_animation_cases/css_transitions_staggered_chaining_by_updati
ng_inline_style.html?N=0316', |
92 # Why: Tests many CSS Transitions starting at different times triggered by | 92 # Why: Tests many CSS Transitions starting at different times triggered by |
93 # inserting new elements. | 93 # inserting new elements. |
94 # pylint: disable=C0301 | 94 # pylint: disable=line-too-long |
95 'file://tough_animation_cases/css_transitions_staggered_triggering_by_inse
rting_new_element.html?N=0316', | 95 'file://tough_animation_cases/css_transitions_staggered_triggering_by_inse
rting_new_element.html?N=0316', |
96 # Why: Tests many CSS Transitions starting at different times triggered by | 96 # Why: Tests many CSS Transitions starting at different times triggered by |
97 # inserting style sheets. | 97 # inserting style sheets. |
98 # pylint: disable=C0301 | 98 # pylint: disable=line-too-long |
99 'file://tough_animation_cases/css_transitions_staggered_triggering_by_inse
rting_style_element.html?N=0316', | 99 'file://tough_animation_cases/css_transitions_staggered_triggering_by_inse
rting_style_element.html?N=0316', |
100 # Why: Tests many CSS Transitions starting at different times triggered by | 100 # Why: Tests many CSS Transitions starting at different times triggered by |
101 # updating class. | 101 # updating class. |
102 # pylint: disable=C0301 | 102 # pylint: disable=line-too-long |
103 'file://tough_animation_cases/css_transitions_staggered_triggering_by_upda
ting_class.html?N=0316', | 103 'file://tough_animation_cases/css_transitions_staggered_triggering_by_upda
ting_class.html?N=0316', |
104 # Why: Tests many CSS Transitions starting at different times triggered by | 104 # Why: Tests many CSS Transitions starting at different times triggered by |
105 # updating inline style. | 105 # updating inline style. |
106 # pylint: disable=C0301 | 106 # pylint: disable=line-too-long |
107 'file://tough_animation_cases/css_transitions_staggered_triggering_by_upda
ting_inline_style.html?N=0316', | 107 'file://tough_animation_cases/css_transitions_staggered_triggering_by_upda
ting_inline_style.html?N=0316', |
108 | 108 |
109 # Why: Tests many CSS Animations all starting at the same time with 500 | 109 # Why: Tests many CSS Animations all starting at the same time with 500 |
110 # keyframes each. | 110 # keyframes each. |
111 'file://tough_animation_cases/css_animations_many_keyframes.html?N=0316', | 111 'file://tough_animation_cases/css_animations_many_keyframes.html?N=0316', |
112 # Why: Tests many CSS Animations all starting at the same time triggered | 112 # Why: Tests many CSS Animations all starting at the same time triggered |
113 # by inserting new elements. | 113 # by inserting new elements. |
114 # pylint: disable=C0301 | 114 # pylint: disable=line-too-long |
115 'file://tough_animation_cases/css_animations_simultaneous_by_inserting_new
_element.html?N=0316', | 115 'file://tough_animation_cases/css_animations_simultaneous_by_inserting_new
_element.html?N=0316', |
116 # Why: Tests many CSS Animations all starting at the same time triggered | 116 # Why: Tests many CSS Animations all starting at the same time triggered |
117 # by inserting style sheets. | 117 # by inserting style sheets. |
118 # pylint: disable=C0301 | 118 # pylint: disable=line-too-long |
119 'file://tough_animation_cases/css_animations_simultaneous_by_inserting_sty
le_element.html?N=0316', | 119 'file://tough_animation_cases/css_animations_simultaneous_by_inserting_sty
le_element.html?N=0316', |
120 # Why: Tests many CSS Animations all starting at the same time triggered | 120 # Why: Tests many CSS Animations all starting at the same time triggered |
121 # by updating class. | 121 # by updating class. |
122 # pylint: disable=C0301 | 122 # pylint: disable=line-too-long |
123 'file://tough_animation_cases/css_animations_simultaneous_by_updating_clas
s.html?N=0316', | 123 'file://tough_animation_cases/css_animations_simultaneous_by_updating_clas
s.html?N=0316', |
124 # Why: Tests many CSS Animations all starting at the same time triggered | 124 # Why: Tests many CSS Animations all starting at the same time triggered |
125 # by updating inline style. | 125 # by updating inline style. |
126 # pylint: disable=C0301 | 126 # pylint: disable=line-too-long |
127 'file://tough_animation_cases/css_animations_simultaneous_by_updating_inli
ne_style.html?N=0316', | 127 'file://tough_animation_cases/css_animations_simultaneous_by_updating_inli
ne_style.html?N=0316', |
128 # Why: Tests many CSS Animations chained together using events at | 128 # Why: Tests many CSS Animations chained together using events at |
129 # different times triggered by inserting new elements. | 129 # different times triggered by inserting new elements. |
130 # pylint: disable=C0301 | 130 # pylint: disable=line-too-long |
131 'file://tough_animation_cases/css_animations_staggered_chaining_by_inserti
ng_new_element.html?N=0316', | 131 'file://tough_animation_cases/css_animations_staggered_chaining_by_inserti
ng_new_element.html?N=0316', |
132 # Why: Tests many CSS Animations chained together using events at | 132 # Why: Tests many CSS Animations chained together using events at |
133 # different times triggered by inserting style sheets. | 133 # different times triggered by inserting style sheets. |
134 # pylint: disable=C0301 | 134 # pylint: disable=line-too-long |
135 'file://tough_animation_cases/css_animations_staggered_chaining_by_inserti
ng_style_element.html?N=0316', | 135 'file://tough_animation_cases/css_animations_staggered_chaining_by_inserti
ng_style_element.html?N=0316', |
136 # Why: Tests many CSS Animations chained together using events at | 136 # Why: Tests many CSS Animations chained together using events at |
137 # different times triggered by updating class. | 137 # different times triggered by updating class. |
138 # pylint: disable=C0301 | 138 # pylint: disable=line-too-long |
139 'file://tough_animation_cases/css_animations_staggered_chaining_by_updatin
g_class.html?N=0316', | 139 'file://tough_animation_cases/css_animations_staggered_chaining_by_updatin
g_class.html?N=0316', |
140 # Why: Tests many CSS Animations chained together using events at | 140 # Why: Tests many CSS Animations chained together using events at |
141 # different times triggered by updating inline style. | 141 # different times triggered by updating inline style. |
142 # pylint: disable=C0301 | 142 # pylint: disable=line-too-long |
143 'file://tough_animation_cases/css_animations_staggered_chaining_by_updatin
g_inline_style.html?N=0316', | 143 'file://tough_animation_cases/css_animations_staggered_chaining_by_updatin
g_inline_style.html?N=0316', |
144 # Why: Tests many CSS Animations starting at different times triggered by | 144 # Why: Tests many CSS Animations starting at different times triggered by |
145 # inserting new elements. | 145 # inserting new elements. |
146 # pylint: disable=C0301 | 146 # pylint: disable=line-too-long |
147 'file://tough_animation_cases/css_animations_staggered_triggering_by_inser
ting_new_element.html?N=0316', | 147 'file://tough_animation_cases/css_animations_staggered_triggering_by_inser
ting_new_element.html?N=0316', |
148 # Why: Tests many CSS Animations all starting at the same time with | 148 # Why: Tests many CSS Animations all starting at the same time with |
149 # staggered animation offsets. | 149 # staggered animation offsets. |
150 # pylint: disable=C0301 | 150 # pylint: disable=line-too-long |
151 'file://tough_animation_cases/css_animations_staggered_infinite_iterations
.html?N=0316', | 151 'file://tough_animation_cases/css_animations_staggered_infinite_iterations
.html?N=0316', |
152 # Why: Tests many CSS Animations starting at different times triggered by | 152 # Why: Tests many CSS Animations starting at different times triggered by |
153 # inserting style sheets. | 153 # inserting style sheets. |
154 # pylint: disable=C0301 | 154 # pylint: disable=line-too-long |
155 'file://tough_animation_cases/css_animations_staggered_triggering_by_inser
ting_style_element.html?N=0316', | 155 'file://tough_animation_cases/css_animations_staggered_triggering_by_inser
ting_style_element.html?N=0316', |
156 # Why: Tests many CSS Animations starting at different times triggered by | 156 # Why: Tests many CSS Animations starting at different times triggered by |
157 # updating class. | 157 # updating class. |
158 # pylint: disable=C0301 | 158 # pylint: disable=line-too-long |
159 'file://tough_animation_cases/css_animations_staggered_triggering_by_updat
ing_class.html?N=0316', | 159 'file://tough_animation_cases/css_animations_staggered_triggering_by_updat
ing_class.html?N=0316', |
160 # Why: Tests many CSS Animations starting at different times triggered by | 160 # Why: Tests many CSS Animations starting at different times triggered by |
161 # updating inline style. | 161 # updating inline style. |
162 # pylint: disable=C0301 | 162 # pylint: disable=line-too-long |
163 'file://tough_animation_cases/css_animations_staggered_triggering_by_updat
ing_inline_style.html?N=0316', | 163 'file://tough_animation_cases/css_animations_staggered_triggering_by_updat
ing_inline_style.html?N=0316', |
164 | 164 |
165 # Why: Tests many Web Animations all starting at the same time with 500 | 165 # Why: Tests many Web Animations all starting at the same time with 500 |
166 # keyframes each. | 166 # keyframes each. |
167 'file://tough_animation_cases/web_animations_many_keyframes.html?N=0316', | 167 'file://tough_animation_cases/web_animations_many_keyframes.html?N=0316', |
168 # Why: Tests many paused Web Animations having their currentTimes updated | 168 # Why: Tests many paused Web Animations having their currentTimes updated |
169 # in every requestAnimationFrame. | 169 # in every requestAnimationFrame. |
170 # pylint: disable=C0301 | 170 # pylint: disable=line-too-long |
171 'file://tough_animation_cases/web_animations_set_current_time_in_raf.html?
N=0316', | 171 'file://tough_animation_cases/web_animations_set_current_time_in_raf.html?
N=0316', |
172 # Why: Tests many Web Animations all starting at the same time. | 172 # Why: Tests many Web Animations all starting at the same time. |
173 'file://tough_animation_cases/web_animations_simultaneous.html?N=0316', | 173 'file://tough_animation_cases/web_animations_simultaneous.html?N=0316', |
174 # Why: Tests many Web Animations all starting at different times then | 174 # Why: Tests many Web Animations all starting at different times then |
175 # chained together using events. | 175 # chained together using events. |
176 # pylint: disable=C0301 | 176 # pylint: disable=line-too-long |
177 'file://tough_animation_cases/web_animations_staggered_chaining.html?N=031
6', | 177 'file://tough_animation_cases/web_animations_staggered_chaining.html?N=031
6', |
178 # Why: Tests many Web Animations all starting at different times with | 178 # Why: Tests many Web Animations all starting at different times with |
179 # infinite iterations. | 179 # infinite iterations. |
180 # pylint: disable=C0301 | 180 # pylint: disable=line-too-long |
181 'file://tough_animation_cases/web_animations_staggered_infinite_iterations
.html?N=0316', | 181 'file://tough_animation_cases/web_animations_staggered_infinite_iterations
.html?N=0316', |
182 # Why: Tests many Web Animations all starting at different times. | 182 # Why: Tests many Web Animations all starting at different times. |
183 # pylint: disable=C0301 | 183 # pylint: disable=line-too-long |
184 'file://tough_animation_cases/web_animations_staggered_triggering.html?N=0
316', | 184 'file://tough_animation_cases/web_animations_staggered_triggering.html?N=0
316', |
185 | 185 |
186 # Why: Tests color animations using CSS Animations. | 186 # Why: Tests color animations using CSS Animations. |
187 # pylint: disable=C0301 | 187 # pylint: disable=line-too-long |
188 'file://tough_animation_cases/css_value_type_color.html?api=css_animations
&N=0316', | 188 'file://tough_animation_cases/css_value_type_color.html?api=css_animations
&N=0316', |
189 # Why: Tests filter animations using CSS Animations. | 189 # Why: Tests filter animations using CSS Animations. |
190 # pylint: disable=C0301 | 190 # pylint: disable=line-too-long |
191 'file://tough_animation_cases/css_value_type_filter.html?api=css_animation
s&N=0316', | 191 'file://tough_animation_cases/css_value_type_filter.html?api=css_animation
s&N=0316', |
192 # Why: Tests length 3D animations using CSS Animations. | 192 # Why: Tests length 3D animations using CSS Animations. |
193 # pylint: disable=C0301 | 193 # pylint: disable=line-too-long |
194 'file://tough_animation_cases/css_value_type_length_3d.html?api=css_animat
ions&N=0316', | 194 'file://tough_animation_cases/css_value_type_length_3d.html?api=css_animat
ions&N=0316', |
195 # Why: Tests complex length animations using CSS Animations. | 195 # Why: Tests complex length animations using CSS Animations. |
196 # pylint: disable=C0301 | 196 # pylint: disable=line-too-long |
197 'file://tough_animation_cases/css_value_type_length_complex.html?api=css_a
nimations&N=0316', | 197 'file://tough_animation_cases/css_value_type_length_complex.html?api=css_a
nimations&N=0316', |
198 # Why: Tests simple length animations using CSS Animations. | 198 # Why: Tests simple length animations using CSS Animations. |
199 # pylint: disable=C0301 | 199 # pylint: disable=line-too-long |
200 'file://tough_animation_cases/css_value_type_length_simple.html?api=css_an
imations&N=0316', | 200 'file://tough_animation_cases/css_value_type_length_simple.html?api=css_an
imations&N=0316', |
201 # Why: Tests shadow animations using CSS Animations. | 201 # Why: Tests shadow animations using CSS Animations. |
202 # pylint: disable=C0301 | 202 # pylint: disable=line-too-long |
203 'file://tough_animation_cases/css_value_type_shadow.html?api=css_animation
s&N=0316', | 203 'file://tough_animation_cases/css_value_type_shadow.html?api=css_animation
s&N=0316', |
204 # Why: Tests complex transform animations using CSS Animations. | 204 # Why: Tests complex transform animations using CSS Animations. |
205 # pylint: disable=C0301 | 205 # pylint: disable=line-too-long |
206 'file://tough_animation_cases/css_value_type_transform_complex.html?api=cs
s_animations&N=0316', | 206 'file://tough_animation_cases/css_value_type_transform_complex.html?api=cs
s_animations&N=0316', |
207 # Why: Tests simple transform animations using CSS Animations. | 207 # Why: Tests simple transform animations using CSS Animations. |
208 # pylint: disable=C0301 | 208 # pylint: disable=line-too-long |
209 'file://tough_animation_cases/css_value_type_transform_simple.html?api=css
_animations&N=0316', | 209 'file://tough_animation_cases/css_value_type_transform_simple.html?api=css
_animations&N=0316', |
210 | 210 |
211 # Why: Tests color animations using Web Animations. | 211 # Why: Tests color animations using Web Animations. |
212 # pylint: disable=C0301 | 212 # pylint: disable=line-too-long |
213 'file://tough_animation_cases/css_value_type_color.html?api=web_animations
&N=0316', | 213 'file://tough_animation_cases/css_value_type_color.html?api=web_animations
&N=0316', |
214 # Why: Tests length 3D animations using Web Animations. | 214 # Why: Tests length 3D animations using Web Animations. |
215 # pylint: disable=C0301 | 215 # pylint: disable=line-too-long |
216 'file://tough_animation_cases/css_value_type_length_3d.html?api=web_animat
ions&N=0316', | 216 'file://tough_animation_cases/css_value_type_length_3d.html?api=web_animat
ions&N=0316', |
217 # Why: Tests complex length animations using Web Animations. | 217 # Why: Tests complex length animations using Web Animations. |
218 # pylint: disable=C0301 | 218 # pylint: disable=line-too-long |
219 'file://tough_animation_cases/css_value_type_length_complex.html?api=web_a
nimations&N=0316', | 219 'file://tough_animation_cases/css_value_type_length_complex.html?api=web_a
nimations&N=0316', |
220 # Why: Tests simple length animations using Web Animations. | 220 # Why: Tests simple length animations using Web Animations. |
221 # pylint: disable=C0301 | 221 # pylint: disable=line-too-long |
222 'file://tough_animation_cases/css_value_type_length_simple.html?api=web_an
imations&N=0316', | 222 'file://tough_animation_cases/css_value_type_length_simple.html?api=web_an
imations&N=0316', |
223 # Why: Tests shadow animations using Web Animations. | 223 # Why: Tests shadow animations using Web Animations. |
224 # pylint: disable=C0301 | 224 # pylint: disable=line-too-long |
225 'file://tough_animation_cases/css_value_type_shadow.html?api=web_animation
s&N=0316', | 225 'file://tough_animation_cases/css_value_type_shadow.html?api=web_animation
s&N=0316', |
226 # Why: Tests complex transform animations using Web Animations. | 226 # Why: Tests complex transform animations using Web Animations. |
227 # pylint: disable=C0301 | 227 # pylint: disable=line-too-long |
228 'file://tough_animation_cases/css_value_type_transform_complex.html?api=we
b_animations&N=0316', | 228 'file://tough_animation_cases/css_value_type_transform_complex.html?api=we
b_animations&N=0316', |
229 # Why: Tests simple transform animations using Web Animations. | 229 # Why: Tests simple transform animations using Web Animations. |
230 # pylint: disable=C0301 | 230 # pylint: disable=line-too-long |
231 'file://tough_animation_cases/css_value_type_transform_simple.html?api=web
_animations&N=0316', | 231 'file://tough_animation_cases/css_value_type_transform_simple.html?api=web
_animations&N=0316', |
232 ] | 232 ] |
233 | 233 |
234 for url in urls_list_one: | 234 for url in urls_list_one: |
235 self.AddStory(ToughAnimationCasesPage(url, self, | 235 self.AddStory(ToughAnimationCasesPage(url, self, |
236 need_measurement_ready=True)) | 236 need_measurement_ready=True)) |
237 | 237 |
238 urls_list_two = [ | 238 urls_list_two = [ |
239 # Why: Tests various keyframed animations. | 239 # Why: Tests various keyframed animations. |
240 'file://tough_animation_cases/keyframed_animations.html', | 240 'file://tough_animation_cases/keyframed_animations.html', |
(...skipping 14 matching lines...) Expand all Loading... |
255 'file://tough_animation_cases/mix_blend_mode_propagating_isolation.html', | 255 'file://tough_animation_cases/mix_blend_mode_propagating_isolation.html', |
256 | 256 |
257 # Disabled: crbug.com/350692 | 257 # Disabled: crbug.com/350692 |
258 # Why: Login page is slow because of ineffecient transform operations. | 258 # Why: Login page is slow because of ineffecient transform operations. |
259 # 'http://ie.microsoft.com/testdrive/performance/robohornetpro/', | 259 # 'http://ie.microsoft.com/testdrive/performance/robohornetpro/', |
260 ] | 260 ] |
261 | 261 |
262 for url in urls_list_two: | 262 for url in urls_list_two: |
263 self.AddStory(ToughAnimationCasesPage(url, self, | 263 self.AddStory(ToughAnimationCasesPage(url, self, |
264 need_measurement_ready=False)) | 264 need_measurement_ready=False)) |
OLD | NEW |