Jelajahi Sumber

LibWeb: Give FormattingState a reference to its root state

FormattingStates can have parents, in case we're performing nested
layouts to determine something's intrinsic size. In those cases, it will
soon be useful to find the outermost (root) state.
Andreas Kling 3 tahun lalu
induk
melakukan
d3932b5880
1 mengubah file dengan 15 tambahan dan 1 penghapusan
  1. 15 1
      Userland/Libraries/LibWeb/Layout/FormattingState.h

+ 15 - 1
Userland/Libraries/LibWeb/Layout/FormattingState.h

@@ -15,10 +15,23 @@
 namespace Web::Layout {
 namespace Web::Layout {
 
 
 struct FormattingState {
 struct FormattingState {
-    FormattingState() { }
+    FormattingState()
+        : m_root(*this)
+    {
+    }
+
     explicit FormattingState(FormattingState const* parent)
     explicit FormattingState(FormattingState const* parent)
         : m_parent(parent)
         : m_parent(parent)
+        , m_root(find_root())
+    {
+    }
+
+    FormattingState const& find_root() const
     {
     {
+        FormattingState const* root = this;
+        for (auto* state = m_parent; state; state = state->m_parent)
+            root = state;
+        return *root;
     }
     }
 
 
     struct NodeState {
     struct NodeState {
@@ -92,6 +105,7 @@ struct FormattingState {
     HashMap<NodeWithStyleAndBoxModelMetrics const*, IntrinsicSizes> mutable intrinsic_sizes;
     HashMap<NodeWithStyleAndBoxModelMetrics const*, IntrinsicSizes> mutable intrinsic_sizes;
 
 
     FormattingState const* m_parent { nullptr };
     FormattingState const* m_parent { nullptr };
+    FormattingState const& m_root;
 };
 };
 
 
 Gfx::FloatRect absolute_content_rect(Box const&, FormattingState const&);
 Gfx::FloatRect absolute_content_rect(Box const&, FormattingState const&);