зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
389 B
HTML
21 строка
389 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
window.onload = () => {
|
|
a = document.createElement("x")
|
|
document.documentElement.appendChild(a)
|
|
a.animate([{ "filter": "sepia(7)" }], 3000)
|
|
b = document.createElement("caption")
|
|
a.appendChild(b)
|
|
a.style = "display:contents"
|
|
//DDBEGIN
|
|
b.animate([{ "padding": "912q" }], 1500)
|
|
//DDEND
|
|
a.animate([{}])
|
|
}
|
|
</script>
|
|
</head>
|
|
</html>
|