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

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

Issue 1519123003: Implement Style Containment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add test Created 4 years, 11 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
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 810 matching lines...) Expand 10 before | Expand all | Expand 10 after
821 EBoxDecorationBreak boxDecorationBreak() const { return m_box->boxDecoration Break(); } 821 EBoxDecorationBreak boxDecorationBreak() const { return m_box->boxDecoration Break(); }
822 StyleReflection* boxReflect() const { return rareNonInheritedData->m_boxRefl ect.get(); } 822 StyleReflection* boxReflect() const { return rareNonInheritedData->m_boxRefl ect.get(); }
823 bool reflectionDataEquivalent(const ComputedStyle* otherStyle) const { retur n rareNonInheritedData->reflectionDataEquivalent(*otherStyle->rareNonInheritedDa ta); } 823 bool reflectionDataEquivalent(const ComputedStyle* otherStyle) const { retur n rareNonInheritedData->reflectionDataEquivalent(*otherStyle->rareNonInheritedDa ta); }
824 824
825 // FIXME: reflections should belong to this helper function but they are cur rently handled 825 // FIXME: reflections should belong to this helper function but they are cur rently handled
826 // through their self-painting layers. So the layout code doesn't account fo r them. 826 // through their self-painting layers. So the layout code doesn't account fo r them.
827 bool hasVisualOverflowingEffect() const { return boxShadow() || hasBorderIma geOutsets() || hasOutline(); } 827 bool hasVisualOverflowingEffect() const { return boxShadow() || hasBorderIma geOutsets() || hasOutline(); }
828 828
829 Containment contain() const { return static_cast<Containment>(rareNonInherit edData->m_contain); } 829 Containment contain() const { return static_cast<Containment>(rareNonInherit edData->m_contain); }
830 bool containsPaint() const { return rareNonInheritedData->m_contain & Contai nsPaint; } 830 bool containsPaint() const { return rareNonInheritedData->m_contain & Contai nsPaint; }
831 bool containsStyle() const { return rareNonInheritedData->m_contain & Contai nsStyle; }
831 832
832 EBoxSizing boxSizing() const { return m_box->boxSizing(); } 833 EBoxSizing boxSizing() const { return m_box->boxSizing(); }
833 EUserModify userModify() const { return static_cast<EUserModify>(rareInherit edData->userModify); } 834 EUserModify userModify() const { return static_cast<EUserModify>(rareInherit edData->userModify); }
834 EUserDrag userDrag() const { return static_cast<EUserDrag>(rareNonInheritedD ata->userDrag); } 835 EUserDrag userDrag() const { return static_cast<EUserDrag>(rareNonInheritedD ata->userDrag); }
835 EUserSelect userSelect() const { return static_cast<EUserSelect>(rareInherit edData->userSelect); } 836 EUserSelect userSelect() const { return static_cast<EUserSelect>(rareInherit edData->userSelect); }
836 TextOverflow textOverflow() const { return static_cast<TextOverflow>(rareNon InheritedData->textOverflow); } 837 TextOverflow textOverflow() const { return static_cast<TextOverflow>(rareNon InheritedData->textOverflow); }
837 EMarginCollapse marginBeforeCollapse() const { return static_cast<EMarginCol lapse>(rareNonInheritedData->marginBeforeCollapse); } 838 EMarginCollapse marginBeforeCollapse() const { return static_cast<EMarginCol lapse>(rareNonInheritedData->marginBeforeCollapse); }
838 EMarginCollapse marginAfterCollapse() const { return static_cast<EMarginColl apse>(rareNonInheritedData->marginAfterCollapse); } 839 EMarginCollapse marginAfterCollapse() const { return static_cast<EMarginColl apse>(rareNonInheritedData->marginAfterCollapse); }
839 EWordBreak wordBreak() const { return static_cast<EWordBreak>(rareInheritedD ata->wordBreak); } 840 EWordBreak wordBreak() const { return static_cast<EWordBreak>(rareInheritedD ata->wordBreak); }
840 EOverflowWrap overflowWrap() const { return static_cast<EOverflowWrap>(rareI nheritedData->overflowWrap); } 841 EOverflowWrap overflowWrap() const { return static_cast<EOverflowWrap>(rareI nheritedData->overflowWrap); }
(...skipping 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after
2008 } 2009 }
2009 2010
2010 inline bool ComputedStyle::hasPseudoElementStyle() const 2011 inline bool ComputedStyle::hasPseudoElementStyle() const
2011 { 2012 {
2012 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 2013 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
2013 } 2014 }
2014 2015
2015 } // namespace blink 2016 } // namespace blink
2016 2017
2017 #endif // ComputedStyle_h 2018 #endif // ComputedStyle_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698