summaryrefslogtreecommitdiffstats
path: root/layout/reftests/fonts/graphite/grtest-langfeat.gdl
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /layout/reftests/fonts/graphite/grtest-langfeat.gdl
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/fonts/graphite/grtest-langfeat.gdl')
-rw-r--r--layout/reftests/fonts/graphite/grtest-langfeat.gdl62
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 000000000..fd76c126c
--- /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