mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
13 lines
206 B
HTML
13 lines
206 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
function boom()
|
||
|
{
|
||
|
document.getElementById("div").setAttribute("dir", "rtl");
|
||
|
}
|
||
|
</script>
|
||
|
<body onload="boom()">
|
||
|
<div id="div" style="width: 0;"> Foo a bar baz</div>
|
||
|
</body>
|
||
|
</html>
|