Bug 123725

Summary: Use RenderAncestorIterator in a couple of places.
Product: WebKit Reporter: Andreas Kling <kling>
Component: Layout and RenderingAssignee: Andreas Kling <kling>
Status: RESOLVED FIXED    
Severity: Normal CC: kling, koivisto
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

Andreas Kling
Reported 2013-11-04 01:37:48 PST
Use RenderAncestorIterator in a couple of places.
Attachments
Patch (8.37 KB, patch)
2013-11-04 01:46 PST, Andreas Kling
koivisto: review+
Andreas Kling
Comment 1 2013-11-04 01:46:00 PST
Antti Koivisto
Comment 2 2013-11-04 04:00:04 PST
Comment on attachment 215897 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=215897&action=review > Source/WebCore/rendering/RenderRegion.cpp:405 > + if (auto closestFlowThreadAncestor = ancestorsOfType<RenderNamedFlowThread>(*this).first()) { > + m_parentNamedFlowThread = &*closestFlowThreadAncestor; > + // Do not take into account a region that links a flow with itself. The dependency > + // cannot change, so it is not worth adding it to the list. > + if (m_flowThread == m_parentNamedFlowThread) > + m_flowThread = nullptr; > + } else > + m_parentNamedFlowThread = nullptr; > } I would reverse the test and do early return in the else case.
Andreas Kling
Comment 3 2013-11-04 16:11:12 PST
Note You need to log in before you can comment on or make changes to this bug.