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