Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: Source/core/rendering/RenderTable.cpp

Issue 23494007: Implement getter/setter in PaintInfo::rect. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: No signed off. Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/rendering/RenderReplica.cpp ('k') | Source/core/rendering/RenderTableCell.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderReplica.cpp ('k') | Source/core/rendering/RenderTableCell.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698