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

Side by Side Diff: Source/core/rendering/style/RenderStyle.cpp

Issue 607593002: Remove -webkit-border-fit (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years, 2 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org) 2 * Copyright (C) 1999 Antti Koivisto (koivisto@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
4 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. 4 * Copyright (C) 2011 Adobe Systems Incorporated. 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, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
650 650
651 if (rareInheritedData.get() != other.rareInheritedData.get()) { 651 if (rareInheritedData.get() != other.rareInheritedData.get()) {
652 if (rareInheritedData->userModify != other.rareInheritedData->userModify 652 if (rareInheritedData->userModify != other.rareInheritedData->userModify
653 || rareInheritedData->userSelect != other.rareInheritedData->userSel ect 653 || rareInheritedData->userSelect != other.rareInheritedData->userSel ect
654 || rareInheritedData->m_imageRendering != other.rareInheritedData->m _imageRendering) 654 || rareInheritedData->m_imageRendering != other.rareInheritedData->m _imageRendering)
655 return true; 655 return true;
656 } 656 }
657 657
658 if (rareNonInheritedData.get() != other.rareNonInheritedData.get()) { 658 if (rareNonInheritedData.get() != other.rareNonInheritedData.get()) {
659 if (rareNonInheritedData->userDrag != other.rareNonInheritedData->userDr ag 659 if (rareNonInheritedData->userDrag != other.rareNonInheritedData->userDr ag
660 || rareNonInheritedData->m_borderFit != other.rareNonInheritedData-> m_borderFit
661 || rareNonInheritedData->m_objectFit != other.rareNonInheritedData-> m_objectFit 660 || rareNonInheritedData->m_objectFit != other.rareNonInheritedData-> m_objectFit
662 || rareNonInheritedData->m_objectPosition != other.rareNonInheritedD ata->m_objectPosition 661 || rareNonInheritedData->m_objectPosition != other.rareNonInheritedD ata->m_objectPosition
663 || !dataEquivalent(rareNonInheritedData->m_shapeOutside, other.rareN onInheritedData->m_shapeOutside) 662 || !dataEquivalent(rareNonInheritedData->m_shapeOutside, other.rareN onInheritedData->m_shapeOutside)
664 || !dataEquivalent(rareNonInheritedData->m_clipPath, other.rareNonIn heritedData->m_clipPath)) 663 || !dataEquivalent(rareNonInheritedData->m_clipPath, other.rareNonIn heritedData->m_clipPath))
665 return true; 664 return true;
666 } 665 }
667 666
668 return false; 667 return false;
669 } 668 }
670 669
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after
1740 horizontal || includeLogicalRightEdge); 1739 horizontal || includeLogicalRightEdge);
1741 1740
1742 edges[BSLeft] = BorderEdge(borderLeftWidth(), 1741 edges[BSLeft] = BorderEdge(borderLeftWidth(),
1743 visitedDependentColor(CSSPropertyBorderLeftColor), 1742 visitedDependentColor(CSSPropertyBorderLeftColor),
1744 borderLeftStyle(), 1743 borderLeftStyle(),
1745 borderLeftIsTransparent(), 1744 borderLeftIsTransparent(),
1746 !horizontal || includeLogicalLeftEdge); 1745 !horizontal || includeLogicalLeftEdge);
1747 } 1746 }
1748 1747
1749 } // namespace blink 1748 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/style/RenderStyle.h ('k') | Source/core/rendering/style/RenderStyleConstants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698