composer package updates
[openemr.git] / vendor / mpdf / mpdf / src / Css / TextVars.php
blobfe22ac2940251938742cee228a7a077973ed00b2
1 <?php
3 namespace Mpdf\Css;
5 class TextVars
8 // font-decoration
9 const FD_UNDERLINE = 1;
10 const FD_LINETHROUGH = 2;
11 const FD_OVERLINE = 4;
13 // font-(vertical)-align
14 const FA_SUPERSCRIPT = 8;
15 const FA_SUBSCRIPT = 16;
17 // font-transform
18 const FT_UPPERCASE = 32;
19 const FT_LOWERCASE = 64;
20 const FT_CAPITALIZE = 128;
22 // font-(other)-controls
23 const FC_KERNING = 256;
24 const FC_SMALLCAPS = 512;