From: Carl Sorensen Date: Tue, 25 Jan 2011 03:36:41 +0000 (-0700) Subject: Add regtest for issue 1353 X-Git-Tag: release/2.13.47-1~20 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4c5a7b177c95eea78231aad923c6bd6b75f6ecb1;p=lilypond.git Add regtest for issue 1353 --- diff --git a/input/regression/chord-names-in-grand-staff.ly b/input/regression/chord-names-in-grand-staff.ly new file mode 100644 index 0000000000..d90a84952d --- /dev/null +++ b/input/regression/chord-names-in-grand-staff.ly @@ -0,0 +1,29 @@ +\version "2.13.47" + +\header { + + texidoc = " +GrandStaff contexts accept chord names. The chord name in this +example should be printed above the top staff. +" +} + +\score { + \new GrandStaff + << + \chords { + f1 + } + \new Staff { + \relative c'' { + a4 a a a + } + } + \new Staff { + \clef "bass" + \relative c { + a4 a a a + } + } + >> +}