Changeset 286147 in webkit
- Timestamp:
- Nov 24, 2021, 6:14:28 AM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
layout/integration/LayoutIntegrationCoverage.cpp (modified) (3 diffs)
-
layout/integration/LayoutIntegrationCoverage.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r286142 r286147 1 2021-11-24 Alan Bujtas <zalan@apple.com> 2 3 [IFC][Integration] RenderQuote is not a RenderText 4 https://bugs.webkit.org/show_bug.cgi?id=233457 5 6 Reviewed by Antti Koivisto. 7 8 It's a RenderInline since r162972. 9 10 * layout/integration/LayoutIntegrationCoverage.cpp: 11 (WebCore::LayoutIntegration::canUseForFontAndText): 12 (WebCore::LayoutIntegration::canUseForRenderInlineChild): 13 1 14 2021-11-23 Cameron McCormack <heycam@apple.com> 2 15 -
trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.cpp
r286133 r286147 162 162 stream << "RenderCounter"; 163 163 break; 164 case AvoidanceReason:: FlowTextIsRenderQuote:164 case AvoidanceReason::ContentIsRenderQuote: 165 165 stream << "RenderQuote"; 166 166 break; … … 407 407 if (textRenderer.isCounter()) 408 408 SET_REASON_AND_RETURN_IF_NEEDED(FlowTextIsRenderCounter, reasons, includeReasons); 409 if (textRenderer.isQuote())410 SET_REASON_AND_RETURN_IF_NEEDED(FlowTextIsRenderQuote, reasons, includeReasons);411 409 if (textRenderer.isTextFragment()) 412 410 SET_REASON_AND_RETURN_IF_NEEDED(FlowTextIsTextFragment, reasons, includeReasons); … … 472 470 if (renderInline.isSVGInline()) 473 471 SET_REASON_AND_RETURN_IF_NEEDED(ContentIsSVG, reasons, includeReasons); 474 if (renderInline.isRubyInline() || renderInline.isQuote())472 if (renderInline.isRubyInline()) 475 473 SET_REASON_AND_RETURN_IF_NEEDED(ContentIsRuby, reasons, includeReasons); 474 if (renderInline.isQuote()) 475 SET_REASON_AND_RETURN_IF_NEEDED(ContentIsRenderQuote, reasons, includeReasons); 476 476 if (renderInline.requiresLayer()) 477 477 SET_REASON_AND_RETURN_IF_NEEDED(InlineBoxNeedsLayer, reasons, includeReasons) -
trunk/Source/WebCore/layout/integration/LayoutIntegrationCoverage.h
r286133 r286147 76 76 FlowTextIsCombineText = 1LLU << 35, 77 77 FlowTextIsRenderCounter = 1LLU << 36, 78 FlowTextIsRenderQuote= 1LLU << 37,78 ContentIsRenderQuote = 1LLU << 37, 79 79 FlowTextIsTextFragment = 1LLU << 38, 80 80 FlowTextIsSVGInlineText = 1LLU << 39,
Note:
See TracChangeset
for help on using the changeset viewer.