Changes between Initial Version and Version 1 of Ticket #8666
- Timestamp:
- Jan 24, 2012, 12:38:35 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified Ticket #8666 – Description
initial v1 1 1 Add a table using the default options: 2 {{{ 2 3 <table border="1" cellpadding="1" cellspacing="1" style="width: 500px"> 3 4 <tbody> … … 24 25 <p> 25 26 </p> 26 27 }}} 27 28 The split the first cell vertically: 29 {{{ 28 30 <table border="1" cellpadding="1" cellspacing="1" style="width: 500px"> 29 31 <tbody> … … 54 56 <p> 55 57 </p> 58 }}} 59 Then merge the first cell down: 56 60 57 Then merge the first cell down: 61 {{{ 58 62 <table border="1" cellpadding="1" cellspacing="1" style="width: 500px"> 59 63 <tbody> … … 80 84 <p> 81 85 </p> 82 86 }}} 83 87 It should revert to the original layout, i.e. the first set of html pasted, but instead the first row ends up with four table cells, and the second row ends up with just two.