Test for bug 841205

This commit is contained in:
Simon Montagu 2013-02-27 09:32:48 +02:00
parent 09a396dc5f
commit 19bb19d1fc
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
var b = document.createElement('bdi');
var c = document.createElement('div');
var d = document.createElement('div');
b.appendChild(c);
c.appendChild(d);
b.removeChild(c);
d.appendChild(b);
document.createElement('div').appendChild(c);
b.appendChild(document.createElement('div'));
b.setAttribute('dir', "auto");
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -129,3 +129,4 @@ load 827190.html
load 828054.html
load 829428.html
load 836890.html
load 841205.html