bugzilla-3509.html 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html lang="en">
  3. <head>
  4. <script src="resources/text-based-repaint.js" type="text/javascript"></script>
  5. <script type="text/javascript">
  6. function repaintTest()
  7. {
  8. document.getElementById('im').style.width = '100px';
  9. }
  10. </script>
  11. </head>
  12. <body onload="runRepaintAndPixelTest();">
  13. <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=3509">Bugzilla bug 3509</a> REGRESSION(125-412) Portion of nested table is not painted correctly on cafepress site</p>
  14. <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b>
  15. The blue rectangle will change into a square.
  16. </p>
  17. <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
  18. The blue rectangle will change into a shape that is not square.
  19. </p>
  20. <table width="100%">
  21. <tr>
  22. <td style="width: 100px;">
  23. <div id="qu" style="margin-top: 2.0__qem;"></div>
  24. <div id="im" style="height: 100px; width: 50px; background: blue;">&nbsp;</div>
  25. </td>
  26. </tr>
  27. </table>
  28. </body>
  29. </html>