disable-fontinfl-on-mobile.html 663 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
  3. <!--
  4. Without the patch for bug 706198, this website should not show up as inflated. That means
  5. that with a 450px container, the minimum font size with 15em per line should be 30px.
  6. So, we map 0px-45px into 30px-45px, and thus 12px gets mapped to 34px.
  7. With the patch, the text should be uninflated, which means that 12px should still be
  8. 12px.
  9. -->
  10. <html>
  11. <head>
  12. <style>
  13. p { font-size: 12px; line-height: 1.0;}
  14. </style>
  15. <body>
  16. <p>Some uninflated text.</p>
  17. </body>
  18. </head>
  19. </html>