tor-browser

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

grouping-li-reftest-list-owner-skip-no-boxes-ref.html (866B)


      1 <!DOCTYPE html>
      2 <meta charset="utf-8">
      3 <title>list owner calculation skips elements that do not generate layout boxes</title>
      4 <link rel="author" title="Domenic Denicola" href="mailto:d@domenic.me">
      5 <link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#ordinal-value">
      6 <link rel="help" href="https://html.spec.whatwg.org/multipage/semantics.html#list-owner">
      7 
      8 <p>This test matches if the list displays similar to the following</p>
      9 
     10 <pre>1. A
     11 2. B
     12 3. C
     13 4. D
     14 5. E
     15 6. F
     16 7. G
     17 8. H
     18 9. I
     19 10. J
     20     1. K
     21     2. L</pre>
     22 
     23 <hr>
     24 
     25 <ol>
     26  <li value="1">A</li>
     27  <li value="2">B</li>
     28  <li value="3">C</li>
     29  <li value="4">D</li>
     30  <li value="5">E</li>
     31  <li value="6">F</li>
     32  <li value="7">G</li>
     33  <li value="8">H</li>
     34  <li value="9">I</li>
     35  <li value="10">
     36    J
     37    <ol>
     38      <li value="1">K</li>
     39      <li value="2">L</li>
     40    </ol>
     41  </li>
     42 </ol>