tor-browser

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

multicol-span-all-011.html (976B)


      1 <!DOCTYPE html>
      2 <html>
      3  <meta charset="utf-8">
      4  <title>CSS Multi-column Layout Test: Test a bidi-override multi-column container with a dir=rtl column-span:all child</title>
      5  <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      6  <link rel="author" title="Mozilla" href="http://www.mozilla.org/">
      7  <link rel="help" href="https://drafts.csswg.org/css-multicol-1/#column-span">
      8  <link rel="match" href="multicol-span-all-011-ref.html">
      9  <meta name="assert" content="This test checks that the text is correctly split by 'dir=rtl' column-span:all child in a bidi-override multi-column container.">
     10 
     11  <style>
     12  article {
     13    column-count: 2;
     14    column-rule: 6px solid;
     15    width: 400px;
     16    outline: 1px solid black;
     17    unicode-bidi: bidi-override; /* Needed to trigger bidi resolution. */
     18  }
     19  h3 {
     20    column-span: all;
     21    outline: 1px solid blue;
     22  }
     23  </style>
     24 
     25  <article>
     26    <div>before<h3 dir="rtl">spanner</h3>after</div>
     27  </article>
     28 </html>