bug1379306-ref.html (543B)
1 <!DOCTYPE html> 2 <title>Table Cell Testcase, bug 1379306</title> 3 <style> 4 table.collapse { 5 border-collapse: collapse; 6 } 7 td { 8 border: 20px solid #aaa; 9 width: 120px; 10 height: 150px; 11 } 12 .first { 13 background-color: #000; 14 position: absolute; 15 top: 20px; 16 left: 20px; 17 height: 10px; 18 width: 20px 19 } 20 </style> 21 <h1>Table Cell Testcase, bug 1379306</h1> 22 23 <div style="position: relative;"> 24 <table class="collapse"> 25 <tr> 26 <td> 27 <div class="first"></div> 28 </td> 29 </tr> 30 </table> 31 </div>