Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script>
window.onload = () => {
a = document.createElement("p")
document.documentElement.appendChild(a)
a.animate([])
document.designMode = 'on'
document.documentElement.appendChild(document.createElement("div"))
}
</script>
</head>
</html>