Files
ladybird/Tests/LibWeb/Text/input/css/computed-font-style-with-relative-lengths-in-calc.html
Callum Law 3b6d17cd42 LibWeb: Import a bunch of CSS font related tests
Done in distinct commit to see progress over multiple following commits
2025-09-19 10:06:33 +01:00

16 lines
324 B
HTML

<!DOCTYPE html>
<html>
<style>
#foo {
font-style: oblique calc(sign(1em - 1px) * 1rad);
}
</style>
<div id="foo"></div>
<script src="../include.js"></script>
<script>
test(() => {
println(getComputedStyle(foo).fontStyle);
});
</script>
</html>