mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:48:12 +00:00
LibWeb: Move CSS classes into the Web::CSS namespace
This commit is contained in:
parent
3e389f4cdc
commit
1f008c95b6
100 changed files with 358 additions and 366 deletions
|
@ -40,7 +40,7 @@ public:
|
|||
|
||||
const DOM::Text& node() const { return static_cast<const DOM::Text&>(*LayoutNode::node()); }
|
||||
|
||||
const String& text_for_style(const StyleProperties&) const;
|
||||
const String& text_for_style(const CSS::StyleProperties&) const;
|
||||
const String& text_for_rendering() const { return m_text_for_rendering; }
|
||||
|
||||
virtual const char* class_name() const override { return "LayoutText"; }
|
||||
|
@ -50,7 +50,7 @@ public:
|
|||
|
||||
virtual void split_into_lines(LayoutBlock& container, LayoutMode) override;
|
||||
|
||||
const StyleProperties& specified_style() const { return parent()->specified_style(); }
|
||||
const CSS::StyleProperties& specified_style() const { return parent()->specified_style(); }
|
||||
|
||||
private:
|
||||
void split_into_lines_by_rules(LayoutBlock& container, LayoutMode, bool do_collapse, bool do_wrap_lines, bool do_wrap_breaks);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue