LibWeb: Serialize resolved CSS values in dedicated serialization mode

This doesn't actually do anything differently yet, but it will in the
very next commit.
This commit is contained in:
Andreas Kling 2024-12-07 01:10:11 +01:00 committed by Sam Atkins
commit b3c4b4fd97
Notes: github-actions[bot] 2024-12-07 08:31:59 +00:00
3 changed files with 12 additions and 3 deletions

View file

@ -38,6 +38,8 @@ private:
virtual void visit_edges(Cell::Visitor&) override;
virtual bool computed_flag() const override { return true; }
RefPtr<CSSStyleValue const> style_value_for_property(Layout::NodeWithStyle const&, PropertyID) const;
GC::Ref<DOM::Element> m_element;