Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <html> | |
| 3 <head> | |
|
pdr.
2014/10/14 23:56:59
Nit: inconsistent indentation.
| |
| 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 text-rendering: optimizeLegibility; | |
|
eae
2014/10/15 00:30:37
In this file this style rule forces complex text.
| |
| 13 } | |
| 14 div { | |
| 15 clear: both; | |
| 16 } | |
| 17 </style> | |
| 18 </head> | |
| 19 <body> | |
| 20 <ul> | |
| 21 <li><a href="#">ಅಡುಗೆ-ಆಹಾರ </a></li> | |
| 22 </ul> | |
| 23 <div> </div> | |
| 24 <p> | |
| 25 Complex text with trailing space test. | |
| 26 <br> | |
| 27 Element above should not wrap and should render the same when | |
| 28 forced to use the complex path. | |
| 29 </p> | |
| 30 </body> | |
| 31 </html> | |
| OLD | NEW |