tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

bidi-span-002.html (506B)


      1 <!DOCTYPE html>
      2 <title>CSS Test: Inline boxes should not affect bidi reordering</title>
      3 <link rel="match" href="bidi-span-002-ref.html">
      4 <link rel="help" href="https://drafts.csswg.org/css2/visuren.html#direction">
      5 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
      6 <style>
      7 body {
      8  text-align: left;
      9  direction: rtl;
     10 }
     11 
     12 .c1:before {
     13  content: '(';
     14 }
     15 
     16 .c1:after {
     17  content: ')';
     18 }
     19 
     20 .c2:after {
     21  content: '';
     22 }
     23 </style>
     24 <body><span class="c1"><span class="c2"></span></span></body>