]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add regtest for issue 1353
authorCarl Sorensen <c_sorensen@byu.edu>
Tue, 25 Jan 2011 03:36:41 +0000 (20:36 -0700)
committerCarl Sorensen <c_sorensen@byu.edu>
Tue, 25 Jan 2011 03:36:41 +0000 (20:36 -0700)
input/regression/chord-names-in-grand-staff.ly [new file with mode: 0644]

diff --git a/input/regression/chord-names-in-grand-staff.ly b/input/regression/chord-names-in-grand-staff.ly
new file mode 100644 (file)
index 0000000..d90a849
--- /dev/null
@@ -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
+      }
+    }
+   >>
+}