tor-browser

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

multicol-span-all-008.html (999B)


      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-008-ref.html">
      9  <meta name="assert" content="This test checks the page is rendered correctly for a bidi-override multi-column container with a dir=rtl column-span:all child.">
     10 
     11  <style>
     12  article {
     13    column-count: 3;
     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>block1</div>
     27    <h3 dir="rtl">spanner</h3>
     28    <div>block2</div>
     29  </article>
     30 </html>