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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bidi/unicode-bidi-isolate-aharon.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,74 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html><head>
     1.6 +<title>Test cases for unicode-bidi:isolate</title>
     1.7 +<style>
     1.8 +  .isolate {
     1.9 +    unicode-bidi: -webkit-isolate;
    1.10 +    unicode-bidi: -moz-isolate;
    1.11 +    unicode-bidi: isolate;
    1.12 +  }
    1.13 +</style>
    1.14 +</head><body>
    1.15 +opposite-to-base isolate followed by number.
    1.16 +<div>
    1.17 +  <div class="test">
    1.18 +    <span class="isolate">&#x05D0;</span> (3 reviews)
    1.19 +  </div>
    1.20 +</div>
    1.21 +<hr>
    1.22 +opposite-to-base isolate with opposite-to-base text before it with neutrals in between.
    1.23 +<div>
    1.24 +  <div class="test">
    1.25 +    &#x05D0;: <span class="isolate">&#x05D1;</span>
    1.26 +  </div>
    1.27 +</div>
    1.28 +<hr>
    1.29 +opposite-to-base isolate with opposite-to-base text before it and nothing in between.
    1.30 +<div>
    1.31 +  <div class="test">
    1.32 +    &#x05D0;<span class="isolate">&#x05D1;</span>
    1.33 +  </div>
    1.34 +</div>
    1.35 +<hr>
    1.36 +two opposite-to-base isolates with neutrals in between.
    1.37 +<div>
    1.38 +  <div class="test">
    1.39 +    <span class="isolate">&#x05D0;</span> = <span class="isolate">&#x05D1;</span>
    1.40 +  </div>
    1.41 +</div>
    1.42 +<hr>
    1.43 +two opposite-to-base isolates with nothing in between.
    1.44 +<div>
    1.45 +  <div class="test">
    1.46 +    <span class="isolate">&#x05D0;</span><span class="isolate">&#x05D1;</span>
    1.47 +  </div>
    1.48 +</div>
    1.49 +<hr>
    1.50 +same-as-base isolate preceded by opposite-to-base text and followed by number
    1.51 +<div dir="rtl">
    1.52 +  <div class="test">
    1.53 +    see <span class="isolate">&#x05D0;</span><sup>3</sup>
    1.54 +  </div>
    1.55 +</div>
    1.56 +<hr>
    1.57 +same-as-base isolate surrounded by opposite-to-base text
    1.58 +<div dir="rtl">
    1.59 +  <div class="test">
    1.60 +    with <span class="isolate">&#x05D0;</span>=<span class="isolate">&#x05D1;</span> everywhere
    1.61 +  </div>
    1.62 +</div>
    1.63 +<hr>
    1.64 +chimeric isolate surrounded by chimeric text
    1.65 +<div>
    1.66 +  <div class="test">
    1.67 +    about <span class="isolate">that &#x05D0;</span> - &#x05D1;
    1.68 +  </div>
    1.69 +</div>
    1.70 +<hr>
    1.71 +nested chimeric isolates surrounded by chimeric text
    1.72 +<div>
    1.73 +  <div class="test">
    1.74 +    about <span class="isolate">that <span class="isolate">strange &#x05D0;</span> - &#x05D1;</span> - &#x05D2;
    1.75 +  </div>
    1.76 +</div>
    1.77 +</body></html>

mercurial