The static position of an absolutely positioned inline child is the in-flow insertion point on the line where it appears. Previously this was reconstructed after layout by walking previous siblings for a line-box fragment. That lookup could match a fragment from an earlier line and collapse multiple abspos children onto the same position, especially in white-space preserving content. Instead, drop a zero-width static-position marker into the line box at the insertion point when each abspos child is encountered. The marker is carried through normal line post-processing, including float intrusion, text-align, justification, trailing-whitespace trimming and ellipsis, so the final static position is resolved from the line itself. Resolve marker-only trailing lines before removing them, so they can provide static position without contributing line height.
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2020-2024, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Types.h>
|
|
#include <LibWeb/Forward.h>
|
|
#include <LibWeb/Layout/BlockContainer.h>
|
|
#include <LibWeb/Layout/FormattingContext.h>
|
|
|
|
namespace Web::Layout {
|
|
|
|
class InlineFormattingContext final : public FormattingContext {
|
|
public:
|
|
InlineFormattingContext(LayoutState&, LayoutMode, BlockContainer const& containing_block, LayoutState::UsedValues& containing_block_used_values, BlockFormattingContext& parent);
|
|
~InlineFormattingContext();
|
|
|
|
BlockFormattingContext& parent();
|
|
BlockFormattingContext const& parent() const;
|
|
|
|
BlockContainer const& containing_block() const { return static_cast<BlockContainer const&>(context_box()); }
|
|
|
|
virtual void run(AvailableSpace const&) override;
|
|
virtual CSSPixels automatic_content_height() const override;
|
|
virtual CSSPixels automatic_content_width() const override;
|
|
|
|
void dimension_box_on_line(Box const&, LayoutMode);
|
|
|
|
CSSPixels leftmost_inline_offset_at(CSSPixels y) const;
|
|
AvailableSize available_space_for_line(CSSPixels y) const;
|
|
bool any_floats_intrude_at_block_offset(CSSPixels block_offset) const;
|
|
bool can_fit_new_line_at_block_offset(CSSPixels block_offset) const;
|
|
|
|
CSSPixels vertical_float_clearance() const;
|
|
void set_vertical_float_clearance(CSSPixels);
|
|
|
|
private:
|
|
void generate_line_boxes();
|
|
void apply_text_overflow_ellipsis(Vector<LineBox>&);
|
|
void apply_justification_to_fragments(CSS::TextJustify, LineBox&, bool is_last_line);
|
|
StaticPositionRect calculate_inline_end_static_position_rect() const;
|
|
|
|
LayoutState::UsedValues& m_containing_block_used_values;
|
|
|
|
Optional<AvailableSpace> m_available_space;
|
|
|
|
CSSPixels m_automatic_content_width { 0 };
|
|
CSSPixels m_automatic_content_height { 0 };
|
|
|
|
CSSPixels m_vertical_float_clearance { 0 };
|
|
};
|
|
|
|
}
|