1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
|
/*
* Copyright (C) 2018 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "InlineFormattingContext.h"
#include "AvailableLineWidthOverride.h"
#include "FloatingContext.h"
#include "FontCascade.h"
#include "InlineContentBalancer.h"
#include "InlineContentCache.h"
#include "InlineDamage.h"
#include "InlineDisplayBox.h"
#include "InlineDisplayContentBuilder.h"
#include "InlineDisplayLineBuilder.h"
#include "InlineItemsBuilder.h"
#include "InlineLayoutState.h"
#include "InlineLineBox.h"
#include "InlineLineBoxBuilder.h"
#include "InlineLineTypes.h"
#include "InlineTextItem.h"
#include "IntrinsicWidthHandler.h"
#include "LayoutBox.h"
#include "LayoutContext.h"
#include "LayoutElementBox.h"
#include "LayoutInitialContainingBlock.h"
#include "LayoutInlineTextBox.h"
#include "LayoutState.h"
#include "Logging.h"
#include "RenderStyleInlines.h"
#include "TextOnlySimpleLineBuilder.h"
#include "TextUtil.h"
#include <wtf/IsoMallocInlines.h>
#include <wtf/text/TextStream.h>
namespace WebCore {
namespace Layout {
WTF_MAKE_ISO_ALLOCATED_IMPL(InlineFormattingContext);
static std::optional<InlineItemRange> partialRangeForDamage(const InlineItemList& inlineItemList, const InlineDamage& lineDamage)
{
auto damageStartPosition = lineDamage.start()->inlineItemPosition;
if (damageStartPosition.index >= inlineItemList.size()) {
ASSERT_NOT_REACHED();
return { };
}
auto& damagedInlineItem = inlineItemList[damageStartPosition.index];
if (damageStartPosition.offset && (!is<InlineTextItem>(damagedInlineItem) || damageStartPosition.offset >= downcast<InlineTextItem>(damagedInlineItem).length())) {
ASSERT_NOT_REACHED();
return { };
}
return InlineItemRange { damageStartPosition, { inlineItemList.size(), 0 } };
}
static bool isEmptyInlineContent(const InlineItemList& inlineItemList)
{
// Very common, pseudo before/after empty content.
return inlineItemList.size() == 1 && is<InlineTextItem>(inlineItemList[0]) && !downcast<InlineTextItem>(inlineItemList[0]).length();
}
InlineFormattingContext::InlineFormattingContext(const ElementBox& rootBlockContainer, LayoutState& layoutState, BlockLayoutState& parentBlockLayoutState)
: m_rootBlockContainer(rootBlockContainer)
, m_layoutState(layoutState)
, m_floatingContext(rootBlockContainer, layoutState, parentBlockLayoutState.placedFloats())
, m_inlineFormattingUtils(*this)
, m_inlineQuirks(*this)
, m_inlineContentCache(layoutState.inlineContentCache(rootBlockContainer))
, m_inlineLayoutState(parentBlockLayoutState)
{
initializeInlineLayoutState(layoutState);
}
InlineLayoutResult InlineFormattingContext::layout(const ConstraintsForInlineContent& constraints, const InlineDamage* lineDamage)
{
auto& placedFloats = layoutState().placedFloats();
if (!root().hasInFlowChild() && !root().hasOutOfFlowChild()) {
// Float only content does not support partial layout.
ASSERT(!lineDamage);
layoutFloatContentOnly(constraints);
return { { }, InlineLayoutResult::Range::Full };
}
if (rebuildInlineItemListIfNeeded(lineDamage)) {
// FIXME: This should go to invalidation.
inlineContentCache().clearMaximumIntrinsicWidthLineContent();
}
auto& inlineItemList = inlineContentCache().inlineItems().content();
auto needsLayoutRange = InlineItemRange { { }, { inlineItemList.size(), 0 } };
if (lineDamage) {
if (auto partialRange = partialRangeForDamage(inlineItemList, *lineDamage))
needsLayoutRange = *partialRange;
else {
// Demote this layout to full range.
lineDamage = nullptr;
}
}
if (needsLayoutRange.isEmpty()) {
ASSERT_NOT_REACHED();
return { };
}
auto previousLine = [&]() -> std::optional<PreviousLine> {
if (!needsLayoutRange.start)
return { };
if (!lineDamage || !lineDamage->start()) {
ASSERT_NOT_REACHED();
return { };
}
auto lastLineIndex = lineDamage->start()->lineIndex - 1;
// FIXME: We should be able to extract the last line information and provide it to layout as "previous line" (ends in line break and inline direction).
return PreviousLine { lastLineIndex, { }, { }, true, { }, { } };
};
if (root().style().textWrapMode() == TextWrapMode::Wrap && root().style().textWrapStyle() == TextWrapStyle::Balance) {
auto balancer = InlineContentBalancer { *this, inlineItemList, constraints.horizontal() };
auto balancedLineWidths = balancer.computeBalanceConstraints();
if (balancedLineWidths)
layoutState().setAvailableLineWidthOverride({ *balancedLineWidths });
}
if (TextOnlySimpleLineBuilder::isEligibleForSimplifiedTextOnlyInlineLayoutByContent(inlineContentCache().inlineItems(), placedFloats) && TextOnlySimpleLineBuilder::isEligibleForSimplifiedInlineLayoutByStyle(root())) {
auto simplifiedLineBuilder = TextOnlySimpleLineBuilder { *this, constraints.horizontal(), inlineItemList };
return lineLayout(simplifiedLineBuilder, inlineItemList, needsLayoutRange, previousLine(), constraints, lineDamage);
}
auto lineBuilder = LineBuilder { *this, constraints.horizontal(), inlineItemList };
return lineLayout(lineBuilder, inlineItemList, needsLayoutRange, previousLine(), constraints, lineDamage);
}
std::pair<LayoutUnit, LayoutUnit> InlineFormattingContext::minimumMaximumContentSize(const InlineDamage* lineDamage)
{
auto& inlineContentCache = this->inlineContentCache();
auto minimumContentSize = inlineContentCache.minimumContentSize();
auto maximumContentSize = inlineContentCache.maximumContentSize();
if (minimumContentSize && maximumContentSize)
return { ceiledLayoutUnit(*minimumContentSize), ceiledLayoutUnit(*maximumContentSize) };
rebuildInlineItemListIfNeeded(lineDamage);
auto& inlineItems = inlineContentCache.inlineItems();
if (!isEmptyInlineContent(inlineItems.content())) {
auto intrinsicWidthHandler = IntrinsicWidthHandler { *this, inlineItems };
if (!minimumContentSize)
minimumContentSize = intrinsicWidthHandler.minimumContentSize();
if (!maximumContentSize) {
maximumContentSize = intrinsicWidthHandler.maximumContentSize();
if (intrinsicWidthHandler.maximumIntrinsicWidthLineContent())
inlineContentCache.setMaximumIntrinsicWidthLineContent(WTFMove(*intrinsicWidthHandler.maximumIntrinsicWidthLineContent()));
}
} else {
minimumContentSize = minimumContentSize.value_or(0.f);
maximumContentSize = maximumContentSize.value_or(0.f);
}
inlineContentCache.setMinimumContentSize(*minimumContentSize);
inlineContentCache.setMaximumContentSize(*maximumContentSize);
return { ceiledLayoutUnit(*minimumContentSize), ceiledLayoutUnit(*maximumContentSize) };
}
LayoutUnit InlineFormattingContext::minimumContentSize(const InlineDamage* lineDamage)
{
auto& inlineContentCache = this->inlineContentCache();
if (inlineContentCache.minimumContentSize())
return ceiledLayoutUnit(*inlineContentCache.minimumContentSize());
rebuildInlineItemListIfNeeded(lineDamage);
auto& inlineItems = inlineContentCache.inlineItems();
auto minimumContentSize = InlineLayoutUnit { };
if (!isEmptyInlineContent(inlineItems.content()))
minimumContentSize = IntrinsicWidthHandler { *this, inlineItems }.minimumContentSize();
inlineContentCache.setMinimumContentSize(minimumContentSize);
return ceiledLayoutUnit(minimumContentSize);
}
LayoutUnit InlineFormattingContext::maximumContentSize(const InlineDamage* lineDamage)
{
auto& inlineContentCache = this->inlineContentCache();
if (inlineContentCache.maximumContentSize())
return ceiledLayoutUnit(*inlineContentCache.maximumContentSize());
rebuildInlineItemListIfNeeded(lineDamage);
auto& inlineItems = inlineContentCache.inlineItems();
auto maximumContentSize = InlineLayoutUnit { };
if (!isEmptyInlineContent(inlineItems.content())) {
auto intrinsicWidthHandler = IntrinsicWidthHandler { *this, inlineItems };
maximumContentSize = intrinsicWidthHandler.maximumContentSize();
if (intrinsicWidthHandler.maximumIntrinsicWidthLineContent())
inlineContentCache.setMaximumIntrinsicWidthLineContent(WTFMove(*intrinsicWidthHandler.maximumIntrinsicWidthLineContent()));
}
inlineContentCache.setMaximumContentSize(maximumContentSize);
return ceiledLayoutUnit(maximumContentSize);
}
static bool mayExitFromPartialLayout(const InlineDamage& lineDamage, size_t lineIndex, const InlineDisplay::Boxes& newContent)
{
if (lineDamage.start()->lineIndex == lineIndex) {
// Never stop at the damaged line. Adding trailing overflowing content could easily produce the
// same set of display boxes for the first damaged line.
return false;
}
auto trailingContentFromPreviousLayout = lineDamage.trailingContentForLine(lineIndex);
return trailingContentFromPreviousLayout ? (!newContent.isEmpty() && *trailingContentFromPreviousLayout == newContent.last()) : false;
}
InlineLayoutResult InlineFormattingContext::lineLayout(AbstractLineBuilder& lineBuilder, const InlineItemList& inlineItemList, InlineItemRange needsLayoutRange, std::optional<PreviousLine> previousLine, const ConstraintsForInlineContent& constraints, const InlineDamage* lineDamage)
{
ASSERT(!needsLayoutRange.isEmpty());
auto isPartialLayout = lineDamage && lineDamage->start();
if (!isPartialLayout) {
ASSERT(!previousLine);
auto layoutResult = InlineLayoutResult { { }, InlineLayoutResult::Range::Full };
if (createDisplayContentForLineFromCachedContent(constraints, layoutResult))
return layoutResult;
if (isEmptyInlineContent(inlineItemList)) {
createDisplayContentForEmptyInlineContent(constraints, layoutResult);
return layoutResult;
}
}
auto layoutResult = InlineLayoutResult { };
if (!needsLayoutRange.start)
layoutResult.displayContent.boxes.reserveInitialCapacity(inlineItemList.size());
auto floatingContext = this->floatingContext();
auto lineLogicalTop = InlineLayoutUnit { constraints.logicalTop() };
auto previousLineEnd = std::optional<InlineItemPosition> { };
auto leadingInlineItemPosition = needsLayoutRange.start;
size_t numberOfLinesWithInlineContent = 0;
while (true) {
auto lineInitialRect = InlineRect { lineLogicalTop, constraints.horizontal().logicalLeft, constraints.horizontal().logicalWidth, formattingUtils().initialLineHeight(!previousLine.has_value()) };
auto lineInput = LineInput { { leadingInlineItemPosition, needsLayoutRange.end }, lineInitialRect };
auto lineIndex = previousLine ? (previousLine->lineIndex + 1) : 0lu;
auto lineLayoutResult = lineBuilder.layoutInlineContent(lineInput, previousLine);
auto lineBox = LineBoxBuilder { *this, lineLayoutResult }.build(lineIndex);
auto lineLogicalRect = createDisplayContentForInlineContent(lineBox, lineLayoutResult, constraints, layoutResult.displayContent, numberOfLinesWithInlineContent);
updateBoxGeometryForPlacedFloats(lineLayoutResult.floatContent.placedFloats);
updateInlineLayoutStateWithLineLayoutResult(lineLayoutResult, lineLogicalRect, floatingContext);
auto lineContentEnd = lineLayoutResult.inlineItemRange.end;
leadingInlineItemPosition = InlineFormattingUtils::leadingInlineItemPositionForNextLine(lineContentEnd, previousLineEnd, !lineLayoutResult.floatContent.hasIntrusiveFloat.isEmpty(), needsLayoutRange.end);
auto isLastLine = leadingInlineItemPosition == needsLayoutRange.end && lineLayoutResult.floatContent.suspendedFloats.isEmpty();
if (isLastLine) {
layoutResult.range = !isPartialLayout ? InlineLayoutResult::Range::Full : InlineLayoutResult::Range::FullFromDamage;
break;
}
if (isPartialLayout && mayExitFromPartialLayout(*lineDamage, lineIndex, layoutResult.displayContent.boxes)) {
layoutResult.range = InlineLayoutResult::Range::PartialFromDamage;
break;
}
auto lineHasInlineContent = !lineLayoutResult.inlineContent.isEmpty();
numberOfLinesWithInlineContent += lineHasInlineContent ? 1 : 0;
auto hasEverSeenInlineContent = lineHasInlineContent || (previousLine && previousLine->hasInlineContent);
previousLine = PreviousLine { lineIndex, lineLayoutResult.contentGeometry.trailingOverflowingContentWidth, lineHasInlineContent && lineLayoutResult.inlineContent.last().isLineBreak(), hasEverSeenInlineContent, lineLayoutResult.directionality.inlineBaseDirection, WTFMove(lineLayoutResult.floatContent.suspendedFloats) };
previousLineEnd = lineContentEnd;
lineLogicalTop = formattingUtils().logicalTopForNextLine(lineLayoutResult, lineLogicalRect, floatingContext);
}
InlineDisplayLineBuilder::addLineClampTrailingLinkBoxIfApplicable(*this, layoutState(), layoutResult.displayContent);
return layoutResult;
}
void InlineFormattingContext::layoutFloatContentOnly(const ConstraintsForInlineContent& constraints)
{
ASSERT(!root().hasInFlowChild());
auto& inlineContentCache = this->inlineContentCache();
auto floatingContext = this->floatingContext();
auto& placedFloats = layoutState().placedFloats();
InlineItemsBuilder { inlineContentCache, root() }.build({ });
for (auto& inlineItem : inlineContentCache.inlineItems().content()) {
if (inlineItem.isFloat()) {
auto& floatBox = inlineItem.layoutBox();
auto& floatBoxGeometry = geometryForBox(floatBox);
auto staticPosition = LayoutPoint { constraints.horizontal().logicalLeft, constraints.logicalTop() };
staticPosition.move(floatBoxGeometry.marginStart(), floatBoxGeometry.marginBefore());
floatBoxGeometry.setTopLeft(staticPosition);
auto floatBoxTopLeft = floatingContext.positionForFloat(floatBox, floatBoxGeometry, constraints.horizontal());
floatBoxGeometry.setTopLeft(floatBoxTopLeft);
placedFloats.append(floatingContext.makeFloatItem(floatBox, floatBoxGeometry));
continue;
}
ASSERT_NOT_REACHED();
}
}
void InlineFormattingContext::updateInlineLayoutStateWithLineLayoutResult(const LineLayoutResult& lineLayoutResult, const InlineRect& lineLogicalRect, const FloatingContext& floatingContext)
{
if (auto firstLineGap = lineLayoutResult.lineGeometry.initialLetterClearGap) {
ASSERT(!layoutState().clearGapBeforeFirstLine());
layoutState().setClearGapBeforeFirstLine(*firstLineGap);
}
if (lineLayoutResult.isFirstLast.isLastLineWithInlineContent)
layoutState().setClearGapAfterLastLine(formattingUtils().logicalTopForNextLine(lineLayoutResult, lineLogicalRect, floatingContext) - lineLogicalRect.bottom());
lineLayoutResult.endsWithHyphen ? layoutState().incrementSuccessiveHyphenatedLineCount() : layoutState().resetSuccessiveHyphenatedLineCount();
}
void InlineFormattingContext::updateBoxGeometryForPlacedFloats(const LineLayoutResult::PlacedFloatList& placedFloats)
{
for (auto& floatItem : placedFloats) {
if (!floatItem.layoutBox()) {
ASSERT_NOT_REACHED();
// We should not be placing intrusive floats coming from parent BFC.
continue;
}
auto& boxGeometry = geometryForBox(*floatItem.layoutBox());
auto usedGeometry = floatItem.boxGeometry();
boxGeometry.setTopLeft(BoxGeometry::borderBoxTopLeft(usedGeometry));
// Adopt trimmed inline direction margin.
boxGeometry.setHorizontalMargin(usedGeometry.horizontalMargin());
}
}
InlineRect InlineFormattingContext::createDisplayContentForInlineContent(const LineBox& lineBox, const LineLayoutResult& lineLayoutResult, const ConstraintsForInlineContent& constraints, InlineDisplay::Content& displayContent, size_t numberOfPreviousLinesWithInlineContent)
{
auto numberOfVisibleLinesAllowed = layoutState().parentBlockLayoutState().lineClamp() ? std::make_optional(layoutState().parentBlockLayoutState().lineClamp()->allowedLineCount()) : std::nullopt;
auto numberOfLinesWithInlineContent = numberOfPreviousLinesWithInlineContent + (!lineLayoutResult.inlineContent.isEmpty() ? 1 : 0);
auto lineIsFullyTruncatedInBlockDirection = numberOfVisibleLinesAllowed && numberOfLinesWithInlineContent > *numberOfVisibleLinesAllowed;
auto displayLine = InlineDisplayLineBuilder { *this, constraints }.build(lineLayoutResult, lineBox, lineIsFullyTruncatedInBlockDirection);
auto boxes = InlineDisplayContentBuilder { *this, constraints, lineBox, displayLine }.build(lineLayoutResult);
auto ellipsisPolicy = InlineFormattingUtils::lineEndingEllipsisPolicy(root().style(), numberOfLinesWithInlineContent, numberOfVisibleLinesAllowed);
if (auto ellipsisRect = InlineDisplayLineBuilder::trailingEllipsisVisualRectAfterTruncation(ellipsisPolicy, displayLine, boxes, lineLayoutResult.isFirstLast.isLastLineWithInlineContent)) {
displayLine.setEllipsisVisualRect(*ellipsisRect);
if (ellipsisPolicy == LineEndingEllipsisPolicy::WhenContentOverflowsInBlockDirection)
layoutState().setClampedLineIndex(lineBox.lineIndex());
}
displayContent.boxes.appendVector(WTFMove(boxes));
displayContent.lines.append(displayLine);
return InlineFormattingUtils::flipVisualRectToLogicalForWritingMode(displayContent.lines.last().lineBoxRect(), root().style().writingMode());
}
void InlineFormattingContext::resetGeometryForClampedContent(const InlineItemRange& needsDisplayContentRange, const LineLayoutResult::SuspendedFloatList& suspendedFloats, LayoutPoint topleft)
{
if (needsDisplayContentRange.isEmpty() && suspendedFloats.isEmpty())
return;
auto& inlineItemList = inlineContentCache().inlineItems().content();
for (size_t index = needsDisplayContentRange.startIndex(); index < needsDisplayContentRange.endIndex(); ++index) {
auto& inlineItem = inlineItemList[index];
auto hasBoxGeometry = inlineItem.isBox() || inlineItem.isFloat() || inlineItem.isHardLineBreak() || inlineItem.isInlineBoxStart();
if (!hasBoxGeometry)
continue;
auto& boxGeometry = geometryForBox(inlineItem.layoutBox());
boxGeometry.setTopLeft(topleft);
boxGeometry.setContentBoxHeight({ });
boxGeometry.setContentBoxWidth({ });
}
}
bool InlineFormattingContext::createDisplayContentForLineFromCachedContent(const ConstraintsForInlineContent& constraints, InlineLayoutResult& layoutResult)
{
auto& inlineContentCache = this->inlineContentCache();
if (!inlineContentCache.maximumIntrinsicWidthLineContent() || !inlineContentCache.maximumContentSize())
return false;
auto horizontalAvailableSpace = constraints.horizontal().logicalWidth;
if (*inlineContentCache.maximumContentSize() > horizontalAvailableSpace) {
inlineContentCache.clearMaximumIntrinsicWidthLineContent();
return false;
}
if (!layoutState().placedFloats().isEmpty()) {
inlineContentCache.clearMaximumIntrinsicWidthLineContent();
return false;
}
auto& lineContent = *inlineContentCache.maximumIntrinsicWidthLineContent();
auto restoreTrimmedTrailingWhitespaceIfApplicable = [&]() -> std::optional<bool> {
// Special 'line-break: after-white-space' behavior where min/max width trims trailing whitespace, while
// layout should preserve _overflowing_ trailing whitespace.
if (root().style().lineBreak() != LineBreak::AfterWhiteSpace || !lineContent.trimmedTrailingWhitespaceWidth)
return { };
if (ceiledLayoutUnit(lineContent.contentGeometry.logicalWidth) + LayoutUnit::epsilon() <= horizontalAvailableSpace)
return { };
if (!Line::restoreTrimmedTrailingWhitespace(lineContent.trimmedTrailingWhitespaceWidth, lineContent.inlineContent)) {
ASSERT_NOT_REACHED();
return false;
}
lineContent.contentGeometry.logicalWidth += lineContent.trimmedTrailingWhitespaceWidth;
lineContent.contentGeometry.logicalRightIncludingNegativeMargin += lineContent.trimmedTrailingWhitespaceWidth;
lineContent.trimmedTrailingWhitespaceWidth = { };
return true;
};
auto successfullyTrimmed = restoreTrimmedTrailingWhitespaceIfApplicable();
if (successfullyTrimmed && !*successfullyTrimmed) {
inlineContentCache.clearMaximumIntrinsicWidthLineContent();
return false;
}
lineContent.lineGeometry.logicalTopLeft = { constraints.horizontal().logicalLeft, constraints.logicalTop() };
lineContent.lineGeometry.logicalWidth = constraints.horizontal().logicalWidth;
lineContent.contentGeometry.logicalLeft = InlineFormattingUtils::horizontalAlignmentOffset(root().style(), lineContent.contentGeometry.logicalWidth, lineContent.lineGeometry.logicalWidth, lineContent.hangingContent.logicalWidth, lineContent.inlineContent, true);
auto lineBox = LineBoxBuilder { *this, lineContent }.build({ });
createDisplayContentForInlineContent(lineBox, lineContent, constraints, layoutResult.displayContent);
return true;
}
void InlineFormattingContext::createDisplayContentForEmptyInlineContent(const ConstraintsForInlineContent& constraints, InlineLayoutResult& layoutResult)
{
auto emptyLineBreakingResult = LineLayoutResult { };
emptyLineBreakingResult.lineGeometry = { { constraints.horizontal().logicalLeft, constraints.logicalTop() }, { constraints.horizontal().logicalWidth } };
auto lineBox = LineBoxBuilder { *this, emptyLineBreakingResult }.build({ });
createDisplayContentForInlineContent(lineBox, emptyLineBreakingResult, constraints, layoutResult.displayContent);
}
void InlineFormattingContext::initializeInlineLayoutState(const LayoutState& layoutState)
{
auto& inlineLayoutState = this->layoutState();
if (auto limitLinesValue = root().style().hyphenationLimitLines(); limitLinesValue != RenderStyle::initialHyphenationLimitLines())
inlineLayoutState.setHyphenationLimitLines(limitLinesValue);
// FIXME: Remove when IFC takes care of running layout on inline-blocks.
inlineLayoutState.setShouldNotSynthesizeInlineBlockBaseline();
if (layoutState.inStandardsMode())
inlineLayoutState.setInStandardsMode();
}
#if ASSERT_ENABLED
static inline bool isOkToAccessBoxGeometry(const Box& layoutBox, const ElementBox& rootBlockContainer, std::optional<InlineFormattingContext::EscapeReason> escapeReason)
{
if (escapeReason == InlineFormattingContext::EscapeReason::InkOverflowNeedsInitialContiningBlockForStrokeWidth && is<InitialContainingBlock>(layoutBox))
return true;
// This is the non-escape case of accessing a box's geometry information within the same formatting context when computing static position for out-of-flow boxes.
if (layoutBox.isOutOfFlowPositioned())
return true;
auto containingBlock = [&]() -> const Box* {
for (auto* ancestor = &layoutBox.parent(); !is<InitialContainingBlock>(*ancestor); ancestor = &ancestor->parent()) {
if (ancestor->isContainingBlockForInFlow())
return ancestor;
}
return nullptr;
};
// This is the non-escape case of accessing a box's geometry information within the same formatting context.
return containingBlock() == &rootBlockContainer;
};
#endif
const BoxGeometry& InlineFormattingContext::geometryForBox(const Box& layoutBox, std::optional<EscapeReason> escapeReason) const
{
ASSERT_UNUSED(escapeReason, isOkToAccessBoxGeometry(layoutBox, root(), escapeReason));
return m_layoutState.geometryForBox(layoutBox);
}
BoxGeometry& InlineFormattingContext::geometryForBox(const Box& layoutBox, std::optional<EscapeReason> escapeReason)
{
ASSERT_UNUSED(escapeReason, isOkToAccessBoxGeometry(layoutBox, root(), escapeReason));
return m_layoutState.ensureGeometryForBox(layoutBox);
}
bool InlineFormattingContext::rebuildInlineItemListIfNeeded(const InlineDamage* lineDamage)
{
auto& inlineContentCache = this->inlineContentCache();
auto inlineItemListNeedsUpdate = inlineContentCache.inlineItems().isEmpty() || lineDamage;
if (!inlineItemListNeedsUpdate)
return false;
auto needsLayoutStartPosition = !lineDamage || !lineDamage->start() ? InlineItemPosition() : lineDamage->start()->inlineItemPosition;
InlineItemsBuilder { inlineContentCache, root() }.build(needsLayoutStartPosition);
return true;
}
}
}
|