From 224230fa313f960b4300b3d7266313556f9e2781 Mon Sep 17 00:00:00 2001 From: Joerg Sonnenberger Date: Sun, 16 May 2010 20:39:20 +0000 Subject: Add a basic regression test for .Bl -bullet and the various interactions with .Bd. --- regress/mdoc/Bl/bullet-basic.in | 64 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 regress/mdoc/Bl/bullet-basic.in (limited to 'regress/mdoc/Bl/bullet-basic.in') diff --git a/regress/mdoc/Bl/bullet-basic.in b/regress/mdoc/Bl/bullet-basic.in new file mode 100644 index 00000000..34244678 --- /dev/null +++ b/regress/mdoc/Bl/bullet-basic.in @@ -0,0 +1,64 @@ +.Dd May 16, 2010 +.Dt BL-BULLET-BASIC 1 +.Os +.Sh NAME +.Nm Bl-bullet-basic +.Nd tests bullet lists +.Sh DESCRIPTION +.Ss Line breaks in items: +.Bl -bullet -width 5n +.It +x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x +x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x +.El +.Ss Nesting of ".Bl -bullet" and empty ".Bd -literal" +.Bl -bullet +.It +.Bd -literal +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet" and ".Bd -literal": +.Bl -bullet +.It +.Bd -literal +xy +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet" and empty ".Bd -compact -literal": +.Bl -bullet +.It +.Bd -literal -compact +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet" and ".Bd -compact -literal": +.Bl -bullet +.It +.Bd -literal -compact +xy +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet -compact" and empty ".Bd -compact -literal": +.Bl -bullet -compact +.It +.Bd -literal -compact +.Ed +y +.It +.El +.Ss Nesting of ".Bl -bullet -compact" and ".Bd -compact -literal": +.Bl -bullet -compact +.It +.Bd -literal -compact +xy +.Ed +y +.It +.El -- cgit