• Home
  • History
  • Annotate
  • only in /external/chromium_org/third_party/ots/
NameDateSize

..03-Jan-20144 KiB

.ignores03-Jan-201425

codereview.settings03-Jan-2014150

gyp_ots03-Jan-2014983

include/03-Jan-20144 KiB

INSTALL03-Jan-2014864

LICENSE03-Jan-20141.5 KiB

ots-common.gypi03-Jan-20141.6 KiB

ots-standalone.gyp03-Jan-20144.2 KiB

ots.gyp03-Jan-2014842

ots.target.darwin-arm.mk03-Jan-20146.6 KiB

ots.target.darwin-mips.mk03-Jan-20146.5 KiB

ots.target.darwin-x86.mk03-Jan-20146.6 KiB

ots.target.linux-arm.mk03-Jan-20146.6 KiB

ots.target.linux-mips.mk03-Jan-20146.5 KiB

ots.target.linux-x86.mk03-Jan-20146.6 KiB

README03-Jan-2014884

src/03-Jan-20144 KiB

test/03-Jan-20144 KiB

third_party/03-Jan-20144 KiB

tools/03-Jan-20144 KiB

README

1Sanitiser for OpenType
2----------------------
3
4(Idea from Alex Russell)
5
6The CSS font-face property[1] is great for web typography. Having to use images
7in order to get the correct typeface is a great sadness; one should be able to
8use vectors.
9
10However, the TrueType renderers on many platforms have never been part of the
11attack surface before and putting them on the front line is a scary proposition.
12Esp on platforms like Windows where it's a closed-source blob running with high
13privilege.
14
15Thus, the OpenType Sanitiser (OTS) is designed to parse and serialise OpenType
16files, validating them and sanitising them as it goes.
17
18Building:
19
20The included ots.gyp file is for building within the Chromium only. In the
21test/ directory you'll find a SConstruct file which can be used with scons to
22build a standalone version.
23
24[1] http://www.w3.org/TR/CSS2/fonts.html#font-descriptions
25