This commit is contained in:
Simon Montagu 2013-02-27 09:32:50 +02:00
Родитель 19bb19d1fc
Коммит 311e1a3474
2 изменённых файлов: 24 добавлений и 0 удалений

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

@ -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>

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

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