ladybird/Tests/LibWeb/Text/input/css/display-math-serialization.html
Callum Law 1e8cc6bead LibWeb: Treat display: math as display: inline math
And serialize `inline math` as `math`. This matches the behavior of
other browsers.
2026-05-01 18:46:14 +02:00

12 lines
223 B
HTML

<!doctype html>
<style>
#foo {
display: math;
}
</style>
<script src="../include.js"></script>
<script>
test(() => {
println(document.styleSheets[0].cssRules[0].style.display);
});
</script>