зеркало из https://github.com/mozilla/gecko-dev.git
22 строки
346 B
HTML
22 строки
346 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var f = function() {
|
|
document.documentElement.offsetHeight;
|
|
};
|
|
window.addEventListener("DOMSubtreeModified", f, true);
|
|
|
|
document.getElementsByTagName("table")[0].setAttribute("cellpadding", "2");
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();">
|
|
<table><tr><td></td></tr></table>
|
|
</body>
|
|
</html>
|