Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <style> | |
| 6 li, a { | |
| 7 display: inline; | |
| 8 float: left; | |
| 9 font-family: Tunga; | |
| 10 font-size: 12px; | |
| 11 border: 1px solid black; | |
| 12 /* optimizeLegibility forces complex text */ | |
| 13 text-rendering: optimizeLegibility; | |
| 14 | |
| 15 } | |
| 16 div { | |
| 17 clear: both; | |
| 18 } | |
| 19 </style> | |
| 20 </head> | |
| 21 <body> | |
| 22 <ul> | |
| 23 <li><a href="#">ಅಡುಗೆ-ಆಹಾರ </a></li> | |
| 24 </ul> | |
| 25 <div> </div> | |
| 26 <p> | |
| 27 Complex text with trailing space test. | |
| 28 <br> | |
| 29 Element above should not wrap and should render the same when | |
| 30 forced to use the complex path. | |
| 31 </p> | |
| 32 </body> | |
| 33 </html> | |
| OLD | NEW |