Changeset 176750 in webkit
- Timestamp:
- Dec 3, 2014, 12:53:49 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/fast/multicol/svg-content-as-column-spanner-crash-expected.txt (added)
-
LayoutTests/fast/multicol/svg-content-as-column-spanner-crash.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/rendering/RenderMultiColumnFlowThread.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r176731 r176750 1 2014-12-03 Zalan Bujtas <zalan@apple.com> 2 3 ASSERTION: RenderMultiColumnFlowThread::processPossibleSpannerDescendant() when column spanner's parent is not a RenderBlockFlow. 4 https://bugs.webkit.org/show_bug.cgi?id=139188 5 rdar://problem/18502182 6 7 Reviewed by David Hyatt. 8 9 This patch ensures that the validation check for spanner in isValidColumnSpanner() is in synch 10 with the expectation in RenderMultiColumnFlowThread::processPossibleSpannerDescendant(). 11 (descendant's parent is expected to be a RenderBlockFlow) 12 13 * fast/multicol/svg-content-as-column-spanner-crash-expected.txt: Added. 14 * fast/multicol/svg-content-as-column-spanner-crash.html: Added. 15 1 16 2014-12-03 Joanmarie Diggs <jdiggs@igalia.com> 2 17 -
trunk/Source/WebCore/ChangeLog
r176748 r176750 1 2014-12-03 Zalan Bujtas <zalan@apple.com> 2 3 ASSERTION: RenderMultiColumnFlowThread::processPossibleSpannerDescendant() when column spanner's parent is not a RenderBlockFlow. 4 https://bugs.webkit.org/show_bug.cgi?id=139188 5 rdar://problem/18502182 6 7 Reviewed by David Hyatt. 8 9 This patch ensures that the validation check for spanner in isValidColumnSpanner() is in synch 10 with the expectation in RenderMultiColumnFlowThread::processPossibleSpannerDescendant(). 11 (descendant's parent is expected to be a RenderBlockFlow) 12 13 Test: fast/multicol/svg-content-as-column-spanner-crash.html 14 15 * rendering/RenderMultiColumnFlowThread.cpp: 16 (WebCore::isValidColumnSpanner): 17 1 18 2014-12-03 peavo@outlook.com <peavo@outlook.com> 2 19 -
trunk/Source/WebCore/rendering/RenderMultiColumnFlowThread.cpp
r175641 r176750 250 250 return false; 251 251 252 Render Block* container = descendant->containingBlock();252 RenderElement* container = descendant->parent(); 253 253 if (!is<RenderBlockFlow>(*container) || container->childrenInline()) { 254 254 // Needs to be block-level.
Note:
See TracChangeset
for help on using the changeset viewer.