diff options
Diffstat (limited to 'Libraries/LibWeb/Layout/InlineFormattingContext.cpp')
-rw-r--r-- | Libraries/LibWeb/Layout/InlineFormattingContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibWeb/Layout/InlineFormattingContext.cpp b/Libraries/LibWeb/Layout/InlineFormattingContext.cpp index 9819baacf7..b8d0b6cee0 100644 --- a/Libraries/LibWeb/Layout/InlineFormattingContext.cpp +++ b/Libraries/LibWeb/Layout/InlineFormattingContext.cpp @@ -127,7 +127,7 @@ void InlineFormattingContext::run(Box&, LayoutMode layout_mode) switch (text_align) { case CSS::TextAlign::Center: - case CSS::TextAlign::VendorSpecificCenter: + case CSS::TextAlign::LibwebCenter: x_offset += excess_horizontal_space / 2; break; case CSS::TextAlign::Right: |