mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
304 B
HTML
19 lines
304 B
HTML
<html>
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var het = document.createTextNode(String.fromCharCode(0x05D7)); // hebrew letter het
|
|
document.getElementById("s").appendChild(het);
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom();" dir="rtl">
|
|
|
|
<div><span id="s">A</span><span> </span>B</div>
|
|
|
|
</body>
|
|
|
|
</html>
|