tree: da42e0469b987e8ca26f1dcdde2bf748e778590c [path history] [tgz]
  1. empty_offset_mapping_builder.h
  2. ng_baseline.cc
  3. ng_baseline.h
  4. ng_bidi_paragraph.cc
  5. ng_bidi_paragraph.h
  6. ng_inline_box_state.cc
  7. ng_inline_box_state.h
  8. ng_inline_break_token.cc
  9. ng_inline_break_token.h
  10. ng_inline_fragment_traversal.cc
  11. ng_inline_fragment_traversal.h
  12. ng_inline_fragment_traversal_test.cc
  13. ng_inline_item.cc
  14. ng_inline_item.h
  15. ng_inline_item_result.cc
  16. ng_inline_item_result.h
  17. ng_inline_items_builder.cc
  18. ng_inline_items_builder.h
  19. ng_inline_items_builder_test.cc
  20. ng_inline_layout_algorithm.cc
  21. ng_inline_layout_algorithm.h
  22. ng_inline_layout_algorithm_test.cc
  23. ng_inline_node.cc
  24. ng_inline_node.h
  25. ng_inline_node_data.cc
  26. ng_inline_node_data.h
  27. ng_inline_node_test.cc
  28. ng_line_box_fragment.cc
  29. ng_line_box_fragment.h
  30. ng_line_box_fragment_builder.cc
  31. ng_line_box_fragment_builder.h
  32. ng_line_breaker.cc
  33. ng_line_breaker.h
  34. ng_line_breaker_test.cc
  35. ng_line_height_metrics.cc
  36. ng_line_height_metrics.h
  37. ng_list_layout_algorithm.cc
  38. ng_list_layout_algorithm.h
  39. ng_offset_mapping.cc
  40. ng_offset_mapping.h
  41. ng_offset_mapping_builder.cc
  42. ng_offset_mapping_builder.h
  43. ng_offset_mapping_test.cc
  44. ng_physical_line_box_fragment.cc
  45. ng_physical_line_box_fragment.h
  46. ng_physical_text_fragment.cc
  47. ng_physical_text_fragment.h
  48. ng_physical_text_fragment_test.cc
  49. ng_text_end_effect.h
  50. ng_text_fragment.cc
  51. ng_text_fragment.h
  52. ng_text_fragment_builder.cc
  53. ng_text_fragment_builder.h
  54. README.md
third_party/WebKit/Source/core/layout/ng/inline/README.md

LayoutNG Inline Layout

This directory contains the inline layout implementation of Blink's new layout engine “LayoutNG”.

This README can be viewed in formatted form here.

Other parts of LayoutNG is explained here.

What is Inline Layout

Inline layout is one of CSS normal flow layout models.

From the CSS2 spec on inline formatting context: an inline formatting context is established by a block container box that contains no block-level boxes.

Current code determines inline formatting context using slightly different criteria, but this is still to be discussed. See crbug.com/734554.

Following DOM tree is transformed to fragment tree as in the following.

DOM

<div>
  <span>
    Hello
  </span>
</div>

NGLayoutInputNode

  • NGBlockNode
    • NGInlineNode
      • NGInlineItem (open tag, span)
      • NGInlineItem (text, “Hello”)
      • NGInlineItem (close tag, span)

Fragment tree

  • NGPhysicalBoxFragment
    • NGPhysicalBoxFragment (anonymous wrapper)
      • NGPhysicalLineBoxFragment
        • NGPhysicalBoxFragment (span, may be omitted)
          • NGPhysicalTextFragment (“Hello”)

Inline Layout Phases

Inline layout is performed in the following phases:

  1. Pre-layout converts LayoutObject tree to a concatenated string and a list of NGInlineItem.
  2. Line breaking breaks it into lines and produces a list of NGInlineItemResult for each line.
  3. Line box construction produces a fragment tree.

This is similar to CSS Text Processing Order of Operations, but not exactly the same, because the spec prioritizes the simple description than being accurate.

Pre-layout

For inline layout there is a pre-layout pass that prepares the internal data structures needed to perform line layout.

The pre-layout pass, triggered by calling NGInlineNode::PrepareLayout(), has three separate steps or stages that are executed in order:

  • CollectInlines: Performs a depth-first scan of the container collecting all non-atomic inlines and TextNodess. Atomic inlines are represented as a unicode object replacement character but are otherwise skipped. Each non-atomic inline and TextNodes is fed to a NGInlineItemsBuilder instance which collects the text content for all non-atomic inlines in the container.

    During this process white-space is collapsed and normalized according to CSS white-space processing rules.

    The CSS text-transform is already applied in LayoutObject tree. The plan is to implement in this phase when LayoutNG builds the tree from DOM.

  • SegmentText: Performs BiDi segmentation and resolution. See Bidirectional text below.

  • ShapeText: Shapes the resolved BiDi runs using HarfBuzz. TODO(eae): Fill out

Line Breaking

NGLineBreaker takes a list of NGInlineItem, measure them, break into lines, and produces a list of NGInlineItemResult for each line.

NGInlineItemResult keeps several information needed during the line box construction, such as inline size and ShapeResult, though the inline position is recomputed later because Bidirectional text may change it.

This phase:

  1. Measures each item.
  2. Breaks text NGInlineItem into multiple NGInlineItemResult. The core logic of this part is implemented in ShapingLineBreaker.
  3. Computes inline size of borders/margins/paddings. The block size of borders/margins/paddings are ignored for inline non-replaced elements, but the inline size affects layout, and hence line breaking. See CSS Calculating widths and margins for more details.
  4. Determines which item can fit in the line.
  5. Determines the break opportunities between items. If an item overflows, and there were no break opportunity before it, the item before must also overflow.

ShapingLineBreaker is... TODO(kojii): fill out.

Line Box Construction

NGInlineLayoutAlgorithm::CreateLine() takes a list of NGInlineItemResult and produces NGPhysicalLineBoxFragment for each line.

Lines are then wrapped in an anonymous NGPhysicalBoxFragment so that one NGInlineNode has one corresponding fragment.

This phase consists of following sub-phases:

  1. Bidirectional reordering: Reorder the list of NGInlineItemResult according to UAX#9 Reordering Resolved Levels. See Bidirectional text below.

    After this point forward, the list of NGInlineItemResult is in visual order; which is from line-left to line-right. The block direction is still logical, but the inline direction is physical.

  2. Create a NGPhysicalFragment for each NGInlineItemResult in visual (line-left to line-right) order, and place them into NGPhysicalLineBoxFragment.

    1. A text item produces a NGPhysicalTextFragment.
    2. An open-tag item pushes a new stack entry of NGInlineBoxState, and a close-tag item pops a stack entry. Performs operations that require the size of the inline box, or ancestor boxes. See Inline Box Tree below.

    The inline size of each item was already determined by NGLineBreaker, but the inline position is recomputed because BiDi reordering may have changed it.

    In block direction, NGPhysicalFragment is placed as if the baseline is at 0. This is adjusted later, possibly multiple times. See Inline Box Tree and the post-process below.

  3. Post-process the constructed line box. This includes:

    1. Process all pending operations in Inline Box Tree.
    2. Moves the baseline to the correct position based on the height of the line box.
    3. Applies the CSS text-align property.

Inline Box Tree

A flat list structure is suitable for many inline operations, but some operations require an inline box tree structure. A stack of NGInlineBoxState is constructed from a list of NGInlineItemResult to represent the box tree structure.

This stack:

  1. Caches common values for an inline box. For instance, the primary font metrics do not change within an inline box.
  2. Computes the height of an inline box. The height of inline, non-replaced elements depends on the content area, but CSS doesn't define how to compute the content area.
  3. Creates NGPhysicalBoxFragments when needed. CSS doesn't define when an inline box should have a box, but existing implementations are interoperable that there should be a box when it has borders. Also, background should have a box if it is not empty. Other cases are where paint or scroller will need a box.
  4. Applies vertical-align to shift baselines. Some values are applicable immediately. Some values need the size of the box, or the parent box. Some values need the size of the root inline box. Depends on the value, the operation is queued to the appropriate stack entry.

Because of index-based operations to the list of NGInlineItemResult, the list is append-only during the process. When all operations are done, OnEndPlaceItems() turns the list into the final fragment tree structure.

Box Fragments in Line Box Fragments

Not all inline-level boxes produces NGPhysicalBoxFragments.

NGInlineLayoutAlgorithm determines whether a NGPhysicalBoxFragment is needed or not, such as when a <span> has borders, and calls NGInlineBoxState::SetNeedsBoxFragment().

Since NGPhysicalBoxFragment needs to know its children and size before creating it, NGInlineLayoutStateStack::AddBoxFragmentPlaceholder() first creates placeholders. We then add children, and adjust positions both horizontally and vertically.

Once all children and their positions and sizes are finalized, NGInlineLayoutStateStack::CreateBoxFragments() creates NGPhysicalBoxFragment and add children to it.

Miscellaneous topics

Baseline

Computing baselines in LayoutNG goes the following process.

  1. Users of baseline should request what kind and type of the baseline they need by calling NGConstraintSpaceBuilder::AddBaselineRequest().
  2. Call NGLayoutInputNode::Layout(), that calls appropriate layout algorithm.
  3. Each layout algorithm computes baseline according to the requests.
  4. Users retrieve the result by NGPhysicalBoxFragment::Baseline(), or by higher level functions such as NGBoxFragment::BaselineMetrics().

Algorithms are responsible for checking NGConstraintSpace::BaselineRequests(), computing requested baselines, and calling NGFragmentBuilder::AddBaseline() to add them to NGPhysicalBoxFragment.

NGBaselineRequest consists of NGBaselineAlgorithmType and FontBaseline.

In most normal cases, algorithms should decide which box should provide the baseline for the specified NGBaselineAlgorithmType and delegate to it.

FontBaseline currently has only two baseline types, alphabetic and ideographic, and they are hard coded to derive from the CSS writing-mode property today.

We plan to support more baseline types, and allow authors to specify the baseline type, as defined in the CSS dominant-baseline property in future. NGPhysicalLineBoxFragment and NGPhysicalTextFragment should be responsible for computing different baseline types from font metrics.

Bidirectional Text

UAX#9 Unicode Bidirectional Algorithm defines processing algorithm for bidirectional text.

The core logic is implemented in NGBidiParagraph, which is a thin wrapper for ICU BiDi.

In a bird's‐eye view, it consists of two parts:

  1. Before line breaking: Segmenting text and resolve embedding levels as defined in UAX#9 Resolving Embedding Levels.

    The core logic uses ICU BiDi ubidi_getLogicalRun() function.

    This is part of the Pre-layout phase above.

  2. After line breaking: Reorder text as defined in UAX#9 Reordering Resolved Levels.

    The core logic uses ICU BiDi ubidi_reorderVisual() function.

    This is part of the Line Box Construction phase above.