Testcase from bug 847127, r=ehsan

This commit is contained in:
Simon Montagu 2013-03-07 22:53:07 +02:00
Родитель 2c777f871b
Коммит 46cd9600a9
2 изменённых файлов: 20 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,19 @@
<!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>

Просмотреть файл

@ -131,3 +131,4 @@ load 829428.html
load 836890.html
load 841205.html
load 844404.html
load 847127.html