element-paint-sharpness-02b.html 575 B

123456789101112131415161718
  1. <!--
  2. Any copyright is dedicated to the Public Domain.
  3. http://creativecommons.org/licenses/publicdomain/
  4. Test that background-size and zooming don't degrade rendering sharpness even when rendering to a surface.
  5. -->
  6. <!DOCTYPE html>
  7. <html>
  8. <body style="margin:0">
  9. <div style="width:400px; height:400px; background-image:-moz-element(#e);"></div>
  10. <div style="overflow:hidden; height:0">
  11. <div id="e" style="width:200px; height:200px;">
  12. <div style="width:200px; height:200px; border-radius:100%; background-color:lime;"></div>
  13. </div>
  14. </div>
  15. </body>
  16. </html>