Changeset 3729 in webkit


Ignore:
Timestamp:
Mar 3, 2003, 12:24:26 PM (23 years ago)
Author:
hyatt
Message:

Fix for 3178361, <th> don't draw borders. Boneheaded mistake
on my part. Just forgot to include it along with <td> in the
CSS hack for sharing cell rules.

Reviewed by rjw

  • khtml/css/cssstyleselector.cpp:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog-2003-10-25

    r3727 r3729  
     12003-03-03  David Hyatt  <hyatt@apple.com>
     2
     3        Fix for 3178361, <th> don't draw borders.   Boneheaded mistake
     4        on my part.  Just forgot to include it along with <td> in the
     5        CSS hack for sharing cell rules.
     6       
     7        Reviewed by rjw
     8
     9        * khtml/css/cssstyleselector.cpp:
     10
    1112003-03-03  Richard Williamson   <rjw@apple.com>
    212
  • trunk/WebCore/ChangeLog-2005-08-23

    r3727 r3729  
     12003-03-03  David Hyatt  <hyatt@apple.com>
     2
     3        Fix for 3178361, <th> don't draw borders.   Boneheaded mistake
     4        on my part.  Just forgot to include it along with <td> in the
     5        CSS hack for sharing cell rules.
     6       
     7        Reviewed by rjw
     8
     9        * khtml/css/cssstyleselector.cpp:
     10
    1112003-03-03  Richard Williamson   <rjw@apple.com>
    212
  • trunk/WebCore/khtml/css/cssstyleselector.cpp

    r3706 r3729  
    490490{
    491491    CSSStyleDeclarationImpl* addDecls = 0;
    492     if (e->id() == ID_TD) // For now only TD Implements the virtual function for shared cell rules.
    493         addDecls = e->getAdditionalStyleDecls();
     492    if (e->id() == ID_TD || e->id() == ID_TH)     // For now only TableCellElement implements the
     493        addDecls = e->getAdditionalStyleDecls();  // virtual function for shared cell rules.
    494494
    495495    if (!decl && !addDecls)
Note: See TracChangeset for help on using the changeset viewer.