зеркало из https://github.com/mozilla/gecko-dev.git
16 строки
469 B
HTML
16 строки
469 B
HTML
<!-- Quirks mode on purpose -->
|
|
<html>
|
|
<body style="margin: 0; padding: 0; border: none;"></body>
|
|
<script>
|
|
var html = document.documentElement;
|
|
var div = document.createElement("div");
|
|
div.style.height = "4000px";
|
|
html.appendChild(div);
|
|
html.appendChild(document.createTextNode("text"));
|
|
div = document.createElement("div");
|
|
div.style.height = "4000px";
|
|
html.appendChild(div);
|
|
document.body.scrollTop = 4000;
|
|
</script>
|
|
</html>
|