ladybird/Tests/LibWeb/Text/input/css/nested-shorthand-css-wide-keyword-serialization.html
Callum Law 335190e925 LibWeb: Handle nested shorthands in all-same-CSS-wide-keyword to_string
Previously we only checked direct sub-properties, not accounting for the
nested case.
2025-06-16 12:37:40 +01:00

14 lines
280 B
HTML

<!DOCTYPE html>
<html>
<style>
#a {
background: initial;
}
</style>
<script src="../include.js"></script>
<script>
test(() => {
println(document.styleSheets[0].cssRules[0].cssText);
});
</script>
</html>