mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
19 lines
470 B
HTML
19 lines
470 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom() {
|
|
var div = document.getElementById('div');
|
|
div.appendChild(document.createTextNode(String.fromCharCode(8238)));
|
|
div.appendChild(document.createTextNode(String.fromCharCode(50377)));
|
|
div.appendChild(document.createTextNode(String.fromCharCode(50)));
|
|
div.textContent = div.textContent.slice(1);
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom()">
|
|
<div id="div" style="word-spacing:2px; text-align:right">x</div>
|
|
</body>
|
|
</html>
|