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.)

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

mercurial