From 4c5a7b177c95eea78231aad923c6bd6b75f6ecb1 Mon Sep 17 00:00:00 2001 From: Carl Sorensen Date: Mon, 24 Jan 2011 20:36:41 -0700 Subject: [PATCH] Add regtest for issue 1353 --- .../regression/chord-names-in-grand-staff.ly | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 input/regression/chord-names-in-grand-staff.ly 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 + } + } + >> +} -- 2.39.5