tor-browser

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

chrome-rowspan-bug.html (934B)


      1 <!doctype html>
      2 <script src='/resources/testharness.js'></script>
      3 <script src='/resources/testharnessreport.js'></script>
      4 <title>caption</title>
      5 <meta name="flags" content="ahem">
      6 <link rel="author" title="Aleks Totic" href="atotic@chromium.org" />
      7 <link rel="help" href="https://crbug.com/1180592"/>
      8 <style>
      9  main table {
     10    border-spacing: 0;
     11  }
     12  main table td {
     13    border: 1px solid black;
     14    padding: 0;
     15    width: 50px;
     16    height: 25px;
     17  }
     18 </style>
     19 
     20 <main>
     21  <table>
     22    <tbody>
     23      <tr>
     24        <td></td>
     25        <td id="target" rowspan=5></td>
     26        <td></td>
     27        <td></td>
     28      </tr>
     29      <tr>
     30        <td rowspan=5></td>
     31        <td rowspan=5></td>
     32        <td></td>
     33      </tr>
     34      <tr>
     35        <td></td>
     36      </tr>
     37    </tbody>
     38  </table>
     39 </main>
     40 
     41 <script>
     42  test(_ => {
     43    assert_equals(document.body.querySelector("#target").offsetHeight, 81);
     44  }, "table tracks correct use of rowspan");
     45 </script>