зеркало из https://github.com/mozilla/pjs.git
17 строки
313 B
HTML
17 строки
313 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function m()
|
|
{
|
|
document.body.offsetHeight;
|
|
var parent = document.getElementById("parent");
|
|
parent.appendChild(document.createTextNode("i"));
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="m();">
|
|
<div id="div" style="font-size: 180px"><span>f</span><span id="parent"></span></div>
|
|
</body>
|
|
</html>
|