mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
24 lines
361 B
HTML
24 lines
361 B
HTML
<!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>
|