| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |