diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /layout/reftests/fonts/graphite/grtest-langfeat.gdl | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/fonts/graphite/grtest-langfeat.gdl')
-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 |