Bug 121285

Summary: [CTTE] RenderListItem is never anonymous.
Product: WebKit Reporter: Andreas Kling <kling>
Component: Layout and RenderingAssignee: Andreas Kling <kling>
Status: RESOLVED FIXED    
Severity: Normal CC: commit-queue, esprehn+autocc, glenn, kangil.han, kling, kondapallykalyan
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

Description Andreas Kling 2013-09-13 03:16:11 PDT
[CTTE] RenderListItem is never anonymous.
Comment 1 Andreas Kling 2013-09-13 03:25:58 PDT
Created attachment 211528 [details]
Patch
Comment 2 Antti Koivisto 2013-09-13 03:56:38 PDT
Comment on attachment 211528 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=211528&action=review

> Source/WebCore/rendering/RenderListItem.cpp:104
> -    Element* listItemNode = listItem->element();
> +    Element& listItemNode = listItem->existingElement();

Could name local to *Element since you are here.
Comment 3 Andreas Kling 2013-09-13 04:14:16 PDT
Committed r155684: <http://trac.webkit.org/changeset/155684>