mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
248 B
HTML
19 lines
248 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function z()
|
||
|
{
|
||
|
document.getElementById("x").style.display = "table";
|
||
|
document.body.style.display = "table-row";
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="z()">
|
||
|
|
||
|
<p style="display: table-row"></p>
|
||
|
|
||
|
<p id="x"></p>
|
||
|
|
||
|
</body>
|
||
|
</html>
|