tor-browser

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

column-span-bidi-1.html (595B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3  <meta charset="utf-8">
      4  <style>
      5  h3 {
      6    column-span: all;
      7  }
      8  html {
      9    columns: 3em;
     10  }
     11  </style>
     12  <script>
     13  function go() {
     14    document.body.offsetHeight;
     15    document.body.appendChild(a);
     16    document.documentElement.removeAttribute("class");
     17  }
     18  </script>
     19  <body onload=go()>
     20    <h3>
     21      <div id="a"></div>
     22    </h3>
     23    <!-- The following content will be in a -moz-column-content frame where it's
     24         parent is a hard continuation of a nsColumnSetFrame. -->
     25    ltr
     26    ltr
     27    <div dir="rtl">rtl</div>
     28  </body>
     29 </html>