Changeset 287602 in webkit for trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
- Timestamp:
- Jan 4, 2022, 11:03:15 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp
r287537 r287602 1464 1464 else if (property == CSSPropertyAnimationName) 1465 1465 list.append(valueForAnimationName(animation ? animation->name() : Animation::initialName())); 1466 else if (property == CSSPropertyAnimationTimingFunction || property == CSSPropertyTransitionTimingFunction) { 1466 else if (property == CSSPropertyTransitionProperty) { 1467 if (animation) 1468 list.append(createTransitionPropertyValue(*animation)); 1469 else 1470 list.append(CSSValuePool::singleton().createIdentifierValue(CSSValueAll)); 1471 } else if (property == CSSPropertyAnimationTimingFunction || property == CSSPropertyTransitionTimingFunction) { 1467 1472 if (animation) 1468 1473 list.append(valueForAnimationTimingFunction(*animation->timingFunction()));
Note:
See TracChangeset
for help on using the changeset viewer.