Changeset 111884 in webkit
- Timestamp:
- Mar 23, 2012, 11:34:31 AM (13 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r111883 r111884 1 2012-03-23 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/7883987> ASSERTION FAILED: ASSERT(input == AnimationStateInputEndTimerFired || input == AnimationStateInputPlayStatePaused) in AnimationBase::updateStateMachine causing multiple "crashes" on Lion Intel Debug WebKit testers 4 https://bugs.webkit.org/show_bug.cgi?id=81351 5 6 Rubber-stamped by Jessie Berlin. 7 8 * page/animation/AnimationBase.cpp: 9 (WebCore::AnimationBase::updateStateMachine): Replaced the assertion with a LOG_ERROR so that 10 the issue is still noticeable, but it does not automatically make the debug bots red. 11 1 12 2012-03-23 Mike Lawther <mikelawther@chromium.org> 2 13 -
trunk/Source/WebCore/page/animation/AnimationBase.cpp
r110886 r111884 1495 1495 break; 1496 1496 case AnimationStateEnding: 1497 ASSERT(input == AnimationStateInputEndTimerFired || input == AnimationStateInputPlayStatePaused); 1498 1497 #if !LOG_DISABLED 1498 if (input != AnimationStateInputEndTimerFired && input != AnimationStateInputPlayStatePaused) 1499 LOG_ERROR("State is AnimationStateEnding, but input is not AnimationStateInputEndTimerFired or AnimationStateInputPlayStatePaused. It is %d.", input); 1500 #endif 1499 1501 if (input == AnimationStateInputEndTimerFired) { 1500 1502
Note:
See TracChangeset
for help on using the changeset viewer.