зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
305 B
HTML
16 строки
305 B
HTML
<!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>
|