bug1379306.html 487 B

123456789101112131415161718192021222324252627282930
  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. position: relative;
  12. }
  13. div {
  14. background-color: #000;
  15. position: absolute;
  16. top: 0;
  17. left: 0;
  18. height: 10px;
  19. width: 20px
  20. }
  21. </style>
  22. <h1>Table Cell Testcase, bug 1379306</h1>
  23. <table class="collapse">
  24. <tr>
  25. <td>
  26. <div></div>
  27. </td>
  28. </tr>
  29. </table>