Files
ladybird/Tests/LibWeb/Text/input/css/font-weight-keywords-animated.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

18 lines
425 B
HTML

<!DOCTYPE html>
<html>
<div style="font-weight: 400">
<div id="foo"></div>
</div>
<script src="../include.js"></script>
<script>
test(() => {
const anim = foo.animate([{ fontWeight: "normal" }, { fontWeight: "bolder" }], 1000);
anim.pause();
anim.currentTime = 500;
println(getComputedStyle(foo).fontWeight);
});
</script>
</html>