From: Patrick McCarty Date: Sun, 13 Dec 2009 21:36:41 +0000 (-0800) Subject: Add regression tests for #927. X-Git-Tag: release/2.13.10-1~184 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ef7ee24e2aee81dd97888b4533ab7eae038ce666;p=lilypond.git Add regression tests for #927. --- 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" + } +}