[wim] r51017 - buildout/silva/branch/Silva-3.0
| Newsgroups | gmane.comp.web.zope.silva.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: wim Date: Thu Aug 8 19:39:49 2013 New Revision: 51017 Modified: buildout/silva/branch/Silva-3.0/test-results.txt Log: added some failing table tests Modified: buildout/silva/branch/Silva-3.0/test-results.txt ============================================================================== --- buildout/silva/branch/Silva-3.0/test-results.txt (original) +++ buildout/silva/branch/Silva-3.0/test-results.txt Thu Aug 8 19:39:49 2013 @@ -633,3 +633,60 @@ Clicking on an image that has float left in a CS (encapsulated), brings you to that image and removes everything else. + +Tables +====== + +Firefox 23 +---------- + +Merging cells +~~~~~~~~~~~~~ + +Starting point 3 x 5 table + ++---+---+---+ +|1.1|1.2|1.3| ++---+---+---+ +|2.1|2.2|2.3| ++---+---+---+ +|3.1|3.2|3.3| ++---+---+---+ +|4.1|4.2|4.3| ++---+---+---+ +|5.1|5.2|5.3| ++---+---+---+ + +Merging down cell makes two extra columns. If we merge down cell 2.2 it +should get merged with 3.2, which it does but instead you get this table +layout: + ++---+---+---+ +|1.1|1.2|1.3| ++--+----+---+---+---+ +|2.1|2.2|2.3|3.1|3.3| ++---+ +---+---+---+ +|4.1|3.2|4.2|4.3| ++---+---+---+---+ +|5.1|5.2|5.3| ++---+---+---+ + +Splitting cells +~~~~~~~~~~~~~~~ + +Splitting vertically a cell merges merges vertically the two cells right +next to it. If we merge down cell 2.2 you get this table layout: + ++---+---+---+ +|1.1|1.2|1.3| ++---+---+---+ +|2.1|2.2|2.3| ++ +---+ + +| | | | ++---+---+ + +|3.1|3.2|3.3| ++---+---+---+ +|4.1|4.2|4.3| ++---+---+---+ +|5.1|5.2|5.3| ++---+---+---+