Changeset 3729 in webkit
- Timestamp:
- Mar 3, 2003, 12:24:26 PM (23 years ago)
- Location:
- trunk/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/ChangeLog-2003-10-25
r3727 r3729 1 2003-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 1 11 2003-03-03 Richard Williamson <rjw@apple.com> 2 12 -
trunk/WebCore/ChangeLog-2005-08-23
r3727 r3729 1 2003-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 1 11 2003-03-03 Richard Williamson <rjw@apple.com> 2 12 -
trunk/WebCore/khtml/css/cssstyleselector.cpp
r3706 r3729 490 490 { 491 491 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. 494 494 495 495 if (!decl && !addDecls)
Note:
See TracChangeset
for help on using the changeset viewer.