mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
12 lines
253 B
HTML
12 lines
253 B
HTML
<!-- 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>
|