| Index: Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| diff --git a/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl b/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| index cdebdcde17b461b9eee7e66b82e195e18c6c4c59..dee15e05d4165f72c4bde7999821200f69caa9e1 100644
|
| --- a/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| +++ b/Source/build/scripts/templates/StyleBuilderFunctions.cpp.tmpl
|
| @@ -99,12 +99,8 @@ namespace WebCore {
|
| {
|
| CSS{{animation}}Data& data = state.style()->access{{animation}}s();
|
| data.{{vector}}.clear();
|
| - if (value->isValueList()) {
|
| - for (CSSValueListIterator i = value; i.hasMore(); i.advance())
|
| - data.{{vector}}.append(state.styleMap().mapAnimation{{attribute}}(i.value()));
|
| - } else {
|
| - data.{{vector}}.append(state.styleMap().mapAnimation{{attribute}}(value));
|
| - }
|
| + for (CSSValueListIterator i = value; i.hasMore(); i.advance())
|
| + data.{{vector}}.append(state.styleMap().mapAnimation{{attribute}}(i.value()));
|
| }
|
| {% endmacro %}
|
| {{apply_animation('CSSPropertyWebkitAnimationDelay', 'Delay', 'Animation')}}
|
|
|