Changeset 13981 in webkit


Ignore:
Timestamp:
Apr 19, 2006 7:33:53 PM (18 years ago)
Author:
thatcher
Message:

Reviewed by Hyatt.

  • manual-tests/dynamic-shadow.html: Added.
  • rendering/render_style.cpp: (WebCore::RenderStyle::diff): Changed to return Layout when text-shadow changes.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r13977 r13981  
     12006-04-19  Mitz Pettel  <opendarwin.org@mitzpettel.com>
     2
     3        Reviewed by Hyatt.
     4
     5        - fix http://bugzilla.opendarwin.org/show_bug.cgi?id=8352
     6          CSS text-shadow does not repaint completely when changed
     7
     8        * manual-tests/dynamic-shadow.html: Added.
     9        * rendering/render_style.cpp:
     10        (WebCore::RenderStyle::diff): Changed to return Layout when text-shadow
     11        changes.
     12
    1132006-04-19  Adele Peterson  <adele@apple.com>
    214
  • trunk/WebCore/rendering/render_style.cpp

    r13959 r13981  
    816816         !(inherited_flags._direction == other->inherited_flags._direction) ||
    817817         !(inherited_flags._white_space == other->inherited_flags._white_space) ||
    818          !(noninherited_flags._clear == other->noninherited_flags._clear)
     818         !(noninherited_flags._clear == other->noninherited_flags._clear) ||
     819         !css3InheritedData->shadowDataEquivalent(*other->css3InheritedData.get())
    819820        )
    820821        return Layout;
     
    872873        *background.get() != *other->background.get() ||
    873874        visual->textDecoration != other->visual->textDecoration ||
    874         !css3InheritedData->shadowDataEquivalent(*other->css3InheritedData.get()) ||
    875875        css3InheritedData->userModify != other->css3InheritedData->userModify ||
    876876        css3NonInheritedData->userSelect != other->css3NonInheritedData->userSelect ||
Note: See TracChangeset for help on using the changeset viewer.