Changeset 31485 in webkit
- Timestamp:
- Mar 31, 2008, 3:29:48 PM (17 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog
r31483 r31485 1 2008-03-31 Dan Bernstein <mitz@apple.com> 2 3 Reviewed by Dave Hyatt. 4 5 - fix http://bugs.webkit.org/show_bug.cgi?id=18076 6 Box disappears after CSS Transition completes 7 8 * page/AnimationController.cpp: Changed the BLEND_MAYBE_INVALID_COLOR 9 macro to not blend two invalid colors. 10 * rendering/RenderStyle.cpp: 11 (WebCore::StyleBackgroundData::StyleBackgroundData): Added missing 12 copying of the m_color data member. 13 1 14 2008-03-31 Julien Chaffraix <jchaffraix@webkit.org> 2 15 -
trunk/WebCore/page/AnimationController.cpp
r31160 r31485 334 334 Color fromColor = m_fromStyle->getter(); \ 335 335 Color toColor = m_toStyle->getter(); \ 336 if (!fromColor.isValid()) \ 337 fromColor = m_fromStyle->color(); \ 338 if (!toColor.isValid()) \ 339 toColor = m_toStyle->color(); \ 340 if (fromColor != toColor) {\ 341 m_finished = false; \ 342 if (!animatedStyle) \ 343 animatedStyle = new (renderer->renderArena()) RenderStyle(*targetStyle); \ 344 animatedStyle->setter(blendFunc(fromColor, toColor, progress()));\ 345 if (m_property == prop) \ 346 return; \ 336 if (fromColor.isValid() || toColor.isValid()) { \ 337 if (!fromColor.isValid()) \ 338 fromColor = m_fromStyle->color(); \ 339 if (!toColor.isValid()) \ 340 toColor = m_toStyle->color(); \ 341 if (fromColor != toColor) {\ 342 m_finished = false; \ 343 if (!animatedStyle) \ 344 animatedStyle = new (renderer->renderArena()) RenderStyle(*targetStyle); \ 345 animatedStyle->setter(blendFunc(fromColor, toColor, progress()));\ 346 if (m_property == prop) \ 347 return; \ 348 }\ 347 349 }\ 348 350 }\ -
trunk/WebCore/rendering/RenderStyle.cpp
r31155 r31485 330 330 : RefCounted<StyleBackgroundData>() 331 331 , m_background(o.m_background) 332 , m_color(o.m_color) 332 333 , m_outline(o.m_outline) 333 334 {
Note:
See TracChangeset
for help on using the changeset viewer.