mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-23 08:30:50 +00:00
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`
14 lines
279 B
HTML
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>
|