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 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
|
/*
* Copyright (C) 2019-2023 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 "InlineLineBuilder.h"
#include "CSSLineBoxContainValue.h"
#include "InlineContentAligner.h"
#include "InlineFormattingContext.h"
#include "InlineFormattingUtils.h"
#include "InlineQuirks.h"
#include "LayoutBox.h"
#include "LayoutBoxGeometry.h"
#include "LayoutShape.h"
#include "RenderStyleInlines.h"
#include "RubyFormattingContext.h"
#include "TextUtil.h"
#include "UnicodeBidi.h"
#include <wtf/unicode/CharacterNames.h>
namespace WebCore {
namespace Layout {
struct LineContent {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
InlineItemRange range;
bool endsWithHyphen { false };
size_t partialTrailingContentLength { 0 };
std::optional<InlineLayoutUnit> overflowLogicalWidth { };
UncheckedKeyHashMap<const Box*, InlineLayoutUnit> rubyBaseAlignmentOffsetList { };
InlineLayoutUnit rubyAnnotationOffset { 0.f };
};
static bool isContentfulOrHasDecoration(const InlineItem& inlineItem, const InlineFormattingContext& formattingContext)
{
if (inlineItem.isFloat() || inlineItem.isOpaque())
return false;
if (auto* inlineTextItem = dynamicDowncast<InlineTextItem>(inlineItem)) {
auto wouldProduceEmptyRun = inlineTextItem->isFullyTrimmable() || inlineTextItem->isEmpty() || inlineTextItem->isWordSeparator() || inlineTextItem->isZeroWidthSpaceSeparator() || inlineTextItem->isQuirkNonBreakingSpace();
return !wouldProduceEmptyRun;
}
if (inlineItem.isInlineBoxStart())
return !!formattingContext.geometryForBox(inlineItem.layoutBox()).marginBorderAndPaddingStart();
if (inlineItem.isInlineBoxEnd())
return !!formattingContext.geometryForBox(inlineItem.layoutBox()).marginBorderAndPaddingEnd();
return inlineItem.isAtomicInlineBox() || inlineItem.isLineBreak();
}
static inline StringBuilder toString(const Line::RunList& runs)
{
// FIXME: We could try to reuse the content builder in InlineItemsBuilder if this turns out to be a perf bottleneck.
StringBuilder lineContentBuilder;
for (auto& run : runs) {
if (!run.isText())
continue;
auto& textContent = run.textContent();
lineContentBuilder.append(StringView(downcast<InlineTextBox>(run.layoutBox()).content()).substring(textContent->start, textContent->length));
}
return lineContentBuilder;
}
static inline Vector<int32_t> computedVisualOrder(const Line::RunList& lineRuns, Vector<int32_t>& visualOrderList)
{
Vector<UBiDiLevel> runLevels;
runLevels.reserveInitialCapacity(lineRuns.size());
Vector<size_t> runIndexOffsetMap;
runIndexOffsetMap.reserveInitialCapacity(lineRuns.size());
auto hasOpaqueRun = false;
for (size_t i = 0, accumulatedOffset = 0; i < lineRuns.size(); ++i) {
if (lineRuns[i].bidiLevel() == InlineItem::opaqueBidiLevel) {
++accumulatedOffset;
hasOpaqueRun = true;
continue;
}
// bidiLevels are required to be less than the MAX + 1, otherwise
// ubidi_reorderVisual will silently fail.
if (lineRuns[i].bidiLevel() > UBIDI_MAX_EXPLICIT_LEVEL + 1) {
ASSERT(lineRuns[i].bidiLevel() == UBIDI_DEFAULT_LTR);
continue;
}
runLevels.append(lineRuns[i].bidiLevel());
runIndexOffsetMap.append(accumulatedOffset);
}
visualOrderList.resizeToFit(runLevels.size());
ubidi_reorderVisual(runLevels.data(), runLevels.size(), visualOrderList.data());
if (hasOpaqueRun) {
ASSERT(visualOrderList.size() == runIndexOffsetMap.size());
for (size_t i = 0; i < runIndexOffsetMap.size(); ++i)
visualOrderList[i] += runIndexOffsetMap[visualOrderList[i]];
}
return visualOrderList;
}
static bool hasTrailingSoftWrapOpportunity(size_t softWrapOpportunityIndex, size_t layoutRangeEnd, std::span<const InlineItem> inlineItemList)
{
if (!softWrapOpportunityIndex || softWrapOpportunityIndex == layoutRangeEnd) {
// This candidate inline content ends because the entire content ends and not because there's a soft wrap opportunity.
return false;
}
// See https://www.w3.org/TR/css-text-3/#line-break-details
auto& trailingInlineItem = inlineItemList[softWrapOpportunityIndex - 1];
if (trailingInlineItem.isFloat()) {
// While we stop at floats, they are not considered real soft wrap opportunities.
return false;
}
if (trailingInlineItem.isAtomicInlineBox() || trailingInlineItem.isLineBreak() || trailingInlineItem.isWordBreakOpportunity() || trailingInlineItem.isInlineBoxEnd()) {
// For Web-compatibility there is a soft wrap opportunity before and after each replaced element or other atomic inline.
return true;
}
if (auto* inlineTextItem = dynamicDowncast<InlineTextItem>(trailingInlineItem)) {
if (inlineTextItem->isWhitespace())
return true;
// Now in case of non-whitespace trailing content, we need to check if the actual soft wrap opportunity belongs to the next set.
// e.g. "this_is_the_trailing_run<span> <-but_this_space_here_is_the_soft_wrap_opportunity"
// When there's an inline box start(<span>)/end(</span>) between the trailing and the (next)leading run, while we break before the inline box start (<span>)
// the actual soft wrap position is after the inline box start (<span>) but in terms of line breaking continuity the inline box start (<span>) and the whitespace run belong together.
RELEASE_ASSERT(layoutRangeEnd <= inlineItemList.size());
for (auto index = softWrapOpportunityIndex; index < layoutRangeEnd; ++index) {
if (inlineItemList[index].isInlineBoxStart() || inlineItemList[index].isInlineBoxEnd() || inlineItemList[index].isOpaque())
continue;
// FIXME: Check if [non-whitespace][inline-box][no-whitespace] content has rules about it.
// For now let's say the soft wrap position belongs to the next set of runs when [non-whitespace][inline-box][whitespace], [non-whitespace][inline-box][box] etc.
auto inlineItemListTextItem = dynamicDowncast<InlineTextItem>(inlineItemList[index]);
return inlineItemListTextItem && !inlineItemListTextItem->isWhitespace();
}
return true;
}
if (trailingInlineItem.isInlineBoxStart()) {
// This is a special case when the inline box's first child is a float box.
return false;
}
if (trailingInlineItem.isOpaque()) {
for (auto index = softWrapOpportunityIndex; index--;) {
if (!inlineItemList[index].isOpaque())
return hasTrailingSoftWrapOpportunity(index + 1, layoutRangeEnd, inlineItemList);
}
ASSERT(inlineItemList[softWrapOpportunityIndex].isFloat());
return false;
}
ASSERT_NOT_REACHED();
return true;
};
static TextDirection inlineBaseDirectionForLineContent(const Line::RunList& runs, const RenderStyle& rootStyle, std::optional<PreviousLine> previousLine)
{
ASSERT(!runs.isEmpty());
auto shouldUseBlockDirection = rootStyle.unicodeBidi() != UnicodeBidi::Plaintext;
if (shouldUseBlockDirection)
return rootStyle.writingMode().bidiDirection();
// A previous line ending with a line break (<br> or preserved \n) introduces a new unicode paragraph with its own direction.
if (previousLine && !previousLine->endsWithLineBreak)
return previousLine->inlineBaseDirection;
return TextUtil::directionForTextContent(toString(runs));
}
struct LineCandidate {
WTF_MAKE_STRUCT_FAST_ALLOCATED;
void reset();
struct InlineContent {
const InlineContentBreaker::ContinuousContent& continuousContent() const { return m_continuousContent; }
const InlineItem* trailingLineBreak() const { return m_trailingLineBreak; }
const InlineItem* trailingWordBreakOpportunity() const { return m_trailingWordBreakOpportunity; }
void appendInlineItem(const InlineItem&, const RenderStyle&, InlineLayoutUnit logicalWidth, InlineLayoutUnit textSpacingAdjustment = 0);
void reset();
bool isEmpty() const { return m_continuousContent.runs().isEmpty() && !trailingWordBreakOpportunity() && !trailingLineBreak(); }
void setHasTrailingSoftWrapOpportunity(bool hasTrailingSoftWrapOpportunity) { m_hasTrailingSoftWrapOpportunity = hasTrailingSoftWrapOpportunity; }
bool hasTrailingSoftWrapOpportunity() const { return m_hasTrailingSoftWrapOpportunity; }
void setTrailingSoftHyphenWidth(InlineLayoutUnit hyphenWidth) { m_continuousContent.setTrailingSoftHyphenWidth(hyphenWidth); }
void setHangingContentWidth(InlineLayoutUnit logicalWidth) { m_continuousContent.setHangingContentWidth(logicalWidth); }
void setAccumulatedClonedDecorationEnd(InlineLayoutUnit accumulatedWidth) { m_accumulatedClonedDecorationEnd = accumulatedWidth; }
InlineLayoutUnit accumulatedClonedDecorationEnd() const { return m_accumulatedClonedDecorationEnd; }
void setMinimumRequiredWidth(InlineLayoutUnit minimumRequiredWidth) { m_continuousContent.setMinimumRequiredWidth(minimumRequiredWidth); }
private:
InlineContentBreaker::ContinuousContent m_continuousContent;
const InlineItem* m_trailingLineBreak { nullptr };
const InlineItem* m_trailingWordBreakOpportunity { nullptr };
InlineLayoutUnit m_accumulatedClonedDecorationEnd { 0.f };
bool m_hasTrailingSoftWrapOpportunity { false };
};
// Candidate content is a collection of inline content or a float box.
InlineContent inlineContent;
const InlineItem* floatItem { nullptr };
};
inline void LineCandidate::InlineContent::appendInlineItem(const InlineItem& inlineItem, const RenderStyle& style, InlineLayoutUnit logicalWidth, InlineLayoutUnit textSpacingAdjustment)
{
if (inlineItem.isAtomicInlineBox() || inlineItem.isInlineBoxStartOrEnd() || inlineItem.isOpaque())
return m_continuousContent.append(inlineItem, style, logicalWidth, textSpacingAdjustment);
if (auto* inlineTextItem = dynamicDowncast<InlineTextItem>(inlineItem))
return m_continuousContent.appendTextContent(*inlineTextItem, style, logicalWidth);
if (inlineItem.isLineBreak()) {
m_trailingLineBreak = &inlineItem;
return;
}
if (inlineItem.isWordBreakOpportunity()) {
m_trailingWordBreakOpportunity = &inlineItem;
return;
}
ASSERT_NOT_REACHED();
}
inline void LineCandidate::InlineContent::reset()
{
m_continuousContent.reset();
m_trailingLineBreak = { };
m_trailingWordBreakOpportunity = { };
m_accumulatedClonedDecorationEnd = { };
m_hasTrailingSoftWrapOpportunity = { };
}
inline void LineCandidate::reset()
{
floatItem = nullptr;
inlineContent.reset();
}
LineBuilder::LineBuilder(InlineFormattingContext& inlineFormattingContext, HorizontalConstraints rootHorizontalConstraints, const InlineItemList& inlineItemList, TextSpacingContext textSpacingContext)
: AbstractLineBuilder(inlineFormattingContext, inlineFormattingContext.root(), rootHorizontalConstraints, inlineItemList)
, m_floatingContext(inlineFormattingContext.floatingContext())
, m_textSpacingContext(WTFMove(textSpacingContext))
{
}
LineLayoutResult LineBuilder::layoutInlineContent(const LineInput& lineInput, const std::optional<PreviousLine>& previousLine)
{
auto previousLineEndsWithLineBreak = !previousLine || !previousLine->hasInlineContent ? std::nullopt : std::make_optional(previousLine->endsWithLineBreak);
initialize(lineInput.initialLogicalRect, lineInput.needsLayoutRange, previousLine, previousLineEndsWithLineBreak);
auto lineContent = placeInlineAndFloatContent(lineInput.needsLayoutRange);
auto result = m_line.close();
if (isInIntrinsicWidthMode()) {
return { lineContent->range
, WTFMove(result.runs)
, { WTFMove(m_placedFloats), WTFMove(m_suspendedFloats), { } }
, { { }, result.contentLogicalWidth, { }, lineContent->overflowLogicalWidth }
, { m_lineLogicalRect.topLeft(), { }, { }, { } }
};
}
auto isLastInlineContent = isLastLineWithInlineContent(lineContent, lineInput.needsLayoutRange.endIndex(), result.runs);
// Lines with nothing but content trailing out-of-flow boxes should also be considered last line for alignment
// e.g. <div style="text-align-last: center">last line<br><div style="display: inline; position: absolute"></div></div>
// Both the inline content ('last line') and the trailing out-of-flow box are supposed to be center aligned.
auto shouldTreatAsLastLine = isLastInlineContent || lineContent->range.endIndex() == lineInput.needsLayoutRange.endIndex();
auto inlineBaseDirection = !result.runs.isEmpty() ? inlineBaseDirectionForLineContent(result.runs, rootStyle(), m_previousLine) : TextDirection::LTR;
auto contentLogicalLeft = !result.runs.isEmpty() ? InlineFormattingUtils::horizontalAlignmentOffset(rootStyle(), result.contentLogicalRight, m_lineLogicalRect.width(), result.hangingTrailingContentWidth, result.runs, shouldTreatAsLastLine, inlineBaseDirection) : 0.f;
Vector<int32_t> visualOrderList;
if (result.contentNeedsBidiReordering)
computedVisualOrder(result.runs, visualOrderList);
return { lineContent->range
, WTFMove(result.runs)
, { WTFMove(m_placedFloats), WTFMove(m_suspendedFloats), m_lineIsConstrainedByFloat }
, { contentLogicalLeft, result.contentLogicalWidth, contentLogicalLeft + result.contentLogicalRight, lineContent->overflowLogicalWidth }
, { m_lineLogicalRect.topLeft(), m_lineLogicalRect.width(), m_lineInitialLogicalRect.left() + m_initialIntrusiveFloatsWidth, m_initialLetterClearGap }
, { !result.isHangingTrailingContentWhitespace, result.hangingTrailingContentWidth, result.hangablePunctuationStartWidth }
, { WTFMove(visualOrderList), inlineBaseDirection }
, { isFirstFormattedLine() ? LineLayoutResult::IsFirstLast::FirstFormattedLine::WithinIFC : LineLayoutResult::IsFirstLast::FirstFormattedLine::No, isLastInlineContent }
, { WTFMove(lineContent->rubyBaseAlignmentOffsetList), lineContent->rubyAnnotationOffset }
, lineContent->endsWithHyphen
, result.nonSpanningInlineLevelBoxCount
, { }
, { }
, lineContent->range.isEmpty() ? std::make_optional(m_lineLogicalRect.top() + m_candidateContentMaximumHeight) : std::nullopt
};
}
void LineBuilder::initialize(const InlineRect& initialLineLogicalRect, const InlineItemRange& needsLayoutRange, const std::optional<PreviousLine>& previousLine, std::optional<bool> previousLineEndsWithLineBreak)
{
ASSERT(!needsLayoutRange.isEmpty() || (previousLine && !previousLine->suspendedFloats.isEmpty()));
reset();
m_previousLine = previousLine;
m_placedFloats.clear();
m_suspendedFloats.clear();
m_lineSpanningInlineBoxes.clear();
m_overflowingLogicalWidth = { };
m_partialLeadingTextItem = { };
m_initialLetterClearGap = { };
m_candidateContentMaximumHeight = { };
inlineContentBreaker().setHyphenationDisabled(layoutState().isHyphenationDisabled());
auto createLineSpanningInlineBoxes = [&] {
auto isRootLayoutBox = [&](auto& elementBox) {
return &elementBox == &root();
};
if (needsLayoutRange.isEmpty())
return;
// An inline box may not necessarily start on the current line:
// <span>first line<br>second line<span>with some more embedding<br> forth line</span></span>
// We need to make sure that there's an [InlineBoxStart] for every inline box that's present on the current line.
// We only have to do it on the first run as any subsequent inline content is either at the same/higher nesting level.
auto& firstInlineItem = m_inlineItemList[needsLayoutRange.startIndex()];
// If the parent is the formatting root, we can stop here. This is root inline box content, there's no nesting inline box from the previous line(s)
// unless the inline box closing is forced over to the current line.
// e.g.
// <span>normally the inline box closing forms a continuous content</span>
// <span>unless it's forced to the next line<br></span>
auto& firstLayoutBox = firstInlineItem.layoutBox();
auto hasLeadingInlineBoxEnd = firstInlineItem.isInlineBoxEnd();
if (!hasLeadingInlineBoxEnd) {
if (isRootLayoutBox(firstLayoutBox.parent()))
return;
if (isRootLayoutBox(firstLayoutBox.parent().parent())) {
// In many cases the entire content is wrapped inside a single inline box.
// e.g. <div><span>wall of text with<br>single, line spanning inline box...</span></div>
ASSERT(firstLayoutBox.parent().isInlineBox());
m_lineSpanningInlineBoxes.append({ firstLayoutBox.parent(), InlineItem::Type::InlineBoxStart, InlineItem::opaqueBidiLevel });
return;
}
}
Vector<const Box*, 2> spanningLayoutBoxList;
if (hasLeadingInlineBoxEnd)
spanningLayoutBoxList.append(&firstLayoutBox);
auto* ancestor = &firstInlineItem.layoutBox().parent();
while (!isRootLayoutBox(*ancestor)) {
spanningLayoutBoxList.append(ancestor);
ancestor = &ancestor->parent();
}
// Let's treat these spanning inline items as opaque bidi content. They should not change the bidi levels on adjacent content.
for (auto* spanningInlineBox : makeReversedRange(spanningLayoutBoxList))
m_lineSpanningInlineBoxes.append({ *spanningInlineBox, InlineItem::Type::InlineBoxStart, InlineItem::opaqueBidiLevel });
};
createLineSpanningInlineBoxes();
m_line.initialize(m_lineSpanningInlineBoxes, isFirstFormattedLine());
m_lineInitialLogicalRect = initialLineLogicalRect;
m_lineMarginStart = formattingContext().formattingUtils().computedTextIndent(isInIntrinsicWidthMode() ? InlineFormattingUtils::IsIntrinsicWidthMode::Yes : InlineFormattingUtils::IsIntrinsicWidthMode::No, previousLineEndsWithLineBreak, initialLineLogicalRect.width());
auto constraints = floatAvoidingRect(initialLineLogicalRect, { });
m_lineLogicalRect = constraints.logicalRect;
m_lineIsConstrainedByFloat = constraints.constrainedSideSet;
// This is by how much intrusive floats (coming from parent/sibling FCs) initially offset the line.
m_initialIntrusiveFloatsWidth = m_lineLogicalRect.left() - initialLineLogicalRect.left();
m_lineLogicalRect.moveHorizontally(m_lineMarginStart);
// While negative margins normally don't expand the available space, preferred width computation gets confused by negative text-indent
// (shrink the space needed for the content) which we have to balance it here.
m_lineLogicalRect.expandHorizontally(-m_lineMarginStart);
auto initializeLeadingContentFromOverflow = [&] {
if (!previousLine || !needsLayoutRange.start.offset)
return;
auto overflowingInlineItemPosition = needsLayoutRange.start;
if (auto* overflowingInlineTextItem = dynamicDowncast<InlineTextItem>(m_inlineItemList[overflowingInlineItemPosition.index])) {
ASSERT(overflowingInlineItemPosition.offset < overflowingInlineTextItem->length());
auto overflowingLength = overflowingInlineTextItem->length() - overflowingInlineItemPosition.offset;
if (overflowingLength) {
// Turn previous line's overflow content into the next line's leading content.
// "sp[<-line break->]lit_content" -> break position: 2 -> leading partial content length: 11.
m_partialLeadingTextItem = overflowingInlineTextItem->right(overflowingLength, previousLine->trailingOverflowingContentWidth);
return;
}
}
m_overflowingLogicalWidth = previousLine->trailingOverflowingContentWidth;
};
initializeLeadingContentFromOverflow();
}
UniqueRef<LineContent> LineBuilder::placeInlineAndFloatContent(const InlineItemRange& needsLayoutRange)
{
size_t resumedFloatCount = 0;
auto layoutPreviouslySuspendedFloats = [&] {
if (!m_previousLine)
return true;
// FIXME: Note that placedInlineItemCount is not incremented here as these floats are already accounted for (at previous line)
// as LineContent only takes one range -meaning that inline layout may continue while float layout is being suspended
// and the placed InlineItem range ends at the last inline item placed on the current line.
for (size_t index = 0; index < m_previousLine->suspendedFloats.size(); ++index) {
auto& suspendedFloat = *m_previousLine->suspendedFloats[index];
auto isPlaced = tryPlacingFloatBox(suspendedFloat, !index ? MayOverConstrainLine::OnlyWhenFirstFloatOnLine : MayOverConstrainLine::No);
if (!isPlaced) {
// Can't place more floats here. We'll try to place these floats on subsequent lines.
for (; index < m_previousLine->suspendedFloats.size(); ++index)
m_suspendedFloats.append(m_previousLine->suspendedFloats[index]);
return false;
}
++resumedFloatCount;
}
m_previousLine->suspendedFloats.clear();
return true;
};
auto lineContent = makeUniqueRef<LineContent>();
if (!layoutPreviouslySuspendedFloats()) {
// Couldn't even manage to place all suspended floats from previous line(s). -which also means we can't fit any inline content at this vertical position.
lineContent->range = { needsLayoutRange.start, needsLayoutRange.start };
m_candidateContentMaximumHeight = m_lineLogicalRect.height();
return lineContent;
}
size_t placedInlineItemCount = 0;
auto layoutInlineAndFloatContent = [&] {
auto lineCandidate = makeUniqueRef<LineCandidate>();
auto currentItemIndex = needsLayoutRange.startIndex();
while (currentItemIndex < needsLayoutRange.endIndex()) {
// 1. Collect the set of runs that we can commit to the line as one entity e.g. <span>text_and_span_start_span_end</span>.
// 2. Apply floats and shrink the available horizontal space e.g. <span>intru_<div style="float: left"></div>sive_float</span>.
// 3. Check if the content fits the line and commit the content accordingly (full, partial or not commit at all).
// 4. Return if we are at the end of the line either by not being able to fit more content or because of an explicit line break.
candidateContentForLine(lineCandidate, currentItemIndex, needsLayoutRange, m_line.contentLogicalRight());
// Now check if we can put this content on the current line.
if (auto* floatItem = lineCandidate->floatItem) {
ASSERT(lineCandidate->inlineContent.isEmpty());
if (!tryPlacingFloatBox(floatItem->layoutBox(), m_line.runs().isEmpty() ? MayOverConstrainLine::Yes : MayOverConstrainLine::No)) {
// This float overconstrains the line (it simply means shrinking the line box by the float would cause inline content overflow.)
// At this point we suspend float layout but continue with inline layout.
// Such suspended float will be placed at the next available vertical positon when this line "closes".
m_suspendedFloats.append(&floatItem->layoutBox());
}
++placedInlineItemCount;
} else {
auto result = handleInlineContent(needsLayoutRange, lineCandidate);
auto isEndOfLine = result.isEndOfLine == InlineContentBreaker::IsEndOfLine::Yes;
if (!result.committedCount.isRevert) {
placedInlineItemCount += result.committedCount.value;
auto& inlineContent = lineCandidate->inlineContent;
auto inlineContentIsFullyPlaced = inlineContent.continuousContent().runs().size() == result.committedCount.value && !result.partialTrailingContentLength;
if (inlineContentIsFullyPlaced) {
if (auto* wordBreakOpportunity = inlineContent.trailingWordBreakOpportunity()) {
// <wbr> needs to be on the line as an empty run so that we can construct an inline box and compute basic geometry.
++placedInlineItemCount;
m_line.append(*wordBreakOpportunity, wordBreakOpportunity->style(), { });
}
if (inlineContent.trailingLineBreak()) {
// Fully placed (or empty) content followed by a line break means "end of line".
// FIXME: This will put the line break box at the end of the line while in case of some inline boxes, the line break
// could very well be at an earlier position. This has no visual implications at this point though (only geometry correctness on the line break box).
// e.g. <span style="border-right: 10px solid green">text<br></span> where the <br>'s horizontal position is before the right border and not after.
auto& trailingLineBreak = *inlineContent.trailingLineBreak();
m_line.append(trailingLineBreak, trailingLineBreak.style(), { });
++placedInlineItemCount;
isEndOfLine = true;
}
}
} else
placedInlineItemCount = result.committedCount.value;
if (isEndOfLine) {
lineContent->partialTrailingContentLength = result.partialTrailingContentLength;
lineContent->overflowLogicalWidth = result.overflowLogicalWidth;
return;
}
}
currentItemIndex = needsLayoutRange.startIndex() + placedInlineItemCount;
}
// Looks like we've run out of content.
ASSERT(placedInlineItemCount || resumedFloatCount);
};
layoutInlineAndFloatContent();
auto computePlacedInlineItemRange = [&] {
lineContent->range = { needsLayoutRange.start, needsLayoutRange.start };
if (!placedInlineItemCount)
return;
// Layout range already includes "suspended" floats from previous line(s). See layoutPreviouslySuspendedFloats above for details.
ASSERT(m_placedFloats.size() >= resumedFloatCount);
auto onlyFloatContentPlaced = placedInlineItemCount == m_placedFloats.size() - resumedFloatCount;
if (onlyFloatContentPlaced || !lineContent->partialTrailingContentLength) {
lineContent->range.end = { needsLayoutRange.startIndex() + placedInlineItemCount, { } };
return;
}
auto trailingInlineItemIndex = needsLayoutRange.startIndex() + placedInlineItemCount - 1;
auto overflowingInlineTextItemLength = downcast<InlineTextItem>(m_inlineItemList[trailingInlineItemIndex]).length();
ASSERT(lineContent->partialTrailingContentLength && lineContent->partialTrailingContentLength < overflowingInlineTextItemLength);
lineContent->range.end = { trailingInlineItemIndex, overflowingInlineTextItemLength - lineContent->partialTrailingContentLength };
};
computePlacedInlineItemRange();
ASSERT(lineContent->range.endIndex() <= needsLayoutRange.endIndex());
auto handleLineEnding = [&] {
auto isLastInlineContent = isLastLineWithInlineContent(lineContent, needsLayoutRange.endIndex(), m_line.runs());
auto horizontalAvailableSpace = m_lineLogicalRect.width();
auto& rootStyle = this->rootStyle();
auto handleTrailingContent = [&] {
auto& quirks = formattingContext().quirks();
auto lineHasOverflow = [&] {
return horizontalAvailableSpace < m_line.contentLogicalWidth() && m_line.hasContentOrListMarker();
};
auto isLineBreakAfterWhitespace = [&] {
return rootStyle.lineBreak() == LineBreak::AfterWhiteSpace && intrinsicWidthMode() != IntrinsicWidthMode::Minimum && (!isLastInlineContent || lineHasOverflow());
};
m_line.handleTrailingTrimmableContent(isLineBreakAfterWhitespace() ? Line::TrailingContentAction::Preserve : Line::TrailingContentAction::Remove);
if (quirks.trailingNonBreakingSpaceNeedsAdjustment(isInIntrinsicWidthMode(), lineHasOverflow()))
m_line.handleOverflowingNonBreakingSpace(isLineBreakAfterWhitespace() ? Line::TrailingContentAction::Preserve : Line::TrailingContentAction::Remove, m_line.contentLogicalWidth() - horizontalAvailableSpace);
m_line.handleTrailingHangingContent(intrinsicWidthMode(), horizontalAvailableSpace, isLastInlineContent);
auto mayNeedOutOfFlowOverflowTrimming = !isInIntrinsicWidthMode() && lineHasOverflow() && !lineContent->partialTrailingContentLength && TextUtil::isWrappingAllowed(rootStyle);
if (mayNeedOutOfFlowOverflowTrimming) {
// Overflowing out-of-flow boxes should wrap the to subsequent lines just like any other in-flow content.
// However since we take a shortcut by not considering out-of-flow content as inflow but instead treating it as an opaque box with zero width and no
// soft wrap opportunity, any overflowing out-of-flow content would pile up as trailing content.
// Alternatively we could initiate a two pass layout first with out-of-flow content treated as true inflow and a second without them.
ASSERT(!lineContent->range.end.offset);
if (auto* lastRemovedTrailingBox = m_line.removeOverflowingOutOfFlowContent()) {
auto lineEndIndex = [&] {
for (auto index = lineContent->range.start.index; index < lineContent->range.end.index; ++index) {
if (&m_inlineItemList[index].layoutBox() == lastRemovedTrailingBox)
return index;
}
ASSERT_NOT_REACHED();
return lineContent->range.end.index;
};
lineContent->range.end.index = lineEndIndex();
}
}
};
handleTrailingContent();
// On each line, reset the embedding level of any sequence of whitespace characters at the end of the line
// to the paragraph embedding level
m_line.resetBidiLevelForTrailingWhitespace(rootStyle.writingMode().isBidiLTR() ? UBIDI_LTR : UBIDI_RTL);
if (m_line.hasContent()) {
auto applyRunBasedAlignmentIfApplicable = [&] {
if (isInIntrinsicWidthMode())
return;
auto spaceToDistribute = horizontalAvailableSpace - m_line.contentLogicalWidth() + (m_line.isHangingTrailingContentWhitespace() ? m_line.hangingTrailingContentWidth() : 0.f);
if (root().isRubyAnnotationBox() && rootStyle.textAlign() == RenderStyle::initialTextAlign()) {
lineContent->rubyAnnotationOffset = RubyFormattingContext::applyRubyAlignOnAnnotationBox(m_line, spaceToDistribute, formattingContext());
m_line.inflateContentLogicalWidth(spaceToDistribute);
m_line.adjustContentRightWithRubyAlign(2 * lineContent->rubyAnnotationOffset);
return;
}
// Text is justified according to the method specified by the text-justify property,
// in order to exactly fill the line box. Unless otherwise specified by text-align-last,
// the last line before a forced break or the end of the block is start-aligned.
auto hasTextAlignJustify = (isLastInlineContent || m_line.runs().last().isLineBreak()) ? rootStyle.textAlignLast() == TextAlignLast::Justify : rootStyle.textAlign() == TextAlignMode::Justify;
if (hasTextAlignJustify) {
auto additionalSpaceForAlignedContent = InlineContentAligner::applyTextAlignJustify(m_line.runs(), spaceToDistribute, m_line.hangingTrailingWhitespaceLength());
m_line.inflateContentLogicalWidth(additionalSpaceForAlignedContent);
}
if (m_line.hasRubyContent())
lineContent->rubyBaseAlignmentOffsetList = RubyFormattingContext::applyRubyAlign(m_line, formattingContext());
};
applyRunBasedAlignmentIfApplicable();
auto& lastTextContent = m_line.runs().last().textContent();
lineContent->endsWithHyphen = lastTextContent && lastTextContent->needsHyphen;
}
};
handleLineEnding();
return lineContent;
}
InlineLayoutUnit LineBuilder::leadingPunctuationWidthForLineCandiate(size_t firstInlineTextItemIndex, size_t candidateContentStartIndex) const
{
auto isFirstLineFirstContent = isFirstFormattedLine() && !m_line.hasContent();
if (!isFirstLineFirstContent)
return { };
auto& inlineTextItem = downcast<InlineTextItem>(m_inlineItemList[firstInlineTextItemIndex]);
auto& style = isFirstFormattedLine() ? inlineTextItem.firstLineStyle() : inlineTextItem.style();
if (!TextUtil::hasHangablePunctuationStart(inlineTextItem, style))
return { };
if (firstInlineTextItemIndex) {
// The text content is not the first in the candidate list. However it may be the first contentful one.
for (size_t index = firstInlineTextItemIndex; index-- > candidateContentStartIndex;) {
if (isContentfulOrHasDecoration(m_inlineItemList[index], formattingContext()))
return { };
}
}
// This candidate leading content may have hanging punctuation start.
return TextUtil::hangablePunctuationStartWidth(inlineTextItem, style);
}
InlineLayoutUnit LineBuilder::trailingPunctuationOrStopOrCommaWidthForLineCandiate(size_t lastInlineTextItemIndex, size_t layoutRangeEnd) const
{
auto& inlineTextItem = downcast<InlineTextItem>(m_inlineItemList[lastInlineTextItemIndex]);
auto& style = isFirstFormattedLine() ? inlineTextItem.firstLineStyle() : inlineTextItem.style();
if (TextUtil::hasHangableStopOrCommaEnd(inlineTextItem, style)) {
// Stop or comma does apply to all lines not just the last formatted one.
return TextUtil::hangableStopOrCommaEndWidth(inlineTextItem, style);
}
if (TextUtil::hasHangablePunctuationEnd(inlineTextItem, style)) {
// FIXME: If this turns out to be problematic (finding out if this is the last formatted line that is), we
// may have to fallback to a post-process setup, where after finishing laying out the content, we go back and re-layout
// the last (2?) line(s) when there's trailing hanging punctuation.
// For now let's probe the content all the way to layoutRangeEnd.
for (auto index = lastInlineTextItemIndex + 1; index < layoutRangeEnd; ++index) {
if (isContentfulOrHasDecoration(m_inlineItemList[index], formattingContext()))
return { };
}
return TextUtil::hangablePunctuationEndWidth(inlineTextItem, style);
}
return { };
}
void LineBuilder::candidateContentForLine(LineCandidate& lineCandidate, size_t currentInlineItemIndex, const InlineItemRange& layoutRange, InlineLayoutUnit currentLogicalRight)
{
ASSERT(currentInlineItemIndex < layoutRange.endIndex());
lineCandidate.reset();
// 1. Simply add any overflow content from the previous line to the candidate content. It's always a text content.
// 2. Find the next soft wrap position or explicit line break.
// 3. Collect floats between the inline content.
auto softWrapOpportunityIndex = formattingContext().formattingUtils().nextWrapOpportunity(currentInlineItemIndex, layoutRange, m_inlineItemList);
// softWrapOpportunityIndex == layoutRange.end means we don't have any wrap opportunity in this content.
ASSERT(softWrapOpportunityIndex <= layoutRange.endIndex());
auto isLeadingPartiaContent = currentInlineItemIndex == layoutRange.startIndex() && m_partialLeadingTextItem;
if (isLeadingPartiaContent) {
ASSERT(!m_overflowingLogicalWidth);
// Handle leading partial content first (overflowing text from the previous line).
auto itemWidth = formattingContext().formattingUtils().inlineItemWidth(*m_partialLeadingTextItem, currentLogicalRight, isFirstFormattedLine());
lineCandidate.inlineContent.appendInlineItem(*m_partialLeadingTextItem, m_partialLeadingTextItem->style(), itemWidth);
currentLogicalRight += itemWidth;
++currentInlineItemIndex;
}
auto firstInlineTextItemIndex = std::optional<size_t> { };
auto lastInlineTextItemIndex = std::optional<size_t> { };
auto trailingSoftHyphenInlineTextItemIndex = std::optional<size_t> { };
UncheckedKeyHashSet<const Box*> inlineBoxListWithClonedDecorationEnd;
auto accumulatedDecorationEndWidth = InlineLayoutUnit { 0.f };
InlineLayoutUnit textSpacingAdjustment = 0.f;
for (auto index = currentInlineItemIndex; index < softWrapOpportunityIndex; ++index) {
auto& inlineItem = m_inlineItemList[index];
auto& style = isFirstFormattedLine() ? inlineItem.firstLineStyle() : inlineItem.style();
if (inlineItem.isInlineBoxStart()) {
if (auto inlineBoxBoundaryTextSpacing = m_textSpacingContext.inlineBoxBoundaryTextSpacings.find(index); inlineBoxBoundaryTextSpacing != m_textSpacingContext.inlineBoxBoundaryTextSpacings.end())
textSpacingAdjustment = inlineBoxBoundaryTextSpacing->value;
}
auto needsLayout = inlineItem.isFloat() || inlineItem.isAtomicInlineBox() || (inlineItem.isOpaque() && inlineItem.layoutBox().isRubyAnnotationBox());
if (needsLayout) {
// FIXME: Intrinsic width mode should call into the intrinsic width codepath. Currently we only get here when box has fixed width (meaning no need to run intrinsic width on the box).
if (!isInIntrinsicWidthMode())
formattingContext().integrationUtils().layoutWithFormattingContextForBox(downcast<ElementBox>(inlineItem.layoutBox()));
}
if (inlineItem.isFloat()) {
lineCandidate.floatItem = &inlineItem;
// This is a soft wrap opportunity, must be the only item in the list.
ASSERT(currentInlineItemIndex + 1 == softWrapOpportunityIndex);
continue;
}
if (auto* inlineTextItem = dynamicDowncast<InlineTextItem>(inlineItem)) {
auto logicalWidth = m_overflowingLogicalWidth ? *std::exchange(m_overflowingLogicalWidth, std::nullopt) : formattingContext().formattingUtils().inlineItemWidth(*inlineTextItem, currentLogicalRight, isFirstFormattedLine());
if (!currentLogicalRight) {
if (auto trimmableSpacing = m_textSpacingContext.trimmableTextSpacings.find(index); trimmableSpacing != m_textSpacingContext.trimmableTextSpacings.end())
logicalWidth -= trimmableSpacing->value;
}
lineCandidate.inlineContent.appendInlineItem(*inlineTextItem, style, logicalWidth);
// Word spacing does not make the run longer, but it produces an offset instead. See Line::appendTextContent as well.
currentLogicalRight += logicalWidth + (inlineTextItem->isWordSeparator() ? style.fontCascade().wordSpacing() : 0.f);
firstInlineTextItemIndex = firstInlineTextItemIndex.value_or(index);
lastInlineTextItemIndex = index;
trailingSoftHyphenInlineTextItemIndex = inlineTextItem->hasTrailingSoftHyphen() ? std::make_optional(index) : std::nullopt;
continue;
}
if (inlineItem.isInlineBoxStartOrEnd()) {
auto& layoutBox = inlineItem.layoutBox();
auto logicalWidth = formattingContext().formattingUtils().inlineItemWidth(inlineItem, currentLogicalRight, isFirstFormattedLine());
if (layoutBox.isRubyBase()) {
if (inlineItem.isInlineBoxStart()) {
// There should only be one ruby base per/annotation candidate content as we allow line breaking between bases unless some special characters between ruby bases prevent us from doing so (see RubyFormattingContext::canBreakAtCharacter)
if (auto marginBoxWidth = RubyFormattingContext::annotationBoxLogicalWidth(layoutBox, formattingContext()); marginBoxWidth > 0) {
auto& inlineContent = lineCandidate.inlineContent;
inlineContent.setMinimumRequiredWidth(inlineContent.continuousContent().minimumRequiredWidth().value_or(InlineLayoutUnit { }) + marginBoxWidth);
}
} else
logicalWidth += RubyFormattingContext::baseEndAdditionalLogicalWidth(layoutBox, m_line.runs(), lineCandidate.inlineContent.continuousContent().runs(), formattingContext());
}
if (style.boxDecorationBreak() == BoxDecorationBreak::Clone) {
if (inlineItem.isInlineBoxStart())
inlineBoxListWithClonedDecorationEnd.add(&layoutBox);
else if (inlineBoxListWithClonedDecorationEnd.contains(&layoutBox))
accumulatedDecorationEndWidth += logicalWidth;
}
lineCandidate.inlineContent.appendInlineItem(inlineItem, style, logicalWidth, textSpacingAdjustment);
currentLogicalRight += logicalWidth;
continue;
}
if (inlineItem.isAtomicInlineBox()) {
auto logicalWidth = formattingContext().formattingUtils().inlineItemWidth(inlineItem, currentLogicalRight, isFirstFormattedLine());
// FIXME: While the line breaking related properties for atomic level boxes do not depend on the line index (first line style) it'd be great to figure out the correct style to pass in.
lineCandidate.inlineContent.appendInlineItem(inlineItem, inlineItem.layoutBox().parent().style(), logicalWidth);
currentLogicalRight += logicalWidth;
continue;
}
if (inlineItem.isLineBreak() || inlineItem.isWordBreakOpportunity()) {
#if ASSERT_ENABLED
// Since both <br> and <wbr> are explicit word break opportunities they have to be trailing items in this candidate run list unless they are embedded in inline boxes.
// e.g. <span><wbr></span>
for (auto i = index + 1; i < softWrapOpportunityIndex; ++i)
ASSERT(m_inlineItemList[i].isInlineBoxEnd() || m_inlineItemList[i].isOpaque());
#endif
lineCandidate.inlineContent.appendInlineItem(inlineItem, style, { });
continue;
}
if (inlineItem.isOpaque()) {
lineCandidate.inlineContent.appendInlineItem(inlineItem, style, { });
continue;
}
ASSERT_NOT_REACHED();
}
lineCandidate.inlineContent.setAccumulatedClonedDecorationEnd(accumulatedDecorationEndWidth);
auto setLeadingAndTrailingHangingPunctuation = [&] {
auto hangingContentWidth = lineCandidate.inlineContent.continuousContent().hangingContentWidth();
// Do not even try to check for trailing punctuation when the candidate content already has whitespace type of hanging content.
if (!hangingContentWidth && lastInlineTextItemIndex)
hangingContentWidth += trailingPunctuationOrStopOrCommaWidthForLineCandiate(*lastInlineTextItemIndex, layoutRange.endIndex());
if (firstInlineTextItemIndex)
hangingContentWidth += leadingPunctuationWidthForLineCandiate(*firstInlineTextItemIndex, currentInlineItemIndex);
if (hangingContentWidth)
lineCandidate.inlineContent.setHangingContentWidth(hangingContentWidth);
};
setLeadingAndTrailingHangingPunctuation();
auto setTrailingSoftHyphenWidth = [&] {
if (!trailingSoftHyphenInlineTextItemIndex)
return;
for (auto index = *trailingSoftHyphenInlineTextItemIndex; index < softWrapOpportunityIndex; ++index) {
if (!is<InlineTextItem>(m_inlineItemList[index]))
return;
}
auto& trailingInlineTextItem = m_inlineItemList[*trailingSoftHyphenInlineTextItemIndex];
auto& style = isFirstFormattedLine() ? trailingInlineTextItem.firstLineStyle() : trailingInlineTextItem.style();
lineCandidate.inlineContent.setTrailingSoftHyphenWidth(TextUtil::hyphenWidth(style));
};
setTrailingSoftHyphenWidth();
lineCandidate.inlineContent.setHasTrailingSoftWrapOpportunity(hasTrailingSoftWrapOpportunity(softWrapOpportunityIndex, layoutRange.endIndex(), m_inlineItemList));
}
static inline InlineLayoutUnit availableWidth(const LineCandidate::InlineContent& candidateContent, const Line& line, InlineLayoutUnit lineWidth, std::optional<IntrinsicWidthMode> intrinsicWidthMode)
{
#if USE_FLOAT_AS_INLINE_LAYOUT_UNIT
// 1. Preferred width computation sums up floats while line breaker subtracts them.
// 2. Available space is inherently a LayoutUnit based value (coming from block/flex etc layout) and it is the result of a floored float.
// These can all lead to epsilon-scale differences.
if (!intrinsicWidthMode || *intrinsicWidthMode == IntrinsicWidthMode::Maximum)
lineWidth += LayoutUnit::epsilon();
#endif
auto availableWidth = lineWidth - line.contentLogicalRight();
auto& inlineBoxListWithClonedDecorationEnd = line.inlineBoxListWithClonedDecorationEnd();
// We may try to commit a inline box end here which already takes up place implicitly through the cloned decoration.
// Let's not account for its logical width twice.
if (inlineBoxListWithClonedDecorationEnd.isEmpty())
return std::isnan(availableWidth) ? maxInlineLayoutUnit() : (availableWidth + candidateContent.accumulatedClonedDecorationEnd());
for (auto& run : candidateContent.continuousContent().runs()) {
if (!run.inlineItem.isInlineBoxEnd())
continue;
auto decorationEntry = inlineBoxListWithClonedDecorationEnd.find(&run.inlineItem.layoutBox());
if (decorationEntry == inlineBoxListWithClonedDecorationEnd.end())
continue;
availableWidth += decorationEntry->value;
}
return std::isnan(availableWidth) ? maxInlineLayoutUnit() : (availableWidth + candidateContent.accumulatedClonedDecorationEnd());
}
LineBuilder::RectAndFloatConstraints LineBuilder::floatAvoidingRect(const InlineRect& logicalRect, InlineLayoutUnit lineMarginStart) const
{
auto constraints = [&]() -> LineBuilder::RectAndFloatConstraints {
if (isInIntrinsicWidthMode() || floatingContext().isEmpty())
return { logicalRect, { } };
auto constraints = formattingContext().formattingUtils().floatConstraintsForLine(logicalRect.top(), logicalRect.height(), floatingContext());
if (!constraints.start && !constraints.end)
return { logicalRect, { } };
auto constrainedSideSet = OptionSet<UsedFloat> { };
// text-indent acts as (start)margin on the line. When looking for intrusive floats we need to check against the line's _margin_ box.
auto marginBoxRect = InlineRect { logicalRect.top(), logicalRect.left() - lineMarginStart, logicalRect.width() + lineMarginStart, logicalRect.height() };
if (constraints.start && constraints.start->x > marginBoxRect.left()) {
marginBoxRect.shiftLeftTo(constraints.start->x);
constrainedSideSet.add(UsedFloat::Left);
}
if (constraints.end && constraints.end->x < marginBoxRect.right()) {
marginBoxRect.setRight(std::max<InlineLayoutUnit>(marginBoxRect.left(), constraints.end->x));
constrainedSideSet.add(UsedFloat::Right);
}
auto lineLogicalRect = InlineRect { marginBoxRect.top(), marginBoxRect.left() + lineMarginStart, marginBoxRect.width() - lineMarginStart, marginBoxRect.height() };
return { lineLogicalRect, constrainedSideSet };
}();
if (auto adjustedRect = formattingContext().quirks().adjustedRectForLineGridLineAlign(constraints.logicalRect))
constraints.logicalRect = *adjustedRect;
return constraints;
}
LineBuilder::RectAndFloatConstraints LineBuilder::adjustedLineRectWithCandidateInlineContent(const LineCandidate& lineCandidate) const
{
// Check if the candidate content would stretch the line and whether additional floats are getting in the way.
auto& inlineContent = lineCandidate.inlineContent;
if (isInIntrinsicWidthMode())
return { m_lineLogicalRect };
// FIXME: Use InlineFormattingUtils::inlineLevelBoxAffectsLineBox instead.
auto candidateContentHeight = InlineLayoutUnit { };
auto lineBoxContain = rootStyle().lineBoxContain();
for (auto& run : inlineContent.continuousContent().runs()) {
auto& inlineItem = run.inlineItem;
if (inlineItem.isText()) {
auto& styleToUse = isFirstFormattedLine() ? inlineItem.firstLineStyle() : inlineItem.style();
candidateContentHeight = std::max<InlineLayoutUnit>(candidateContentHeight, styleToUse.computedLineHeight());
} else if (inlineItem.isAtomicInlineBox() && lineBoxContain.contains(LineBoxContain::Replaced))
candidateContentHeight = std::max(candidateContentHeight, InlineLayoutUnit { formattingContext().geometryForBox(inlineItem.layoutBox()).marginBoxHeight() });
}
if (candidateContentHeight <= m_lineLogicalRect.height())
return { m_lineLogicalRect };
return floatAvoidingRect({ m_lineLogicalRect.topLeft(), m_lineLogicalRect.width(), candidateContentHeight }, m_lineMarginStart);
}
std::optional<LineBuilder::InitialLetterOffsets> LineBuilder::adjustLineRectForInitialLetterIfApplicable(const Box& floatBox)
{
auto drop = floatBox.style().initialLetterDrop();
auto isInitialLetter = floatBox.isFloatingPositioned() && floatBox.style().pseudoElementType() == PseudoId::FirstLetter && drop;
if (!isInitialLetter)
return { };
// Here we try to set the vertical start position for the float in flush with the adjoining text content's cap height.
// It's a super premature as at this point we don't normally deal with vertical geometry -other than the incoming vertical constraint.
auto initialLetterCapHeightOffset = formattingContext().quirks().initialLetterAlignmentOffset(floatBox, rootStyle());
// While initial-letter based floats do not set their clear property, intrusive floats from sibling IFCs are supposed to be cleared.
auto intrusiveBottom = blockLayoutState().intrusiveInitialLetterLogicalBottom();
if (!initialLetterCapHeightOffset && !intrusiveBottom)
return { };
auto clearGapBeforeFirstLine = InlineLayoutUnit { };
if (intrusiveBottom) {
// When intrusive initial letter is cleared, we introduce a clear gap. This is (with proper floats) normally computed before starting
// line layout but intrusive initial letters are cleared only when another initial letter shows up. Regular inline content
// does not need clearance.
auto intrusiveInitialLetterWidth = std::max(0.f, m_lineLogicalRect.left() - m_lineInitialLogicalRect.left());
m_lineLogicalRect.setLeft(m_lineInitialLogicalRect.left());
m_lineLogicalRect.expandHorizontally(intrusiveInitialLetterWidth);
clearGapBeforeFirstLine = *intrusiveBottom;
}
auto sunkenBelowFirstLineOffset = LayoutUnit { };
auto letterHeight = floatBox.style().initialLetterHeight();
if (drop < letterHeight) {
// Sunken/raised initial letter pushes contents of the first line down.
auto numberOfSunkenLines = letterHeight - drop;
auto verticalGapForInlineContent = numberOfSunkenLines * rootStyle().computedLineHeight();
clearGapBeforeFirstLine += verticalGapForInlineContent;
// And we pull the initial letter up.
initialLetterCapHeightOffset = -verticalGapForInlineContent + initialLetterCapHeightOffset.value_or(0_lu);
} else if (drop > letterHeight) {
// Initial letter is sunken below the first line.
auto numberOfLinesAboveInitialLetter = drop - letterHeight;
sunkenBelowFirstLineOffset = numberOfLinesAboveInitialLetter * rootStyle().computedLineHeight();
}
m_lineLogicalRect.moveVertically(clearGapBeforeFirstLine);
// There should never be multiple initial letters.
ASSERT(!m_initialLetterClearGap);
m_initialLetterClearGap = clearGapBeforeFirstLine;
return InitialLetterOffsets { initialLetterCapHeightOffset.value_or(0_lu), sunkenBelowFirstLineOffset };
}
bool LineBuilder::shouldTryToPlaceFloatBox(const Box& floatBox, LayoutUnit floatBoxMarginBoxWidth, MayOverConstrainLine mayOverConstrainLine) const
{
switch (mayOverConstrainLine) {
case MayOverConstrainLine::Yes:
return true;
case MayOverConstrainLine::OnlyWhenFirstFloatOnLine:
// This is a resumed float from a previous line. Now we need to find a place for it.
// (which also means that the current line can't have any floats that we couldn't place yet)
ASSERT(m_suspendedFloats.isEmpty());
if (!isLineConstrainedByFloat())
return true;
FALLTHROUGH;
case MayOverConstrainLine::No: {
auto lineIsConsideredEmpty = !m_line.hasContent() && !isLineConstrainedByFloat();
if (lineIsConsideredEmpty)
return true;
// Non-clear type of floats stack up (horizontally). It's easy to check if there's space for this float at all,
// while floats with clear needs post-processing to see if they overlap existing line content (and here we just check if they may fit at all).
auto lineLogicalWidth = floatBox.hasFloatClear() ? m_lineInitialLogicalRect.width() : m_lineLogicalRect.width();
auto availableWidthForFloat = lineLogicalWidth - m_line.contentLogicalRight() + m_line.trimmableTrailingWidth();
return availableWidthForFloat >= InlineLayoutUnit { floatBoxMarginBoxWidth };
}
default:
ASSERT_NOT_REACHED();
return true;
}
}
static bool haveEnoughSpaceForFloatWithClear(const LayoutRect& floatBoxMarginBox, bool isLeftPositioned, const InlineRect& lineLogicalRect, InlineLayoutUnit contentLogicalWidth)
{
auto adjustedLineLogicalLeft = lineLogicalRect.left();
auto adjustedLineLogicalRight = lineLogicalRect.right();
if (isLeftPositioned)
adjustedLineLogicalLeft = std::max<InlineLayoutUnit>(floatBoxMarginBox.maxX(), adjustedLineLogicalLeft);
else
adjustedLineLogicalRight = std::min<InlineLayoutUnit>(floatBoxMarginBox.x(), adjustedLineLogicalRight);
auto availableSpaceForContentWithPlacedFloat = adjustedLineLogicalRight - adjustedLineLogicalLeft;
return contentLogicalWidth <= availableSpaceForContentWithPlacedFloat;
}
bool LineBuilder::tryPlacingFloatBox(const Box& floatBox, MayOverConstrainLine mayOverConstrainLine)
{
if (isFloatLayoutSuspended())
return false;
auto& floatingContext = this->floatingContext();
auto& boxGeometry = formattingContext().geometryForBox(floatBox);
if (!shouldTryToPlaceFloatBox(floatBox, boxGeometry.marginBoxWidth(), mayOverConstrainLine))
return false;
auto lineMarginBoxLeft = std::max(0.f, m_lineLogicalRect.left() - m_lineMarginStart);
auto computeFloatBoxPosition = [&] {
// Set static position first.
auto staticPosition = LayoutPoint { lineMarginBoxLeft, m_lineLogicalRect.top() };
if (auto additionalOffsets = adjustLineRectForInitialLetterIfApplicable(floatBox)) {
staticPosition.setY(m_lineLogicalRect.top() + additionalOffsets->capHeightOffset);
boxGeometry.setVerticalMargin({ boxGeometry.marginBefore() + additionalOffsets->sunkenBelowFirstLineOffset, boxGeometry.marginAfter() });
}
staticPosition.move(boxGeometry.marginStart(), boxGeometry.marginBefore());
boxGeometry.setTopLeft(staticPosition);
// Compute float position by running float layout.
auto floatingPosition = floatingContext.positionForFloat(floatBox, boxGeometry, rootHorizontalConstraints());
boxGeometry.setTopLeft(floatingPosition);
};
computeFloatBoxPosition();
auto willFloatBoxShrinkLine = [&] {
// Float boxes don't get positioned higher than the line.
auto floatBoxMarginBox = BoxGeometry::marginBoxRect(boxGeometry);
if (floatBoxMarginBox.isEmpty())
return false;
if (floatBoxMarginBox.right() <= lineMarginBoxLeft) {
// Previous floats already constrain the line horizontally more than this one.
return false;
}
// Empty rect case: "line-height: 0px;" line still intersects with intrusive floats.
return floatBoxMarginBox.top() == m_lineLogicalRect.top() || floatBoxMarginBox.top() < m_lineLogicalRect.bottom();
}();
auto willFloatBoxWithClearFit = [&] {
if (!willFloatBoxShrinkLine)
return true;
auto lineIsConsideredEmpty = !m_line.hasContent() && !isLineConstrainedByFloat();
if (lineIsConsideredEmpty)
return true;
// When floats with clear are placed under existing floats, we may find ourselves in an over-constrained state and
// can't place this float here.
auto contentLogicalWidth = m_line.contentLogicalWidth() - m_line.trimmableTrailingWidth();
return haveEnoughSpaceForFloatWithClear(BoxGeometry::marginBoxRect(boxGeometry), floatingContext.isStartPositioned(floatBox), m_lineLogicalRect, contentLogicalWidth);
};
if (floatBox.hasFloatClear() && !willFloatBoxWithClearFit())
return false;
auto placeFloatBox = [&] {
auto lineIndex = m_previousLine ? (m_previousLine->lineIndex + 1) : 0lu;
auto floatItem = floatingContext.makeFloatItem(floatBox, boxGeometry, lineIndex);
layoutState().placedFloats().append(floatItem);
m_placedFloats.append(floatItem);
};
placeFloatBox();
auto adjustLineRectIfNeeded = [&] {
if (!willFloatBoxShrinkLine) {
// This float is placed outside the line box. No need to shrink the current line.
return;
}
auto constraints = floatAvoidingRect(m_lineLogicalRect, m_lineMarginStart);
m_lineLogicalRect = constraints.logicalRect;
m_lineIsConstrainedByFloat.add(constraints.constrainedSideSet);
};
adjustLineRectIfNeeded();
return true;
}
LineBuilder::Result LineBuilder::handleInlineContent(const InlineItemRange& layoutRange, const LineCandidate& lineCandidate)
{
auto result = LineBuilder::Result { };
auto& inlineContent = lineCandidate.inlineContent;
auto& continuousInlineContent = inlineContent.continuousContent();
if (continuousInlineContent.runs().isEmpty()) {
ASSERT(inlineContent.trailingLineBreak() || inlineContent.trailingWordBreakOpportunity());
result = { inlineContent.trailingLineBreak() ? InlineContentBreaker::IsEndOfLine::Yes : InlineContentBreaker::IsEndOfLine::No };
return result;
}
auto constraints = adjustedLineRectWithCandidateInlineContent(lineCandidate);
auto availableWidthForCandidateContent = [&] {
auto lineIndex = m_previousLine ? (m_previousLine->lineIndex + 1) : 0lu;
// If width constraint overrides exist (e.g. text-wrap: balance), modify the available width accordingly.
const auto& availableLineWidthOverride = layoutState().availableLineWidthOverride();
auto widthOverride = availableLineWidthOverride.availableLineWidthOverrideForLine(lineIndex);
auto availableTotalWidthForContent = widthOverride ? InlineLayoutUnit { widthOverride.value() } - m_lineMarginStart : constraints.logicalRect.width();
return availableWidth(inlineContent, m_line, availableTotalWidthForContent, intrinsicWidthMode());
}();
auto lineHasContent = m_line.hasContentOrListMarker();
auto verticalPositionHasFloatOrInlineContent = lineHasContent || isLineConstrainedByFloat() || !constraints.constrainedSideSet.isEmpty();
auto lineBreakingResult = InlineContentBreaker::Result { InlineContentBreaker::Result::Action::Keep, InlineContentBreaker::IsEndOfLine::No, { }, { } };
if (auto minimumRequiredWidth = continuousInlineContent.minimumRequiredWidth(); minimumRequiredWidth && *minimumRequiredWidth > availableWidthForCandidateContent) {
if (verticalPositionHasFloatOrInlineContent)
lineBreakingResult = InlineContentBreaker::Result { InlineContentBreaker::Result::Action::Wrap, InlineContentBreaker::IsEndOfLine::Yes, { }, { } };
} else if (continuousInlineContent.logicalWidth() > availableWidthForCandidateContent) {
auto lineStatus = InlineContentBreaker::LineStatus { m_line.contentLogicalRight(), availableWidthForCandidateContent, m_line.trimmableTrailingWidth(), m_line.trailingSoftHyphenWidth(), m_line.isTrailingRunFullyTrimmable(), verticalPositionHasFloatOrInlineContent, !m_wrapOpportunityList.isEmpty() };
lineBreakingResult = inlineContentBreaker().processInlineContent(continuousInlineContent, lineStatus);
}
result = processLineBreakingResult(lineCandidate, layoutRange, lineBreakingResult);
auto lineGainsNewContent = lineBreakingResult.action == InlineContentBreaker::Result::Action::Keep || lineBreakingResult.action == InlineContentBreaker::Result::Action::Break;
if (lineGainsNewContent || !lineHasContent) {
// In some cases in order to put this content on the line, we have to avoid float boxes that didn't constrain the line initially.
// (e.g. when this new content is taller than any previous content and there are vertically stacked floats)
// In some other cases we can't put any content on the line due to such newly discovered floats (e.g. shape-outside floats with gaps in-between them in vertical axis)
m_lineLogicalRect = constraints.logicalRect;
m_lineIsConstrainedByFloat.add(constraints.constrainedSideSet);
}
m_candidateContentMaximumHeight = constraints.logicalRect.height();
return result;
}
LineBuilder::Result LineBuilder::processLineBreakingResult(const LineCandidate& lineCandidate, const InlineItemRange& layoutRange, const InlineContentBreaker::Result& lineBreakingResult)
{
auto& candidateRuns = lineCandidate.inlineContent.continuousContent().runs();
switch (lineBreakingResult.action) {
case InlineContentBreaker::Result::Action::Keep: {
// This continuous content can be fully placed on the current line.
for (auto& run : candidateRuns)
m_line.append(run.inlineItem, run.style, run.contentWidth(), run.textSpacingAdjustment);
// We are keeping this content on the line but we need to check if we could have wrapped here
// in order to be able to revert back to this position if needed.
// Let's just ignore cases like collapsed leading whitespace for now.
if (lineCandidate.inlineContent.hasTrailingSoftWrapOpportunity() && m_line.hasContentOrListMarker()) {
auto& trailingRun = candidateRuns.last();
auto& trailingInlineItem = trailingRun.inlineItem;
// Note that wrapping here could be driven both by the style of the parent and the inline item itself.
// e.g inline boxes set the wrapping rules for their content and not for themselves.
auto& layoutBoxParent = trailingInlineItem.layoutBox().parent();
// Need to ensure we use the correct style here, so the content breaker and line builder remain in sync.
auto& parentStyle = isFirstFormattedLine() ? layoutBoxParent.firstLineStyle() : layoutBoxParent.style();
auto isWrapOpportunity = TextUtil::isWrappingAllowed(parentStyle);
if (!isWrapOpportunity && trailingInlineItem.isInlineBoxStartOrEnd())
isWrapOpportunity = TextUtil::isWrappingAllowed(trailingRun.style);
if (isWrapOpportunity)
m_wrapOpportunityList.append(&trailingInlineItem);
}
return { lineBreakingResult.isEndOfLine, { candidateRuns.size(), false } };
}
case InlineContentBreaker::Result::Action::Wrap: {
ASSERT(lineBreakingResult.isEndOfLine == InlineContentBreaker::IsEndOfLine::Yes);
// This continuous content can't be placed on the current line. Nothing to commit at this time.
// However there are cases when, due to whitespace collapsing, this overflowing content should not be separated from
// the content on the line.
// <div>X <span> X</span></div>
// If the second 'X' overflows the line, the trailing whitespace gets trimmed which introduces a stray inline box
// on the first line ('X <span>' and 'X</span>' first and second line respectively).
// In such cases we need to revert the content on the line to a previous wrapping opportunity to keep such content together.
auto needsRevert = m_line.trimmableTrailingWidth() && !m_line.runs().isEmpty() && m_line.runs().last().isInlineBoxStart();
if (needsRevert && m_wrapOpportunityList.size() > 1) {
m_wrapOpportunityList.removeLast();
return { InlineContentBreaker::IsEndOfLine::Yes, { rebuildLineWithInlineContent(layoutRange, *m_wrapOpportunityList.last()), true } };
}
return { InlineContentBreaker::IsEndOfLine::Yes, { }, { }, eligibleOverflowWidthAsLeading(candidateRuns, lineBreakingResult, isFirstFormattedLine()) };
}
case InlineContentBreaker::Result::Action::WrapWithHyphen:
ASSERT(lineBreakingResult.isEndOfLine == InlineContentBreaker::IsEndOfLine::Yes);
// This continuous content can't be placed on the current line, nothing to commit.
// However we need to make sure that the current line gains a trailing hyphen.
ASSERT(m_line.trailingSoftHyphenWidth());
m_line.addTrailingHyphen(*m_line.trailingSoftHyphenWidth());
return { InlineContentBreaker::IsEndOfLine::Yes };
case InlineContentBreaker::Result::Action::RevertToLastWrapOpportunity:
ASSERT(lineBreakingResult.isEndOfLine == InlineContentBreaker::IsEndOfLine::Yes);
// Not only this content can't be placed on the current line, but we even need to revert the line back to an earlier position.
ASSERT(!m_wrapOpportunityList.isEmpty());
return { InlineContentBreaker::IsEndOfLine::Yes, { rebuildLineWithInlineContent(layoutRange, *m_wrapOpportunityList.last()), true } };
case InlineContentBreaker::Result::Action::RevertToLastNonOverflowingWrapOpportunity:
ASSERT(lineBreakingResult.isEndOfLine == InlineContentBreaker::IsEndOfLine::Yes);
ASSERT(!m_wrapOpportunityList.isEmpty());
if (auto committedCount = rebuildLineForTrailingSoftHyphen(layoutRange))
return { InlineContentBreaker::IsEndOfLine::Yes, { committedCount, true } };
return { InlineContentBreaker::IsEndOfLine::Yes };
case InlineContentBreaker::Result::Action::Break: {
ASSERT(lineBreakingResult.isEndOfLine == InlineContentBreaker::IsEndOfLine::Yes);
// Commit the combination of full and partial content on the current line.
ASSERT(lineBreakingResult.partialTrailingContent);
commitPartialContent(candidateRuns, *lineBreakingResult.partialTrailingContent);
// When breaking multiple runs <span style="word-break: break-all">text</span><span>content</span>, we might end up breaking them at run boundary.
// It simply means we don't really have a partial run. Partial content yes, but not partial run.
auto trailingRunIndex = lineBreakingResult.partialTrailingContent->trailingRunIndex;
auto committedInlineItemCount = trailingRunIndex + 1;
if (!lineBreakingResult.partialTrailingContent->partialRun)
return { InlineContentBreaker::IsEndOfLine::Yes, { committedInlineItemCount, false } };
auto partialRun = *lineBreakingResult.partialTrailingContent->partialRun;
auto& trailingInlineTextItem = downcast<InlineTextItem>(candidateRuns[trailingRunIndex].inlineItem);
ASSERT(partialRun.length < trailingInlineTextItem.length());
auto overflowLength = trailingInlineTextItem.length() - partialRun.length;
return { InlineContentBreaker::IsEndOfLine::Yes, { committedInlineItemCount, false }, overflowLength, eligibleOverflowWidthAsLeading(candidateRuns, lineBreakingResult, isFirstFormattedLine()) };
}
}
ASSERT_NOT_REACHED();
return { InlineContentBreaker::IsEndOfLine::No };
}
void LineBuilder::commitPartialContent(const InlineContentBreaker::ContinuousContent::RunList& runs, const InlineContentBreaker::Result::PartialTrailingContent& partialTrailingContent)
{
for (size_t index = 0; index < runs.size(); ++index) {
auto& run = runs[index];
if (partialTrailingContent.trailingRunIndex == index) {
// Create and commit partial trailing item.
if (auto partialRun = partialTrailingContent.partialRun) {
ASSERT(run.inlineItem.isText());
auto& trailingInlineTextItem = downcast<InlineTextItem>(runs[partialTrailingContent.trailingRunIndex].inlineItem);
auto partialTrailingTextItem = trailingInlineTextItem.left(partialRun->length);
m_line.append(partialTrailingTextItem, trailingInlineTextItem.style(), partialRun->logicalWidth);
if (auto hyphenWidth = partialRun->hyphenWidth)
m_line.addTrailingHyphen(*hyphenWidth);
return;
}
// The partial run is the last content to commit.
m_line.append(run.inlineItem, run.style, run.contentWidth(), run.textSpacingAdjustment);
if (auto hyphenWidth = partialTrailingContent.hyphenWidth)
m_line.addTrailingHyphen(*hyphenWidth);
return;
}
m_line.append(run.inlineItem, run.style, run.contentWidth(), run.textSpacingAdjustment);
}
}
size_t LineBuilder::rebuildLineWithInlineContent(const InlineItemRange& layoutRange, const InlineItem& lastInlineItemToAdd)
{
ASSERT(!m_wrapOpportunityList.isEmpty());
size_t numberOfInlineItemsOnLine = 0;
size_t numberOfFloatsInRange = 0;
// We might already have added floats. They shrink the available horizontal space for the line.
// Let's just reuse what the line has at this point.
m_line.initialize(m_lineSpanningInlineBoxes, isFirstFormattedLine());
if (m_partialLeadingTextItem) {
m_line.append(*m_partialLeadingTextItem, m_partialLeadingTextItem->style(), formattingContext().formattingUtils().inlineItemWidth(*m_partialLeadingTextItem, { }, isFirstFormattedLine()));
++numberOfInlineItemsOnLine;
if (&m_partialLeadingTextItem.value() == &lastInlineItemToAdd)
return 1;
}
size_t index = layoutRange.startIndex() + numberOfInlineItemsOnLine;
for (; index < layoutRange.endIndex(); ++index) {
auto& inlineItem = m_inlineItemList[index];
if (inlineItem.isFloat()) {
++numberOfFloatsInRange;
continue;
}
auto& style = isFirstFormattedLine() ? inlineItem.firstLineStyle() : inlineItem.style();
auto inlineItemWidth = !inlineItem.isOpaque() ? formattingContext().formattingUtils().inlineItemWidth(inlineItem, m_line.contentLogicalRight(), isFirstFormattedLine()) : InlineLayoutUnit();
if (inlineItem.isInlineBoxEnd() && inlineItem.layoutBox().isRubyBase())
inlineItemWidth += RubyFormattingContext::baseEndAdditionalLogicalWidth(inlineItem.layoutBox(), m_line.runs(), { }, formattingContext());
m_line.append(inlineItem, style, inlineItemWidth);
++numberOfInlineItemsOnLine;
if (&inlineItem == &lastInlineItemToAdd)
break;
}
// Remove floats that are outside of this "rebuild" range to ensure we don't add them twice.
auto unplaceFloatBox = [&](const Box& floatBox) -> bool {
m_placedFloats.removeFirstMatching([&floatBox](auto& placedFloatItem) {
return placedFloatItem.layoutBox() == &floatBox;
});
return layoutState().placedFloats().remove(floatBox);
};
for (; index < layoutRange.endIndex(); ++index) {
auto& inlineItem = m_inlineItemList[index];
if (inlineItem.isFloat() && unplaceFloatBox(inlineItem.layoutBox()))
break;
}
return numberOfInlineItemsOnLine + numberOfFloatsInRange;
}
size_t LineBuilder::rebuildLineForTrailingSoftHyphen(const InlineItemRange& layoutRange)
{
if (m_wrapOpportunityList.isEmpty()) {
// We are supposed to have a wrapping opportunity on the current line at this point.
ASSERT_NOT_REACHED();
return { };
}
// Revert all the way back to a wrap opportunity when either a soft hyphen fits or no hyphen is required.
for (auto i = m_wrapOpportunityList.size(); i-- > 1;) {
auto& softWrapOpportunityItem = *m_wrapOpportunityList[i];
// FIXME: If this turns out to be a perf issue, we could also traverse the wrap list and keep adding the items
// while watching the available width very closely.
auto committedCount = rebuildLineWithInlineContent(layoutRange, softWrapOpportunityItem);
auto availableWidth = m_lineLogicalRect.width() - m_line.contentLogicalRight();
auto trailingSoftHyphenWidth = m_line.trailingSoftHyphenWidth();
// Check if the trailing hyphen now fits the line (or we don't need hyphen anymore).
if (!trailingSoftHyphenWidth || trailingSoftHyphenWidth <= availableWidth) {
if (trailingSoftHyphenWidth)
m_line.addTrailingHyphen(*trailingSoftHyphenWidth);
return committedCount;
}
}
// Have at least some content on the line.
auto committedCount = rebuildLineWithInlineContent(layoutRange, *m_wrapOpportunityList.first());
if (auto trailingSoftHyphenWidth = m_line.trailingSoftHyphenWidth())
m_line.addTrailingHyphen(*trailingSoftHyphenWidth);
return committedCount;
}
bool LineBuilder::isLastLineWithInlineContent(const LineContent& lineContent, size_t needsLayoutEnd, const Line::RunList& lineRuns) const
{
if (lineContent.partialTrailingContentLength)
return false;
// FIXME: This needs work with partial layout.
auto& formattingContext = this->formattingContext();
if (lineContent.range.endIndex() == needsLayoutEnd) {
if (!lineContent.range.start) {
// This is both the first and the last line.
return true;
}
for (auto& lineRun : makeReversedRange(lineRuns)) {
if (Line::Run::isContentfulOrHasDecoration(lineRun, formattingContext))
return true;
}
return false;
}
// Look ahead to see if there's more inline type of inline items.
for (auto i = lineContent.range.endIndex(); i < needsLayoutEnd && i < m_inlineItemList.size(); ++i) {
if (isContentfulOrHasDecoration(m_inlineItemList[i], formattingContext))
return false;
}
return true;
}
}
}
|