/
githubmirror
/
servo
Обзор
Документация
Войти
/
githubmirror
/
servo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
tests/html/text_rendering.html
26 строк
443 B
Patrick Walton
layout: Implement `text-rendering` per SVG 1.1 § 11.7.4.
08 янв 2015, 23:32
08 янв 2015, 23:32
53b74ae
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <style> body { font-size: 24pt; font-family: "PT Sans"; font-weight: bold; } #a { text-rendering: optimizelegibility; } #b { text-rendering: geometricprecision; } #c { text-rendering: optimizespeed; } </style> </head> <body> <div id=a>Harry finally caught the Snitch.</div> <div id=b>Harry finally caught the Snitch.</div> <div id=c>Harry finally caught the Snitch.</div> </body> </html>