ladybird/Tests/LibWeb/Text/input/css/serialize-shorthand-with-conflicting-logical-alias.html
Callum Law 47ddc2ea87 LibWeb: Respect logical property groups when serializing shorthands
We should not serialize a group of properties `longhands` as a single
shorthand if there is any property declared between the first and
last property in `longhands` which is not part of `longhands` but
belongs to the same logical property group, and has different mapping
logic to any of property in `longhands`
2025-07-16 11:16:49 +01:00

14 lines
279 B
HTML

<!DOCTYPE html>
<style>
div {
padding: 1px;
padding-inline-start: 1px;
padding-bottom: 1px;
}
</style>
<script src="../include.js"></script>
<script>
test(() => {
println(document.styleSheets[0].cssRules[0].cssText);
});
</script>