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.html (988B)


      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 <link rel="match" href="grouping-li-reftest-list-owner-skip-no-boxes-ref.html">
      9 
     10 <p>This test matches if the list displays similar to the following</p>
     11 
     12 <pre>1. A
     13 2. B
     14 3. C
     15 4. D
     16 5. E
     17 6. F
     18 7. G
     19 8. H
     20 9. I
     21 10. J
     22     1. K
     23     2. L</pre>
     24 
     25 <hr>
     26 
     27 <ol>
     28  <li>A</li>
     29  <li>B</li>
     30  <div>
     31    <li>C</li>
     32    <span>
     33      <li>D</li>
     34      <li>E</li>
     35    </span>
     36    <ol style="display: contents;">
     37      <li>F</li>
     38      <li>G</li>
     39    </ol>
     40  </div>
     41  <li>H</li>
     42  <ol style="display: contents;">
     43    <li>I</li>
     44    <li>
     45      J
     46      <ol>
     47        <li>K</li>
     48        <li>L</li>
     49      </ol>
     50    </li>
     51  </ol>
     52 </ol>