bug1379306-ref.html 541 B

12345678910111213141516171819202122232425262728293031
  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. <div style="position: relative;">
  23. <table class="collapse">
  24. <tr>
  25. <td>
  26. <div class="first"></div>
  27. </td>
  28. </tr>
  29. </table>
  30. </div>