Test for bug 828054

This commit is contained in:
Simon Montagu 2013-01-13 08:09:00 -08:00
parent b99e3d5e1c
commit 4edda70478
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var outer = document.createElement("div");
outer.setAttribute("dir", "auto");
var inner = document.createElement("div");
inner.appendChild(document.createTextNode("A"));
outer.appendChild(inner);
inner.setAttribute("dir", "auto");
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -125,3 +125,4 @@ load 822691.html
load 822723.html
load 824719.html
load 827190.html
load 828054.html