Bug 227033

Summary: Cleanup RenderElement::RendererCreationType
Product: WebKit Reporter: zalan <zalan>
Component: Layout and RenderingAssignee: zalan <zalan>
Status: RESOLVED FIXED    
Severity: Normal CC: bfulgham, cdumez, changseok, esprehn+autocc, ews-watchlist, glenn, gyuyoung.kim, kondapallykalyan, mifenton, pdr, simon.fraser, svillar, webkit-bug-importer, zalan
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch
none
Patch none

Description zalan 2021-06-15 10:01:34 PDT
it's confusing and highly error-prone.
Comment 1 zalan 2021-06-15 10:09:21 PDT
Created attachment 431453 [details]
Patch
Comment 2 zalan 2021-06-15 12:27:55 PDT
Looks like we've got one test covering this. Will adjust the patch.
Comment 3 zalan 2021-06-15 13:07:12 PDT
Created attachment 431471 [details]
Patch
Comment 4 Simon Fraser (smfr) 2021-06-15 13:53:20 PDT
Comment on attachment 431471 [details]
Patch

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

> Source/WebCore/rendering/RenderElement.cpp:189
> +        if (rendererTypeOverride.contains(ConstructBlockLevelRendererFor::TableTypes))
>              return createRenderer<RenderBlockFlow>(element, WTFMove(style));

Is this entire 'default' block about table types? Seems like it would better to explicitly check for a table display type here?
Comment 5 zalan 2021-06-15 14:52:48 PDT
(In reply to Simon Fraser (smfr) from comment #4)
> Comment on attachment 431471 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=431471&action=review
> 
> > Source/WebCore/rendering/RenderElement.cpp:189
> > +        if (rendererTypeOverride.contains(ConstructBlockLevelRendererFor::TableTypes))
> >              return createRenderer<RenderBlockFlow>(element, WTFMove(style));
> 
> Is this entire 'default' block about table types? Seems like it would better
> to explicitly check for a table display type here?

Yeah, that's a good idea.
Comment 6 zalan 2021-06-15 19:39:29 PDT
Created attachment 431511 [details]
Patch
Comment 7 EWS 2021-06-15 20:58:58 PDT
Committed r278919 (238850@main): <https://commits.webkit.org/238850@main>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 431511 [details].
Comment 8 Radar WebKit Bug Importer 2021-06-15 20:59:17 PDT
<rdar://problem/79377750>