mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
424 B
HTML
19 lines
424 B
HTML
|
<!DOCTYPE html>
|
||
|
<html style="display: table;">
|
||
|
<head>
|
||
|
<script type="text/javascript">
|
||
|
|
||
|
function boom()
|
||
|
{
|
||
|
document.documentElement.appendChild(document.body);
|
||
|
document.documentElement.offsetHeight;
|
||
|
document.documentElement.appendChild(document.body);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="boom();" style="-moz-column-count: 2;"><div style="height: 1px;"></div><span style="display: inline-block;"></span></body>
|
||
|
|
||
|
</html>
|