diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2017-04-21 21:10:12 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2017-04-21 21:10:12 +0000 |
| commit | 3ec23df83a2433da4e39db074416c613cb0cab5b (patch) | |
| tree | ff3c6c8c5211c95425d7d023c81947af2d5c5e5b /test/help_dialog.html | |
| parent | 660a65ed0128ceea5803cf60484a619ca1027bde (diff) | |
Fl_Help_View: fix table header in help_dialog.html (STR #3227).
The html code in the example (test/help_dialog.html) was broken.
Fixing the example html code was enough, no code changes needed.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12220 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/help_dialog.html')
| -rw-r--r-- | test/help_dialog.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/test/help_dialog.html b/test/help_dialog.html index 9f4dccaca..01809f234 100644 --- a/test/help_dialog.html +++ b/test/help_dialog.html @@ -173,7 +173,9 @@ End of DL. <P> <B>Simple Two Column Table With Borders And Heading</B> <TABLE BORDER=1> - <TH>Table Heading</TH> + <TR> + <TH>Table Heading</TH> + </TR> <TR> <TD>Column 1</TD> <TD>Column 2</TD> </TR><TR> @@ -187,7 +189,9 @@ End of DL. <P> <B>Simple Bordered Table With Heading And 10 Cell Padding + Spacing</B> <TABLE BORDER=1 CELLPADDING=10 CELLSPACING=10> - <TH>Table Heading</TH> + <TR> + <TH>Table Heading</TH> + </TR> <TR> <TD>Column 1</TD> <TD>Column 2</TD> </TR><TR> @@ -201,7 +205,9 @@ End of DL. <P> <B>Simple Table Of Images, Two Columns, Three Rows</B> <TABLE BORDER=1 CELLPADDING=10 CELLSPACING=10> - <TH>Table Heading</TH> + <TR> + <TH>Table Heading</TH> + </TR> <TR> <TD>Column 1</TD> <TD>Column 2</TD> </TR><TR> |
