| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2002 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2002 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2002 Dirk Mueller (mueller@kde.org) | 3 * (C) 2002 Dirk Mueller (mueller@kde.org) |
| 4 * Copyright (C) 2003, 2006, 2008, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2006, 2008, 2010 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License. | 9 * version 2 of the License. |
| 10 * | 10 * |
| (...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 m_effectiveLogicalWidthDirty = false; | 466 m_effectiveLogicalWidthDirty = false; |
| 467 | 467 |
| 468 return std::min(maxLogicalWidth, INT_MAX / 2); | 468 return std::min(maxLogicalWidth, INT_MAX / 2); |
| 469 } | 469 } |
| 470 | 470 |
| 471 /* gets all cells that originate in a column and have a cellspan > 1 | 471 /* gets all cells that originate in a column and have a cellspan > 1 |
| 472 Sorts them by increasing cellspan | 472 Sorts them by increasing cellspan |
| 473 */ | 473 */ |
| 474 void TableLayoutAlgorithmAuto::insertSpanCell(LayoutTableCell *cell) | 474 void TableLayoutAlgorithmAuto::insertSpanCell(LayoutTableCell *cell) |
| 475 { | 475 { |
| 476 DCHECK(cell); | 476 ASSERT_ARG(cell, cell && cell->colSpan() != 1); |
| 477 DCHECK_NE(cell->colSpan(), 1u); | |
| 478 if (!cell || cell->colSpan() == 1) | 477 if (!cell || cell->colSpan() == 1) |
| 479 return; | 478 return; |
| 480 | 479 |
| 481 unsigned size = m_spanCells.size(); | 480 unsigned size = m_spanCells.size(); |
| 482 if (!size || m_spanCells[size-1] != 0) { | 481 if (!size || m_spanCells[size-1] != 0) { |
| 483 m_spanCells.grow(size + 10); | 482 m_spanCells.grow(size + 10); |
| 484 for (unsigned i = 0; i < 10; i++) | 483 for (unsigned i = 0; i < 10; i++) |
| 485 m_spanCells[size+i] = 0; | 484 m_spanCells[size+i] = 0; |
| 486 size += 10; | 485 size += 10; |
| 487 } | 486 } |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 int reduce = available * minMaxDiff / logicalWidthBeyondMin; | 694 int reduce = available * minMaxDiff / logicalWidthBeyondMin; |
| 696 m_layoutStruct[i].computedLogicalWidth += reduce; | 695 m_layoutStruct[i].computedLogicalWidth += reduce; |
| 697 available -= reduce; | 696 available -= reduce; |
| 698 logicalWidthBeyondMin -= minMaxDiff; | 697 logicalWidthBeyondMin -= minMaxDiff; |
| 699 if (available >= 0) | 698 if (available >= 0) |
| 700 break; | 699 break; |
| 701 } | 700 } |
| 702 } | 701 } |
| 703 } | 702 } |
| 704 } // namespace blink | 703 } // namespace blink |
| OLD | NEW |