Mypal/dom/html/crashtests/682460.html
2019-03-11 13:26:37 +03:00

22 lines
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>