summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/table-rowspan-height-distribution-in-rows-2.html
Commit message (Collapse)AuthorAgeFilesLines
* Row spanning cell content is flowing out of the cell border if this row ↵a.suchit@samsung.com2013-08-011-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | spanning cell comes under the boundries of other row spanning cell. Inner row spanning cell height was not considered in table layout So Height of the row spanning cell was not proper. Overlapping row spanning cells was not handles. Inner row spanning cell should handle first in the table. So we are rearranging the list of row spanning cells so that inner row spanning cell will handled first for spredding remaining logical height in the rows than outer row spanning cell. List of row spanning cells is already sorted in ascending order by their rowIndexs. We are rearranging the row spanning cell's list and pushing inner cell before its outer cell. Also if 2 or more row spanning cells are same but their heights are different then pushing height-est row spanning cell before the lower height row spanning cells. After rearranging them, we apply the process of spreading remaining logical height into rows. R=jchaffraix@chromium.org BUG=252120 Review URL: https://chromiumcodereview.appspot.com/19635004 git-svn-id: svn://svn.chromium.org/blink/trunk@155337 bbb929c8-8fbe-4397-9dbb-9b2b20218538
* Spanning logical height is not added properly in all spanning rows.a.suchit@samsung.com2013-07-261-4/+4
| | | | | | | | | | | | | | | | | | The remaining logical height is wrongly added to the last row spanning cell, not spread on the rows when more then one rowspanning cell present in the table. Remaining logical height was handled to only row spanning cell which comes first in the table. Remaining row spanning cells were not handles. Here, we handled all row spanning cells in the table those are not overlapping each others. R=jchaffraix@chromium.org BUG=249600 Review URL: https://chromiumcodereview.appspot.com/19390002 git-svn-id: svn://svn.chromium.org/blink/trunk@154990 bbb929c8-8fbe-4397-9dbb-9b2b20218538
* Height of fixed height cell is not proper when cell's row is under row ↵a.suchit@samsung.com2013-07-211-0/+379
spanning cell. If cell have fixed height then it's height should not changed till there is other rows present to take extra rowspan cell height. Extra rowspan cell height, First, distributes to percent height spanning rows which is depend on table height. If extra rowspan cell height remains after distributing to percent height rows then remaining extra rowspan cell height distributes in auto spanning rows if auto spanning rows are present otherwise it distributes to remaining spanning rows. R=jchaffraix@chromium.org BUG=254914 Review URL: https://chromiumcodereview.appspot.com/18050007 git-svn-id: svn://svn.chromium.org/blink/trunk@154604 bbb929c8-8fbe-4397-9dbb-9b2b20218538