OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) | 2 * Copyright (C) 1997 Martin Jones (mjones@kde.org) |
3 * (C) 1997 Torben Weis (weis@kde.org) | 3 * (C) 1997 Torben Weis (weis@kde.org) |
4 * (C) 1998 Waldo Bastian (bastian@kde.org) | 4 * (C) 1998 Waldo Bastian (bastian@kde.org) |
5 * (C) 1999 Lars Knoll (knoll@kde.org) | 5 * (C) 1999 Lars Knoll (knoll@kde.org) |
6 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 6 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc.
All rights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc.
All rights reserved. |
8 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 8 * Copyright (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 | 407 |
408 for (LayoutTableSection* section = topSection(); section; section = sectionB
elow(section)) { | 408 for (LayoutTableSection* section = topSection(); section; section = sectionB
elow(section)) { |
409 section->layoutIfNeeded(); | 409 section->layoutIfNeeded(); |
410 section->layoutRows(); | 410 section->layoutRows(); |
411 section->computeOverflowFromCells(); | 411 section->computeOverflowFromCells(); |
412 section->updateLayerTransformAfterLayout(); | 412 section->updateLayerTransformAfterLayout(); |
413 section->addVisualEffectOverflow(); | 413 section->addVisualEffectOverflow(); |
414 } | 414 } |
415 } | 415 } |
416 | 416 |
| 417 bool LayoutTable::recalcChildOverflowAfterStyleChange() |
| 418 { |
| 419 ASSERT(childNeedsOverflowRecalcAfterStyleChange()); |
| 420 clearChildNeedsOverflowRecalcAfterStyleChange(); |
| 421 bool childrenOverflowChanged = false; |
| 422 for (LayoutTableSection* section = topSection(); section; section = sectionB
elow(section)) { |
| 423 if (!section->childNeedsOverflowRecalcAfterStyleChange()) |
| 424 continue; |
| 425 childrenOverflowChanged |= section->recalcChildOverflowAfterStyleChange(
); |
| 426 } |
| 427 return childrenOverflowChanged; |
| 428 } |
| 429 |
417 void LayoutTable::layout() | 430 void LayoutTable::layout() |
418 { | 431 { |
419 ASSERT(needsLayout()); | 432 ASSERT(needsLayout()); |
420 LayoutAnalyzer::Scope analyzer(*this); | 433 LayoutAnalyzer::Scope analyzer(*this); |
421 | 434 |
422 if (simplifiedLayout()) | 435 if (simplifiedLayout()) |
423 return; | 436 return; |
424 | 437 |
425 // Note: LayoutTable is handled differently than other LayoutBlocks and the
LayoutScope | 438 // Note: LayoutTable is handled differently than other LayoutBlocks and the
LayoutScope |
426 // must be created before the table begins laying out. | 439 // must be created before the table begins laying out. |
(...skipping 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1461 | 1474 |
1462 LayoutUnit LayoutTable::paddingRight() const | 1475 LayoutUnit LayoutTable::paddingRight() const |
1463 { | 1476 { |
1464 if (collapseBorders()) | 1477 if (collapseBorders()) |
1465 return LayoutUnit(); | 1478 return LayoutUnit(); |
1466 | 1479 |
1467 return LayoutBlock::paddingRight(); | 1480 return LayoutBlock::paddingRight(); |
1468 } | 1481 } |
1469 | 1482 |
1470 } // namespace blink | 1483 } // namespace blink |
OLD | NEW |