mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
263 B
HTML
17 lines
263 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.getElementById("k").style.display = "-moz-inline-stack";
|
|
}
|
|
</script>
|
|
|
|
<body onload="boom();">
|
|
|
|
<div style="display: table;"><div id="k" style="height: 18000000px;">x</div></div>
|
|
|
|
</body>
|
|
</html>
|