mirror of
https://github.com/servo/servo.git
synced 2025-07-13 10:23:40 +01:00
3 lines
128 B
JavaScript
3 lines
128 B
JavaScript
let div = document.createElement("div");
|
|
document.body.appendChild(div);
|
|
div.animate([{"height": "0px"}, {"height": "100px"}]);
|