mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
338 B
HTML
20 lines
338 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var outer = document.createElement("span");
|
|
outer.dir = "auto";
|
|
var inner = document.createElement("span");
|
|
outer.appendChild(inner);
|
|
inner.appendChild(document.createTextNode("\u202B"));
|
|
inner.dir = "auto";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|