mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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>
|
|
|