1
0
mirror of https://github.com/classilla/tenfourfox.git synced 2025-03-10 07:31:47 +00:00

22 lines
346 B
HTML
Raw Normal View History

2017-04-19 00:56:45 -07:00
<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>