RESOLVED FIXED Bug 120897
Get rid of isBlockFlowFlexBoxOrGrid()
https://bugs.webkit.org/show_bug.cgi?id=120897
Summary Get rid of isBlockFlowFlexBoxOrGrid()
Dave Hyatt
Reported 2013-09-06 14:42:18 PDT
Get rid of isBlockFlowFlexBoxOrGrid() by converting all the callers to say what it is they really intended.
Attachments
Patch (26.90 KB, patch)
2013-09-06 16:16 PDT, Dave Hyatt
bdakin: review+
Dave Hyatt
Comment 1 2013-09-06 16:16:15 PDT
WebKit Commit Bot
Comment 2 2013-09-06 16:18:26 PDT
Attachment 210813 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/WebCore/ChangeLog', u'Source/WebCore/accessibility/AccessibilityRenderObject.cpp', u'Source/WebCore/dom/Position.cpp', u'Source/WebCore/dom/PositionIterator.cpp', u'Source/WebCore/editing/CompositeEditCommand.cpp', u'Source/WebCore/editing/Editor.cpp', u'Source/WebCore/editing/FrameSelection.cpp', u'Source/WebCore/editing/TextIterator.cpp', u'Source/WebCore/editing/TypingCommand.cpp', u'Source/WebCore/editing/htmlediting.cpp', u'Source/WebCore/rendering/LayoutState.cpp', u'Source/WebCore/rendering/RenderBlock.cpp', u'Source/WebCore/rendering/RenderBox.cpp', u'Source/WebCore/rendering/RenderBoxModelObject.h', u'Source/WebCore/rendering/RenderInline.cpp', u'Source/WebCore/rendering/RenderLineBoxList.cpp', u'Source/WebCore/rendering/RenderObject.cpp', u'Source/WebCore/rendering/RenderObject.h', u'Source/WebCore/rendering/RenderObjectChildList.cpp', u'Source/WebCore/rendering/RenderView.h']" exit_code: 1 Source/WebCore/rendering/RenderBlock.cpp:7095: When wrapping a line, only indent 4 spaces. [whitespace/indent] [3] Total errors found: 1 in 19 files If any of these errors are false positives, please file a bug against check-webkit-style.
Beth Dakin
Comment 3 2013-09-06 16:32:57 PDT
Comment on attachment 210813 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=210813&action=review > Source/WebCore/ChangeLog:169 > + Need a short description (OOPS!). It looks like you maybe ran prepare-Changelog twice? You should delete one of the entries.
Dave Hyatt
Comment 4 2013-09-09 11:36:44 PDT
Fixed in r155366.
Levi Weintraub
Comment 5 2013-09-10 15:24:22 PDT
Comment on attachment 210813 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=210813&action=review > Source/WebCore/rendering/RenderBlock.cpp:3686 > + if (!isRenderBlockFlow()) // FIXME: Make multi-column selection gap filling work someday. I found that you want if (!isRenderBlockFlow() && !isFlexibleBoxIncludingDeprecated()) here, otherwise you miss selections in buttons (at least on blink).
Note You need to log in before you can comment on or make changes to this bug.