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

Side by Side Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 1490063002: Implement Paint Containment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge Created 5 years 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 | « third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp ('k') | no next file » | 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) 2000 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org)
3 * (C) 2000 Antti Koivisto (koivisto@kde.org) 3 * (C) 2000 Antti Koivisto (koivisto@kde.org)
4 * (C) 2000 Dirk Mueller (mueller@kde.org) 4 * (C) 2000 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com) 6 * Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after
819 819
820 EBoxDecorationBreak boxDecorationBreak() const { return m_box->boxDecoration Break(); } 820 EBoxDecorationBreak boxDecorationBreak() const { return m_box->boxDecoration Break(); }
821 StyleReflection* boxReflect() const { return rareNonInheritedData->m_boxRefl ect.get(); } 821 StyleReflection* boxReflect() const { return rareNonInheritedData->m_boxRefl ect.get(); }
822 bool reflectionDataEquivalent(const ComputedStyle* otherStyle) const { retur n rareNonInheritedData->reflectionDataEquivalent(*otherStyle->rareNonInheritedDa ta); } 822 bool reflectionDataEquivalent(const ComputedStyle* otherStyle) const { retur n rareNonInheritedData->reflectionDataEquivalent(*otherStyle->rareNonInheritedDa ta); }
823 823
824 // FIXME: reflections should belong to this helper function but they are cur rently handled 824 // FIXME: reflections should belong to this helper function but they are cur rently handled
825 // through their self-painting layers. So the layout code doesn't account fo r them. 825 // through their self-painting layers. So the layout code doesn't account fo r them.
826 bool hasVisualOverflowingEffect() const { return boxShadow() || hasBorderIma geOutsets() || hasOutline(); } 826 bool hasVisualOverflowingEffect() const { return boxShadow() || hasBorderIma geOutsets() || hasOutline(); }
827 827
828 Containment contain() const { return static_cast<Containment>(rareNonInherit edData->m_contain); } 828 Containment contain() const { return static_cast<Containment>(rareNonInherit edData->m_contain); }
829 bool containsPaint() const { return rareNonInheritedData->m_contain & Contai nsPaint; }
829 830
830 EBoxSizing boxSizing() const { return m_box->boxSizing(); } 831 EBoxSizing boxSizing() const { return m_box->boxSizing(); }
831 EUserModify userModify() const { return static_cast<EUserModify>(rareInherit edData->userModify); } 832 EUserModify userModify() const { return static_cast<EUserModify>(rareInherit edData->userModify); }
832 EUserDrag userDrag() const { return static_cast<EUserDrag>(rareNonInheritedD ata->userDrag); } 833 EUserDrag userDrag() const { return static_cast<EUserDrag>(rareNonInheritedD ata->userDrag); }
833 EUserSelect userSelect() const { return static_cast<EUserSelect>(rareInherit edData->userSelect); } 834 EUserSelect userSelect() const { return static_cast<EUserSelect>(rareInherit edData->userSelect); }
834 TextOverflow textOverflow() const { return static_cast<TextOverflow>(rareNon InheritedData->textOverflow); } 835 TextOverflow textOverflow() const { return static_cast<TextOverflow>(rareNon InheritedData->textOverflow); }
835 EMarginCollapse marginBeforeCollapse() const { return static_cast<EMarginCol lapse>(rareNonInheritedData->marginBeforeCollapse); } 836 EMarginCollapse marginBeforeCollapse() const { return static_cast<EMarginCol lapse>(rareNonInheritedData->marginBeforeCollapse); }
836 EMarginCollapse marginAfterCollapse() const { return static_cast<EMarginColl apse>(rareNonInheritedData->marginAfterCollapse); } 837 EMarginCollapse marginAfterCollapse() const { return static_cast<EMarginColl apse>(rareNonInheritedData->marginAfterCollapse); }
837 EWordBreak wordBreak() const { return static_cast<EWordBreak>(rareInheritedD ata->wordBreak); } 838 EWordBreak wordBreak() const { return static_cast<EWordBreak>(rareInheritedD ata->wordBreak); }
838 EOverflowWrap overflowWrap() const { return static_cast<EOverflowWrap>(rareI nheritedData->overflowWrap); } 839 EOverflowWrap overflowWrap() const { return static_cast<EOverflowWrap>(rareI nheritedData->overflowWrap); }
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after
2005 } 2006 }
2006 2007
2007 inline bool ComputedStyle::hasPseudoElementStyle() const 2008 inline bool ComputedStyle::hasPseudoElementStyle() const
2008 { 2009 {
2009 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 2010 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
2010 } 2011 }
2011 2012
2012 } // namespace blink 2013 } // namespace blink
2013 2014
2014 #endif // ComputedStyle_h 2015 #endif // ComputedStyle_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayerClipper.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698