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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 // FIXME: We should walk through the items in the tree in tree order to do t
he layout here | 403 // FIXME: We should walk through the items in the tree in tree order to do t
he layout here |
404 // instead of walking through individual parts of the tree. crbug.com/442737 | 404 // instead of walking through individual parts of the tree. crbug.com/442737 |
405 for (auto& caption : m_captions) | 405 for (auto& caption : m_captions) |
406 caption->layoutIfNeeded(); | 406 caption->layoutIfNeeded(); |
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 } | 414 } |
414 } | 415 } |
415 | 416 |
416 void LayoutTable::layout() | 417 void LayoutTable::layout() |
417 { | 418 { |
418 ASSERT(needsLayout()); | 419 ASSERT(needsLayout()); |
419 LayoutAnalyzer::Scope analyzer(*this); | 420 LayoutAnalyzer::Scope analyzer(*this); |
420 | 421 |
421 if (simplifiedLayout()) | 422 if (simplifiedLayout()) |
422 return; | 423 return; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 } | 547 } |
547 section->setLogicalLocation(LayoutPoint(sectionLogicalLeft, logicalH
eight())); | 548 section->setLogicalLocation(LayoutPoint(sectionLogicalLeft, logicalH
eight())); |
548 | 549 |
549 // As we may skip invalidation on the table, we need to ensure that
sections are invalidated when they moved. | 550 // As we may skip invalidation on the table, we need to ensure that
sections are invalidated when they moved. |
550 if (sectionMoved && !section->selfNeedsLayout()) | 551 if (sectionMoved && !section->selfNeedsLayout()) |
551 section->setMayNeedPaintInvalidation(); | 552 section->setMayNeedPaintInvalidation(); |
552 | 553 |
553 setLogicalHeight(logicalHeight() + section->logicalHeight()); | 554 setLogicalHeight(logicalHeight() + section->logicalHeight()); |
554 | 555 |
555 section->updateLayerTransformAfterLayout(); | 556 section->updateLayerTransformAfterLayout(); |
| 557 section->addVisualEffectOverflow(); |
556 | 558 |
557 section = sectionBelow(section); | 559 section = sectionBelow(section); |
558 } | 560 } |
559 | 561 |
560 setLogicalHeight(logicalHeight() + borderAndPaddingAfter); | 562 setLogicalHeight(logicalHeight() + borderAndPaddingAfter); |
561 | 563 |
562 for (unsigned i = 0; i < m_captions.size(); i++) { | 564 for (unsigned i = 0; i < m_captions.size(); i++) { |
563 if (m_captions[i]->style()->captionSide() != CAPBOTTOM) | 565 if (m_captions[i]->style()->captionSide() != CAPBOTTOM) |
564 continue; | 566 continue; |
565 layoutCaption(*m_captions[i]); | 567 layoutCaption(*m_captions[i]); |
(...skipping 848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1414 cell->invalidateDisplayItemClient(*cell); | 1416 cell->invalidateDisplayItemClient(*cell); |
1415 } | 1417 } |
1416 } | 1418 } |
1417 } | 1419 } |
1418 } | 1420 } |
1419 | 1421 |
1420 LayoutBlock::invalidatePaintOfSubtreesIfNeeded(childPaintInvalidationState); | 1422 LayoutBlock::invalidatePaintOfSubtreesIfNeeded(childPaintInvalidationState); |
1421 } | 1423 } |
1422 | 1424 |
1423 } | 1425 } |
OLD | NEW |