diff options
Diffstat (limited to 'layout/reftests/bidi/83958-2b.html')
-rw-r--r-- | layout/reftests/bidi/83958-2b.html | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/layout/reftests/bidi/83958-2b.html b/layout/reftests/bidi/83958-2b.html new file mode 100644 index 0000000000..d6c8c2f651 --- /dev/null +++ b/layout/reftests/bidi/83958-2b.html @@ -0,0 +1,33 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="UTF-8"> + <title>Bidirectional Text Test 2 - CSS</title> + <style> +p { font-family: monospace; text-align: left; } +.embed { unicode-bidi: embed; } +.override { unicode-bidi: bidi-override; } +.rtl { direction: rtl; } +.ltr { direction: ltr; } + </style> + </head> +<!-- Testcases based on https://dbaron.org/css/test/bidi2 by L. David Baron. --> + <body> + <p>אבג</p> + <p class="embed">אבג</p> + <p class="override">אבג</p> + <p>אבג ABC דהו</p> + <p class="rtl">אבג ABC דהו</p> + <p>אבג ABC דהו DEF זחט</p> + <p>אבג <span>ABC דהו</span> DEF זחט</p> + <p>אבג <span class="ltr embed">ABC דהו DEF</span> זחט</p> + <p>אבג <span class="rtl embed">ABC דהו DEF</span> זחט</p> + <p>אבג <span class="rtl embed">ABC דהו</span> DEF זחט</p> + <p>אבג <span class="rtl override">ABC דהו</span> DEF זחט</p> + <p>אבג <span class="ltr override">ABC דהו</span> DEF זחט</p> + <p class="rtl">אבג <span class="ltr override">ABC דהו</span> DEF זחט</p> + <p>אבג ABC דהו DEF GHI זחט</p> + <p>אבג <span class="rtl override">ABC דהו DEF</span> GHI זחט</p> + <p>אבג ABC <span class="rtl override">דהו DEF</span> GHI זחט</p> + </body> +</html> |