RESOLVED FIXED Bug 60052
Split out layoutRunsAndFloats from layoutInlineChildren
https://bugs.webkit.org/show_bug.cgi?id=60052
Summary Split out layoutRunsAndFloats from layoutInlineChildren
Eric Seidel (no email)
Reported 2011-05-03 12:36:47 PDT
Split out layoutRunsAndFloats from layoutInlineChildren
Attachments
Patch (35.94 KB, patch)
2011-05-03 12:37 PDT, Eric Seidel (no email)
no flags
Patch (37.50 KB, patch)
2011-05-03 14:03 PDT, Eric Seidel (no email)
no flags
Patch for landing (59.60 KB, patch)
2011-05-03 14:47 PDT, Eric Seidel (no email)
eric: commit-queue+
Eric Seidel (no email)
Comment 1 2011-05-03 12:37:47 PDT
Eric Seidel (no email)
Comment 2 2011-05-03 12:38:06 PDT
The goal here was to move the smallest amount of code possible towards re-building James' patch.
Eric Seidel (no email)
Comment 3 2011-05-03 12:51:50 PDT
Comment on attachment 92106 [details] Patch OK. This causes fast/repaint/line-flow-with-floats-9.html to fail. I suspect that its due to the re-ordering of the determineStartPosition call relative to the repaintUsingContainer code.
Ryosuke Niwa
Comment 4 2011-05-03 12:55:05 PDT
Comment on attachment 92106 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=92106&action=review > Source/WebCore/rendering/RenderBlockLineLayout.cpp:750 > + 0 : determineEndPosition(startLine, floats, floatIndex, cleanLineStart, cleanLineBidiStatus, endLineLogicalTop); Nit: Indent here. > Source/WebCore/rendering/RenderBlockLineLayout.cpp:779 > + if (!lastObject->isBR()) > + lastObject = lastRootBox()->firstLeafChild()->renderer(); > + if (lastObject->isBR()) { Can we combine these if statements? > Source/WebCore/rendering/RenderBlockLineLayout.cpp:1100 > - RootInlineBox* startLine = determineStartPosition(firstLine, fullLayout, previousLineBrokeCleanly, resolver, floats, floatIndex, > - useRepaintBounds, repaintLogicalTop, repaintLogicalBottom); > - > if (fullLayout && hasInlineChild && !selfNeedsLayout()) { Should it matter that we call determineStartPosition after setting the layout dirty?
Eric Seidel (no email)
Comment 5 2011-05-03 14:03:44 PDT
Eric Seidel (no email)
Comment 6 2011-05-03 14:47:44 PDT
Created attachment 92135 [details] Patch for landing
WebKit Review Bot
Comment 7 2011-05-03 14:56:19 PDT
Attachment 92135 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCor..." exit_code: 1 Source/WebCore/rendering/RenderBlockLineLayout.cpp:769: One space before end of line comments [whitespace/comments] [5] Source/WebCore/rendering/RenderBlockLineLayout.cpp:775: Should have only a single space after a punctuation in a comment. [whitespace/comments] [5] Source/WebCore/rendering/RenderBlockLineLayout.cpp:785: Should have only a single space after a punctuation in a comment. [whitespace/comments] [5] Source/WebCore/rendering/RenderBlockLineLayout.cpp:1092: Should have only a single space after a punctuation in a comment. [whitespace/comments] [5] Total errors found: 4 in 3 files If any of these errors are false positives, please file a bug against check-webkit-style.
Eric Seidel (no email)
Comment 8 2011-05-03 15:11:57 PDT
Note You need to log in before you can comment on or make changes to this bug.