mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
282 B
HTML
18 lines
282 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.getElementById("div").style.letterSpacing = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom()" style="font-family: monospace; width: 3em;">
|
|
<div id="div" style="white-space: pre-wrap; letter-spacing: 1em;">
|
|
x
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|