tor-browser

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

list-item-taller-than-opportunity-001.html (698B)


      1 <!DOCTYPE html>
      2 <title>List item taller than the first opportunity should not crash</title>
      3 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
      4 <link rel="help" href="https://www.w3.org/TR/CSS22/visuren.html#float-position" title="9.5.1 Positioning the float: the 'float' property">
      5 <link rel="help" href="http://crbug.com/967997">
      6 <script src="/resources/testharness.js"></script>
      7 <script src="/resources/testharnessreport.js"></script>
      8 <body>
      9  <div style="float: left; width: 5px; height: 5px;"></div>
     10  <div style="clear: left; float: left; width: 10px; height: 5px;"></div>
     11  <ul>
     12    <li></li>
     13  </ul>
     14 <script>
     15 test(() => {}, "Layout should not crash");
     16 </script>
     17 </body>