mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
20 lines
333 B
HTML
20 lines
333 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
var outer = document.createElement("span");
|
|
var inner = document.createElement("span");
|
|
outer.dir = "auto";
|
|
outer.appendChild(inner);
|
|
inner.appendChild(document.createTextNode("x"));
|
|
inner.dir = "auto";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|