mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
18 lines
351 B
HTML
18 lines
351 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<style>
|
|
#foo {
|
|
--bar: 10px;
|
|
transition: --bar 1s linear;
|
|
}
|
|
</style>
|
|
<div id="foo"></div>
|
|
<script>
|
|
requestAnimationFrame(() => {
|
|
requestAnimationFrame(() => {
|
|
foo.style = "--bar: 100px";
|
|
});
|
|
});
|
|
</script>
|
|
</html>
|