tor-browser

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

rowspan-0.html (533B)


      1 <!DOCTYPE html>
      2 <title>rowspan=0</title>
      3 <script src=/resources/testharness.js></script>
      4 <script src=/resources/testharnessreport.js></script>
      5 <table>
      6 <tr>
      7  <td rowspan="0" id="test-cell">x
      8  <td id="ref-cell">x
      9 <tr>
     10  <td>x
     11 </table>
     12 <script>
     13 const testCell = document.getElementById('test-cell');
     14 const refCell = document.getElementById('ref-cell');
     15 
     16 test(() => {
     17  assert_greater_than(testCell.clientHeight, refCell.clientHeight);
     18 }, 'clientHeight');
     19 
     20 test(() => {
     21  assert_equals(testCell.rowSpan, 0);
     22 }, 'rowSpan');
     23 </script>