| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 | 4 |
| 5 <meta name="viewport" content="width=800"> | 5 <meta name="viewport" content="width=800"> |
| 6 <style> | 6 <style> |
| 7 html { font-size: 16px; } | 7 html { font-size: 16px; } |
| 8 body { width: 800px; margin: 0; overflow-y: hidden; } | 8 body { width: 800px; margin: 0; overflow-y: hidden; } |
| 9 </style> | 9 </style> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 <div style="width: 400px"> | 27 <div style="width: 400px"> |
| 28 This text should be autosized to 20px computed font-size as it is combin
ed with its narrow siblings and the maximum width is 400px. | 28 This text should be autosized to 20px computed font-size as it is combin
ed with its narrow siblings and the maximum width is 400px. |
| 29 </div> | 29 </div> |
| 30 <div style="width: 240px"> | 30 <div style="width: 240px"> |
| 31 This text should be autosized to 20px computed font-size as it is combin
ed with its narrow siblings and the maximum width is 400px. | 31 This text should be autosized to 20px computed font-size as it is combin
ed with its narrow siblings and the maximum width is 400px. |
| 32 </div> | 32 </div> |
| 33 </div> | 33 </div> |
| 34 | 34 |
| 35 </body> | 35 </body> |
| 36 </html> | 36 </html> |
| OLD | NEW |