Bug 123714

Summary: RenderTextFragment: Tighten first-letter logic.
Product: WebKit Reporter: Andreas Kling <kling>
Component: Layout and RenderingAssignee: Andreas Kling <kling>
Status: RESOLVED FIXED    
Severity: Normal CC: kling
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

Andreas Kling
Reported 2013-11-03 14:58:51 PST
RenderTextFragment: Tighten first-letter logic.
Attachments
Patch (6.37 KB, patch)
2013-11-03 14:59 PST, Andreas Kling
koivisto: review+
Andreas Kling
Comment 1 2013-11-03 14:59:17 PST
Antti Koivisto
Comment 2 2013-11-03 15:36:12 PST
Comment on attachment 215879 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=215879&action=review > Source/WebCore/editing/TextIterator.cpp:672 > -static inline RenderText* firstRenderTextInFirstLetter(RenderObject* firstLetter) > +static inline RenderText* firstRenderTextInFirstLetter(RenderBoxModelObject* firstLetter) > { > if (!firstLetter) > - return 0; > + return nullptr; Maybe you could just remove this helper? Only one call site needs the null test.
Andreas Kling
Comment 3 2013-11-03 16:35:41 PST
(In reply to comment #2) > (From update of attachment 215879 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=215879&action=review > > > Source/WebCore/editing/TextIterator.cpp:672 > > -static inline RenderText* firstRenderTextInFirstLetter(RenderObject* firstLetter) > > +static inline RenderText* firstRenderTextInFirstLetter(RenderBoxModelObject* firstLetter) > > { > > if (!firstLetter) > > - return 0; > > + return nullptr; > > Maybe you could just remove this helper? Only one call site needs the null test. I like that it provides a home for the FIXME. I don't know what to do about that FIXME, otherwise I'd be fixing it. :(
Andreas Kling
Comment 4 2013-11-03 16:37:38 PST
Note You need to log in before you can comment on or make changes to this bug.