mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-07 09:31:28 +00:00
22 lines
346 B
HTML
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>
|