1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

LibWeb: Don't render list item markers for "list-style-type: none"

This commit is contained in:
Andreas Kling 2020-05-30 12:04:15 +02:00
parent e1e9fb8290
commit 0d5be35c1f
2 changed files with 13 additions and 0 deletions

View file

@ -359,6 +359,15 @@ static void set_property_expanding_shorthands(StyleProperties& style, CSS::Prope
return;
}
if (property_id == CSS::PropertyID::ListStyle) {
auto parts = split_on_whitespace(value.to_string());
if (!parts.is_empty()) {
auto value = parse_css_value(parts[0]);
style.set_property(CSS::PropertyID::ListStyleType, value);
}
return;
}
style.set_property(property_id, value);
}