WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
46191
Make collapsed borders in tables work with different block flows
https://bugs.webkit.org/show_bug.cgi?id=46191
Summary
Make collapsed borders in tables work with different block flows
Dave Hyatt
Reported
2010-09-21 09:13:42 PDT
The borderStart/End/Before/After methods are hardcoded to a specific block flow directionality for collapsed border tables.
Attachments
Patch
(43.56 KB, patch)
2010-11-03 10:24 PDT
,
mitz
hyatt
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
mitz
Comment 1
2010-11-03 10:24:22 PDT
Created
attachment 72838
[details]
Patch
Dave Hyatt
Comment 2
2010-11-03 10:58:19 PDT
Comment on
attachment 72838
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=72838&action=review
r=me
> WebCore/rendering/RenderTableCell.cpp:666 > +CollapsedBorderValue RenderTableCell::collapsedLeftBorder() const > +{ > + if (table()->style()->isHorizontalWritingMode()) > + return table()->style()->isLeftToRightDirection() ? collapsedStartBorder() : collapsedEndBorder(); > + return table()->style()->isFlippedBlocksWritingMode() ? collapsedAfterBorder() : collapsedBeforeBorder();
I would cache table()->style() in a local and then use it in the three places where you acccess it. Ditto for collapsedRight/Top/BottomBorder.
> WebCore/rendering/RenderTableCell.cpp:743 > +int RenderTableCell::borderHalfRight(bool outer) const > +{ > + if (table()->style()->isHorizontalWritingMode()) > + return table()->style()->isLeftToRightDirection() ? borderHalfEnd(outer) : borderHalfStart(outer); > + return table()->style()->isFlippedBlocksWritingMode() ? borderHalfBefore(outer) : borderHalfAfter(outer);
Same comment. Cache table()->style() in a local. Same for all of the borderHalf*** functions.
mitz
Comment 3
2010-11-03 11:04:38 PDT
Landed as <
http://trac.webkit.org/projects/webkit/changeset/71251
>.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug