зеркало из https://github.com/mozilla/gecko-dev.git
14 строки
366 B
HTML
14 строки
366 B
HTML
<script>
|
|
let o = [];
|
|
window.onload = function(){
|
|
o[0] = document.createElement("font");
|
|
document.body.appendChild(o[0]);
|
|
o[1] = document.createElement("embed");
|
|
o[0].appendChild(o[1]);
|
|
o[2] = document.createElement("dialog");
|
|
o[1].appendChild(o[2]);
|
|
o[2].appendChild(document.createElement("s"));
|
|
o[2].animate([{"all": "unset"}, {}], 3);
|
|
}
|
|
</script>
|