diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/fonts/graphite/grtest-langfeat.gdl | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/layout/reftests/fonts/graphite/grtest-langfeat.gdl b/layout/reftests/fonts/graphite/grtest-langfeat.gdl new file mode 100644 index 0000000000..fd76c126c4 --- /dev/null +++ b/layout/reftests/fonts/graphite/grtest-langfeat.gdl @@ -0,0 +1,62 @@ +#include "stddef.gdh" +#define LG_USENG 1033 + +table(glyph) +clsFail = codepoint("FAIL"); +clsPass = codepoint("PaSs"); +endtable + +table (feature) + +failtopass +{ + id = "FTPS"; + name.LG_USENG = string("Pass substitution"); + default = 0; +} + +failtopass2 +{ + id = "FTP2"; + name.LG_USENG = string("Pass substitution 2"); + default = 0; +} + +passtofail +{ + id = "PTFL"; + name.LG_USENG = string("Pass to fail substitution"); + default = 0; +} + +endtable + +table (language) + +french { + languages = ( "fr" ); + failtopass = 1; +} + +french2 { + languages = ( "fra" ); + passtofail = 1; +} + +endtable; + +table(substitution) + +pass(1) + +if (failtopass || failtopass2) +clsFail > clsPass; +endif; + +if (passtofail) +clsPass > clsFail; +endif; + +endpass; + +endtable
\ No newline at end of file |