Test for bug 844404

This commit is contained in:
Simon Montagu 2013-02-27 09:32:50 +02:00
parent 880ff19a9f
commit f24942c07e
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<script>
function boom()
{
d.setAttribute('dir', "auto");
c.setAttribute('dir', "auto");
d.removeAttribute('dir');
c.removeAttribute('dir');
b.setAttribute('dir', "auto");
}
</script>
</head>
<body onload="boom();">
<div id="a" dir="auto"><div id="b"><div id="c"><div id="d"></div></div></div></div>
</body>
</html>

View File

@ -130,3 +130,4 @@ load 828054.html
load 829428.html
load 836890.html
load 841205.html
load 844404.html