blob: 86fcb344f7a044743b6f3e32318f683b20a497bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!-- Must be in quirks mode -->
<html>
<body>
<script>
var docEl = document.documentElement;
var b = document.body;
docEl.removeChild(b);
docEl.appendChild(document.createElement("table"));
docEl.offsetWidth;
</script>
</html>
|