Show
Ignore:
Timestamp:
08/06/08 13:29:36 (5 months ago)
Author:
mbensi
Message:

merge with webkit revision 35588

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/WebCore/dom/Document.cpp

    r427 r431  
    2525#include "Document.h" 
    2626 
     27#include "AnimationController.h" 
    2728#include "AXObjectCache.h" 
    2829#include "CDATASection.h" 
     
    11631164    if (hasChangedChild()) 
    11641165        recalcStyle(NoChange); 
     1166     
     1167    // tell the animation controller that the style is available and it can start animations 
     1168    if (m_frame) 
     1169        m_frame->animation()->styleAvailable(); 
    11651170} 
    11661171