blob: 9022837bf2c8b34ab87e1387fc8e4adb1257edfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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>
|