mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|