blob: 91306be71d9557007a0c6b3372f2be7612da508a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<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>
|