Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <html> | |
| 2 <head> | |
| 3 <style> | |
| 4 /* This font-face should not affect rendering */ | |
| 5 @font-face { | |
| 6 font-family: f; | |
| 7 src: url("resources/no-latin-glyph-font.svg#Font") format(svg); | |
| 8 unicode-range: U+3042; | |
| 9 } | |
| 10 | |
| 11 @font-face { | |
| 12 font-family: f; | |
| 13 src: url("resources/graffiti.svg#SVGraffiti") format(svg); | |
| 14 } | |
| 15 | |
| 16 #test { | |
| 17 font-family: f, sans-serif; | |
| 18 font-size: 40px; | |
| 19 } | |
| 20 </style> | |
| 21 </head> | |
| 22 <body> | |
| 23 | |
| 24 <p id='test'>This text should be rendered with SVGraffiti.</p> | |
| 25 | |
| 26 </body> | |
| 27 </html> | |
| OLD | NEW |