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 Apple Inc. All r
ights reserved. | 7 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All r
ights 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 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
629 | 629 |
630 LayoutPoint adjustedPaintOffset = paintOffset + location(); | 630 LayoutPoint adjustedPaintOffset = paintOffset + location(); |
631 | 631 |
632 PaintPhase paintPhase = paintInfo.phase; | 632 PaintPhase paintPhase = paintInfo.phase; |
633 | 633 |
634 if (!isRoot()) { | 634 if (!isRoot()) { |
635 LayoutRect overflowBox = visualOverflowRect(); | 635 LayoutRect overflowBox = visualOverflowRect(); |
636 flipForWritingMode(overflowBox); | 636 flipForWritingMode(overflowBox); |
637 overflowBox.inflate(maximalOutlineSize(paintInfo.phase)); | 637 overflowBox.inflate(maximalOutlineSize(paintInfo.phase)); |
638 overflowBox.moveBy(adjustedPaintOffset); | 638 overflowBox.moveBy(adjustedPaintOffset); |
639 if (!overflowBox.intersects(paintInfo.rect)) | 639 if (!overflowBox.intersects(paintInfo.rect())) |
640 return; | 640 return; |
641 } | 641 } |
642 | 642 |
643 bool pushedClip = pushContentsClip(paintInfo, adjustedPaintOffset, ForceCont
entsClip); | 643 bool pushedClip = pushContentsClip(paintInfo, adjustedPaintOffset, ForceCont
entsClip); |
644 paintObject(paintInfo, adjustedPaintOffset); | 644 paintObject(paintInfo, adjustedPaintOffset); |
645 if (pushedClip) | 645 if (pushedClip) |
646 popContentsClip(paintInfo, paintPhase, adjustedPaintOffset); | 646 popContentsClip(paintInfo, paintPhase, adjustedPaintOffset); |
647 } | 647 } |
648 | 648 |
649 void RenderTable::paintObject(PaintInfo& paintInfo, const LayoutPoint& paintOffs
et) | 649 void RenderTable::paintObject(PaintInfo& paintInfo, const LayoutPoint& paintOffs
et) |
(...skipping 792 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1442 const BorderValue& RenderTable::tableEndBorderAdjoiningCell(const RenderTableCel
l* cell) const | 1442 const BorderValue& RenderTable::tableEndBorderAdjoiningCell(const RenderTableCel
l* cell) const |
1443 { | 1443 { |
1444 ASSERT(cell->isFirstOrLastCellInRow()); | 1444 ASSERT(cell->isFirstOrLastCellInRow()); |
1445 if (hasSameDirectionAs(cell->row())) | 1445 if (hasSameDirectionAs(cell->row())) |
1446 return style()->borderEnd(); | 1446 return style()->borderEnd(); |
1447 | 1447 |
1448 return style()->borderStart(); | 1448 return style()->borderStart(); |
1449 } | 1449 } |
1450 | 1450 |
1451 } | 1451 } |
OLD | NEW |