mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
18 lines
425 B
HTML
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>
|