diff options
author | Patrick McCarty <pnorcks@gmail.com> | 2009-12-13 13:36:41 -0800 |
---|---|---|
committer | Patrick McCarty <pnorcks@gmail.com> | 2009-12-13 13:38:20 -0800 |
commit | ef7ee24e2aee81dd97888b4533ab7eae038ce666 (patch) | |
tree | c95f088985e8eba40af60e5e3b7852568d400701 | |
parent | 1c6064e60c07e2933634bb6aaf6f2c4b664c8bc3 (diff) |
Add regression tests for #927.
-rw-r--r-- | input/regression/markup-bidi-explicit-embedding.ly | 19 | ||||
-rw-r--r-- | input/regression/markup-bidi-explicit-overrides.ly | 19 | ||||
-rw-r--r-- | input/regression/markup-bidi-implicit-marks.ly | 18 |
3 files changed, 56 insertions, 0 deletions
diff --git a/input/regression/markup-bidi-explicit-embedding.ly b/input/regression/markup-bidi-explicit-embedding.ly new file mode 100644 index 0000000000..af899f40ae --- /dev/null +++ b/input/regression/markup-bidi-explicit-embedding.ly @@ -0,0 +1,19 @@ +\version "2.13.10" + +\header { + texidoc = " +The explicit directional embedding codes, U+202A and U+202B, are +supported in single-line markup strings. The embeddings must be +terminated with the pop directional formatting character, U+202C. +" +} + +\markup { + \column { + "אבה אבה \"ABC!\" אבה אבה!" + "אבה אבה \"ABC!\" אבה אבה!" + \null + "abc def \"אבה!\" ghi jkl!" + "abc def \"אבה!\" ghi jkl!" + } +} diff --git a/input/regression/markup-bidi-explicit-overrides.ly b/input/regression/markup-bidi-explicit-overrides.ly new file mode 100644 index 0000000000..c4998a7ff1 --- /dev/null +++ b/input/regression/markup-bidi-explicit-overrides.ly @@ -0,0 +1,19 @@ +\version "2.13.10" + +\header { + texidoc = " +The explicit directional override codes, U+202D and U+202E, are +supported in single-line markup strings. The overrides must be +terminated with the pop directional formatting character, U+202C. +" +} + +\markup { + \column { + "אבג דהו זחט יךכ" + "אבג דהו זחט יךכ" + \null + "abc def ghi jkl" + "abc def ghi jkl" + } +} diff --git a/input/regression/markup-bidi-implicit-marks.ly b/input/regression/markup-bidi-implicit-marks.ly new file mode 100644 index 0000000000..7bad2c91ce --- /dev/null +++ b/input/regression/markup-bidi-implicit-marks.ly @@ -0,0 +1,18 @@ +\version "2.13.10" + +\header { + texidoc = " +The implicit directional marks, U+200E and U+200F, are supported +in single-line markup strings. +" +} + +\markup { + \column { + "אבה \"ABC!\" אבה" + "אבה \"ABC!\" אבה" + \null + "abc \"אבה!\" def" + "abc \"אבה!\" def" + } +} |