layout/reftests/bidi/unicode-bidi-isolate-aharon.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <!DOCTYPE html>
     2 <html><head>
     3 <title>Test cases for unicode-bidi:isolate</title>
     4 <style>
     5   .isolate {
     6     unicode-bidi: -webkit-isolate;
     7     unicode-bidi: -moz-isolate;
     8     unicode-bidi: isolate;
     9   }
    10 </style>
    11 </head><body>
    12 opposite-to-base isolate followed by number.
    13 <div>
    14   <div class="test">
    15     <span class="isolate">&#x05D0;</span> (3 reviews)
    16   </div>
    17 </div>
    18 <hr>
    19 opposite-to-base isolate with opposite-to-base text before it with neutrals in between.
    20 <div>
    21   <div class="test">
    22     &#x05D0;: <span class="isolate">&#x05D1;</span>
    23   </div>
    24 </div>
    25 <hr>
    26 opposite-to-base isolate with opposite-to-base text before it and nothing in between.
    27 <div>
    28   <div class="test">
    29     &#x05D0;<span class="isolate">&#x05D1;</span>
    30   </div>
    31 </div>
    32 <hr>
    33 two opposite-to-base isolates with neutrals in between.
    34 <div>
    35   <div class="test">
    36     <span class="isolate">&#x05D0;</span> = <span class="isolate">&#x05D1;</span>
    37   </div>
    38 </div>
    39 <hr>
    40 two opposite-to-base isolates with nothing in between.
    41 <div>
    42   <div class="test">
    43     <span class="isolate">&#x05D0;</span><span class="isolate">&#x05D1;</span>
    44   </div>
    45 </div>
    46 <hr>
    47 same-as-base isolate preceded by opposite-to-base text and followed by number
    48 <div dir="rtl">
    49   <div class="test">
    50     see <span class="isolate">&#x05D0;</span><sup>3</sup>
    51   </div>
    52 </div>
    53 <hr>
    54 same-as-base isolate surrounded by opposite-to-base text
    55 <div dir="rtl">
    56   <div class="test">
    57     with <span class="isolate">&#x05D0;</span>=<span class="isolate">&#x05D1;</span> everywhere
    58   </div>
    59 </div>
    60 <hr>
    61 chimeric isolate surrounded by chimeric text
    62 <div>
    63   <div class="test">
    64     about <span class="isolate">that &#x05D0;</span> - &#x05D1;
    65   </div>
    66 </div>
    67 <hr>
    68 nested chimeric isolates surrounded by chimeric text
    69 <div>
    70   <div class="test">
    71     about <span class="isolate">that <span class="isolate">strange &#x05D0;</span> - &#x05D1;</span> - &#x05D2;
    72   </div>
    73 </div>
    74 </body></html>

mercurial