tor-browser

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

column-fill-balance-orthog-block-001.html (1715B)


      1 <!DOCTYPE html>
      2 
      3 <meta charset="UTF-8">
      4 
      5  <title>CSS Writing Modes Test: 'column-fill: balance' of a vertical writing mode block in orthogonal context</title>
      6 
      7  <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
      8  <link rel="help" href="https://www.w3.org/TR/css3-multicol/#cf">
      9  <link rel="help" href="https://www.w3.org/TR/css-writing-modes-4/#auto-multicol">
     10  <link rel="match" href="reference/column-fill-balance-orthog-block-001-ref.html">
     11 
     12  <!--
     13 
     14  Issue 719014: column-fill: balance of a vertical block in orthogonal context incorrectly rendered
     15  https://bugs.chromium.org/p/chromium/issues/detail?id=719014
     16 
     17  -->
     18 
     19  <meta content="" name="flags">
     20  <meta name="assert" content="This test checks if a multi-column container with 'column-fill' set to 'balance' will not break an unbreakable run of text and will honor min-content inline size of a block that has its writing mode set to 'vertical-rl'. In this test, the word 'TEXT' should not break, even if div#multi-col's 'height' is set to '49px'.">
     21 
     22  <style>
     23  div#multi-col
     24    {
     25      background-color: yellow; /* Not part of the test */
     26      columns: 2 auto;
     27      column-fill: balance; /* Balance content equally between columns, if possible. */
     28      height: 250px; /* more than enough to display "TEXT" */
     29    }
     30 
     31  div#unbreakable-block
     32    {
     33      background-color: lime; /* Not part of the test */
     34      font-size: 50px;
     35      line-height: 1.2; /* Not part of the test */
     36      writing-mode: vertical-rl;
     37    }
     38  </style>
     39 
     40  <p>Test passes if the word "TEXT" is unbroken and rotated 90 degrees clock-wise.
     41 
     42  <div id="multi-col">
     43    <div id="unbreakable-block">TEXT</div>
     44  </div>