disable-fontinfl-on-mobile-ref.html 527 B

1234567891011121314151617181920
  1. <!--
  2. Without the patch for bug 706198, this website should not show up as inflated. That means
  3. that with a 450px container, the minimum font size with 15em per line should be 30px.
  4. So, we map 0px-45px into 30px-45px, and thus 12px gets mapped to 34px.
  5. With the patch, the text should be uninflated, which means that 12px should still be
  6. 12px.
  7. -->
  8. <!DOCTYPE html>
  9. <html>
  10. <head>
  11. <style>
  12. p { font-size: 12px; line-height: 1.0;}
  13. </style>
  14. <body>
  15. <p>Some uninflated text.</p>
  16. </body>
  17. </head>
  18. </html>