RESOLVED FIXED 123898
Refactor logical left/right offset for line methods
https://bugs.webkit.org/show_bug.cgi?id=123898
Summary Refactor logical left/right offset for line methods
Bem Jones-Bey
Reported 2013-11-06 09:33:06 PST
Refactor logical left/right offset for line methods
Attachments
Patch (24.92 KB, patch)
2013-11-06 10:08 PST, Bem Jones-Bey
no flags
Archive of layout-test-results from webkit-ews-01 for mac-mountainlion (671.35 KB, application/zip)
2013-11-06 12:08 PST, Build Bot
no flags
Archive of layout-test-results from webkit-ews-14 for mac-mountainlion-wk2 (454.71 KB, application/zip)
2013-11-06 12:54 PST, Build Bot
no flags
Archive of layout-test-results from webkit-ews-07 for mac-mountainlion (495.14 KB, application/zip)
2013-11-06 13:24 PST, Build Bot
no flags
Updated Patch (25.17 KB, patch)
2013-11-06 15:03 PST, Bem Jones-Bey
no flags
Updated Patch (25.04 KB, patch)
2013-11-07 09:42 PST, Bem Jones-Bey
no flags
Bem Jones-Bey
Comment 1 2013-11-06 10:08:01 PST
Zoltan Horvath
Comment 2 2013-11-06 10:34:55 PST
Comment on attachment 216189 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=216189&action=review > Source/WebCore/rendering/FloatingObjects.cpp:271 > +inline LayoutUnit ComputeFloatOffsetAdapter<FloatingObject::FloatLeft>::shapeOffset() const For float left and float right the function is 90% same. I think it's worth an extra static function too remove duplication. > Source/WebCore/rendering/FloatingObjects.cpp:300 > +LayoutUnit FloatingObjects::logicalLeftOffsetForPositioningFloat(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit *heightRemaining) LayoutUnit* heightRemaining Is it possible to make heightRemaining as a member of FloatingObject?
Bear Travis
Comment 3 2013-11-06 10:40:46 PST
Comment on attachment 216189 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=216189&action=review Refactoring looks good to me. > Source/WebCore/rendering/FloatingObjects.h:36 > +// FIXME this should be removed once RenderBlockFlow::nextFloatLogicalBottomBelow doesn't need it anymore. Is there a bug filed for this? > Source/WebCore/rendering/RenderBlockFlow.cpp:2035 > + return adjustLogicalRightOffsetForLine(offset, applyTextIndent); Should this be adjustLogicalLeftOffsetForLine?
Build Bot
Comment 4 2013-11-06 12:08:49 PST
Comment on attachment 216189 [details] Patch Attachment 216189 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/22328025 New failing tests: fast/line-grid/line-align-left-edges.html
Build Bot
Comment 5 2013-11-06 12:08:51 PST
Created attachment 216202 [details] Archive of layout-test-results from webkit-ews-01 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-01 Port: mac-mountainlion Platform: Mac OS X 10.8.5
Bem Jones-Bey
Comment 6 2013-11-06 12:25:22 PST
(In reply to comment #2) > (From update of attachment 216189 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=216189&action=review > > > Source/WebCore/rendering/FloatingObjects.cpp:271 > > +inline LayoutUnit ComputeFloatOffsetAdapter<FloatingObject::FloatLeft>::shapeOffset() const > > For float left and float right the function is 90% same. I think it's worth an extra static function too remove duplication. Ok, I'll do that. > > > Source/WebCore/rendering/FloatingObjects.cpp:300 > > +LayoutUnit FloatingObjects::logicalLeftOffsetForPositioningFloat(LayoutUnit fixedOffset, LayoutUnit logicalTop, LayoutUnit *heightRemaining) > > LayoutUnit* heightRemaining > > Is it possible to make heightRemaining as a member of FloatingObject? I'm not sure. I'll look into that for a future patch. I do have plans to do something with heightRemaining, because it needs to stop being an out parameter.
Bem Jones-Bey
Comment 7 2013-11-06 12:26:47 PST
(In reply to comment #3) > (From update of attachment 216189 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=216189&action=review > > Refactoring looks good to me. > > > Source/WebCore/rendering/FloatingObjects.h:36 > > +// FIXME this should be removed once RenderBlockFlow::nextFloatLogicalBottomBelow doesn't need it anymore. > > Is there a bug filed for this? No, I was planning to do this change in the near future, so if you'd prefer for me to file a bug now, I can, but I don't expect this to still be around a week from now. :-) > > > Source/WebCore/rendering/RenderBlockFlow.cpp:2035 > > + return adjustLogicalRightOffsetForLine(offset, applyTextIndent); > > Should this be adjustLogicalLeftOffsetForLine? Yes, thanks for catching that.
Build Bot
Comment 8 2013-11-06 12:54:22 PST
Comment on attachment 216189 [details] Patch Attachment 216189 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.appspot.com/results/22558008 New failing tests: fast/line-grid/line-align-left-edges.html
Build Bot
Comment 9 2013-11-06 12:54:24 PST
Created attachment 216210 [details] Archive of layout-test-results from webkit-ews-14 for mac-mountainlion-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: webkit-ews-14 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Build Bot
Comment 10 2013-11-06 13:24:43 PST
Comment on attachment 216189 [details] Patch Attachment 216189 [details] did not pass mac-ews (mac): Output: http://webkit-queues.appspot.com/results/22128027 New failing tests: fast/line-grid/line-align-left-edges.html
Build Bot
Comment 11 2013-11-06 13:24:44 PST
Created attachment 216214 [details] Archive of layout-test-results from webkit-ews-07 for mac-mountainlion The attached test failures were seen while running run-webkit-tests on the mac-ews. Bot: webkit-ews-07 Port: mac-mountainlion Platform: Mac OS X 10.8.5
Bem Jones-Bey
Comment 12 2013-11-06 15:03:00 PST
Created attachment 216229 [details] Updated Patch
Build Bot
Comment 13 2013-11-06 15:46:25 PST
Dave Hyatt
Comment 14 2013-11-07 09:14:49 PST
Comment on attachment 216229 [details] Updated Patch Drop the "OnLine" from the block methods, since that doesn't make sense (floats aren't on lines). Aside from that, a nice refactor! r=me
Bem Jones-Bey
Comment 15 2013-11-07 09:42:44 PST
Created attachment 216310 [details] Updated Patch
WebKit Commit Bot
Comment 16 2013-11-07 10:09:48 PST
Comment on attachment 216310 [details] Updated Patch Clearing flags on attachment: 216310 Committed r158855: <http://trac.webkit.org/changeset/158855>
WebKit Commit Bot
Comment 17 2013-11-07 10:09:52 PST
All reviewed patches have been landed. Closing bug.
Jer Noble
Comment 18 2013-11-07 11:03:16 PST
Committed a windows build fix in https://trac.webkit.org/r158856.
Note You need to log in before you can comment on or make changes to this bug.