bugzilla-6473.html 940 B

12345678910111213141516171819202122232425262728293031
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  2. "http:/html4/strict.dtd">
  3. <html lang="en">
  4. <head>
  5. <script src="resources/text-based-repaint.js"></script>
  6. <script type="text/javascript">
  7. function repaintTest()
  8. {
  9. document.getElementById('allcontent').style.overflow = '';
  10. }
  11. </script>
  12. </head>
  13. <body onload="runRepaintAndPixelTest()">
  14. <p><b>BUG ID:</b> <a href="https://bugs.webkit.org/show_bug.cgi?id=6473">Bugzilla bug 6473</a> REGRESSION: Serious painting problems on new iLife and iWorks pages</p>
  15. <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b>
  16. A green rectangle containing the word SUCCESS will show below.
  17. </p>
  18. <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b>
  19. A green rectangle will not show below.
  20. </p>
  21. <div>
  22. <div id="allcontent" style="overflow: auto;">
  23. <p style="position: relative; background: lime;">
  24. SUCCESS
  25. </p>
  26. </div>
  27. </div>
  28. </body>
  29. </html>