mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
25 lines
464 B
HTML
25 lines
464 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>change direction of pre with bidi text</title>
|
|
<meta charset="UTF-8">
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("w").style.direction="rtl";
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
<pre id="w"> can_be_executable=TRUE
|
|
[he]description=סוג לא ידוע
|
|
description=Unknown type
|
|
[ar]description=نوع غير معروف
|
|
[az]description=Namə'lum növ
|
|
</pre>
|
|
</body>
|
|
</html>
|
|
|