263359-4.html (464B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>change direction of pre with bidi text</title> 5 <meta charset="UTF-8"> 6 <script type="text/javascript"> 7 8 function boom() 9 { 10 document.getElementById("w").style.direction="rtl"; 11 } 12 13 </script> 14 </head> 15 <body onload="boom();"> 16 <pre id="w"> can_be_executable=TRUE 17 [he]description=סוג לא ידוע 18 description=Unknown type 19 [ar]description=نوع غير معروف 20 [az]description=Namə'lum növ 21 </pre> 22 </body> 23 </html>