mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
21 lines
588 B
HTML
21 lines
588 B
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>bidi overrides</title>
|
||
|
</head><body>
|
||
|
&#x202d; forces ltr<br />
|
||
|
&#x202e; forces rtl<br />
|
||
|
&#x202c; restores bidi<br />
|
||
|
<blockquote>
|
||
|
this is ltr: ‭hello‬<br />
|
||
|
this is rtl: ‮hello‬
|
||
|
</blockquote>
|
||
|
<bdo dir="LTR"> forces ltr<br />
|
||
|
<bdo dir="RTL"> forces rtl<br />
|
||
|
</bdo> restores bidi<br />
|
||
|
<blockquote>
|
||
|
this is ltr: <bdo dir="LTR">hello</bdo><br />
|
||
|
this is rtl: <bdo dir="RTL">hello</bdo>
|
||
|
</blockquote>
|
||
|
</body>
|
||
|
</html>
|