layout/reftests/bidi/746987-3.html

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bidi/746987-3.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,35 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html>
     1.6 +  <head>
     1.7 +    <meta charset="utf-8"/>
     1.8 +    <style>
     1.9 +      body {
    1.10 +        font-size:2em;
    1.11 +        text-align:left;
    1.12 +      }
    1.13 +      .test {
    1.14 +        border: medium solid gray;
    1.15 +        padding: 10px;
    1.16 +        width: 400px;
    1.17 +        margin: 20px;
    1.18 +      }
    1.19 +      .plaintext {
    1.20 +        unicode-bidi: -moz-plaintext;
    1.21 +        unicode-bidi: -webkit-plaintext;
    1.22 +        unicode-bidi: plaintext;
    1.23 +      }
    1.24 +      .isolate {
    1.25 +        unicode-bidi: -moz-isolate;
    1.26 +        unicode-bidi: -webkit-isolate;
    1.27 +        unicode-bidi: isolate;
    1.28 +      }
    1.29 +    </style>
    1.30 +    <title>unicode-bidi:plaintext does not apply to embedded unicode-bidi:isolate</title>
    1.31 +  </head>
    1.32 +  <body>
    1.33 +    <div class="test">
    1.34 +      <span class="plaintext"><span class="isolate">&#x05D0;-></span>=></span>
    1.35 +      <span class="plaintext"><span>&#x05D1;-></span>=></span>
    1.36 +    </div>
    1.37 +  </body>
    1.38 +</html>

mercurial