diff options
author | Martin Robinson <mrobinson@igalia.com> | 2024-07-24 16:37:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 14:37:08 +0000 |
commit | 569fd5d8b580b9b9e5f9746f239a24caa857b71e (patch) | |
tree | c0fec38e8e840725681ac59de0a2c1dcaa5a7f8c /components/layout_2020/style_ext.rs | |
parent | 60e65c175dcc6dda08161f3a3f56510fc88ddceb (diff) | |
download | servo-569fd5d8b580b9b9e5f9746f239a24caa857b71e.tar.gz servo-569fd5d8b580b9b9e5f9746f239a24caa857b71e.zip |
Upgrade stylo to 2024-07-16 (#32812)
* Upgrade stylo to 2024-07-16
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
* Use the new `dom` crate from stylo
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
---------
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
Co-authored-by: Oriol Brufau <obrufau@igalia.com>
Diffstat (limited to 'components/layout_2020/style_ext.rs')
-rw-r--r-- | components/layout_2020/style_ext.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/layout_2020/style_ext.rs b/components/layout_2020/style_ext.rs index 20a89bedf28..dc3bcbf79fa 100644 --- a/components/layout_2020/style_ext.rs +++ b/components/layout_2020/style_ext.rs @@ -718,6 +718,7 @@ impl From<stylo::Display> for Display { is_list_item: packed.is_list_item(), }, stylo::DisplayInside::Flex => DisplayInside::Flex, + stylo::DisplayInside::Grid => todo!("Grid support is not yet implemented."), // These should not be values of DisplayInside, but oh well stylo::DisplayInside::None => return Display::None, |