mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
17 lines
306 B
HTML
17 lines
306 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.getElementById("div").style.letterSpacing = "";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom()" style="font-family: monospace; width: 20em;">
|
|
<div id="div" style="white-space: pre-wrap; letter-spacing: 3em;">
|
|
x x x x x x
|
|
x x x x x x
|
|
</div>
|
|
</body>
|
|
</html>
|