LibWeb: Add writing-mode CSS property, and its values

Introduce the `writing-mode` property, as specified in
https://drafts.csswg.org/css-writing-modes/#block-flow
This commit is contained in:
BenJilks 2024-10-27 22:12:54 +00:00 committed by Alexander Kalenik
commit c3f3e93b7e
Notes: github-actions[bot] 2024-11-03 16:03:18 +00:00
8 changed files with 40 additions and 1 deletions

View file

@ -168,6 +168,7 @@ public:
Optional<CSS::TableLayout> table_layout() const;
Optional<CSS::Direction> direction() const;
Optional<CSS::UnicodeBidi> unicode_bidi() const;
Optional<CSS::WritingMode> writing_mode() const;
static Vector<CSS::Transformation> transformations_for_style_value(CSSStyleValue const& value);
Vector<CSS::Transformation> transformations() const;