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

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: Fix for shadow DOM Created 4 years, 10 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 | « third_party/WebKit/Source/core/layout/LayoutCounter.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 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
834 EBoxDecorationBreak boxDecorationBreak() const { return m_box->boxDecoration Break(); } 834 EBoxDecorationBreak boxDecorationBreak() const { return m_box->boxDecoration Break(); }
835 StyleReflection* boxReflect() const { return rareNonInheritedData->m_boxRefl ect.get(); } 835 StyleReflection* boxReflect() const { return rareNonInheritedData->m_boxRefl ect.get(); }
836 bool reflectionDataEquivalent(const ComputedStyle* otherStyle) const { retur n rareNonInheritedData->reflectionDataEquivalent(*otherStyle->rareNonInheritedDa ta); } 836 bool reflectionDataEquivalent(const ComputedStyle* otherStyle) const { retur n rareNonInheritedData->reflectionDataEquivalent(*otherStyle->rareNonInheritedDa ta); }
837 837
838 // FIXME: reflections should belong to this helper function but they are cur rently handled 838 // FIXME: reflections should belong to this helper function but they are cur rently handled
839 // through their self-painting layers. So the layout code doesn't account fo r them. 839 // through their self-painting layers. So the layout code doesn't account fo r them.
840 bool hasVisualOverflowingEffect() const { return boxShadow() || hasBorderIma geOutsets() || hasOutline(); } 840 bool hasVisualOverflowingEffect() const { return boxShadow() || hasBorderIma geOutsets() || hasOutline(); }
841 841
842 Containment contain() const { return static_cast<Containment>(rareNonInherit edData->m_contain); } 842 Containment contain() const { return static_cast<Containment>(rareNonInherit edData->m_contain); }
843 bool containsPaint() const { return rareNonInheritedData->m_contain & Contai nsPaint; } 843 bool containsPaint() const { return rareNonInheritedData->m_contain & Contai nsPaint; }
844 bool containsStyle() const { return rareNonInheritedData->m_contain & Contai nsStyle; }
844 845
845 EBoxSizing boxSizing() const { return m_box->boxSizing(); } 846 EBoxSizing boxSizing() const { return m_box->boxSizing(); }
846 EUserModify userModify() const { return static_cast<EUserModify>(rareInherit edData->userModify); } 847 EUserModify userModify() const { return static_cast<EUserModify>(rareInherit edData->userModify); }
847 EUserDrag userDrag() const { return static_cast<EUserDrag>(rareNonInheritedD ata->userDrag); } 848 EUserDrag userDrag() const { return static_cast<EUserDrag>(rareNonInheritedD ata->userDrag); }
848 EUserSelect userSelect() const { return static_cast<EUserSelect>(rareInherit edData->userSelect); } 849 EUserSelect userSelect() const { return static_cast<EUserSelect>(rareInherit edData->userSelect); }
849 TextOverflow textOverflow() const { return static_cast<TextOverflow>(rareNon InheritedData->textOverflow); } 850 TextOverflow textOverflow() const { return static_cast<TextOverflow>(rareNon InheritedData->textOverflow); }
850 EMarginCollapse marginBeforeCollapse() const { return static_cast<EMarginCol lapse>(rareNonInheritedData->marginBeforeCollapse); } 851 EMarginCollapse marginBeforeCollapse() const { return static_cast<EMarginCol lapse>(rareNonInheritedData->marginBeforeCollapse); }
851 EMarginCollapse marginAfterCollapse() const { return static_cast<EMarginColl apse>(rareNonInheritedData->marginAfterCollapse); } 852 EMarginCollapse marginAfterCollapse() const { return static_cast<EMarginColl apse>(rareNonInheritedData->marginAfterCollapse); }
852 EWordBreak wordBreak() const { return static_cast<EWordBreak>(rareInheritedD ata->wordBreak); } 853 EWordBreak wordBreak() const { return static_cast<EWordBreak>(rareInheritedD ata->wordBreak); }
853 EOverflowWrap overflowWrap() const { return static_cast<EOverflowWrap>(rareI nheritedData->overflowWrap); } 854 EOverflowWrap overflowWrap() const { return static_cast<EOverflowWrap>(rareI nheritedData->overflowWrap); }
(...skipping 1164 matching lines...) Expand 10 before | Expand all | Expand 10 after
2018 } 2019 }
2019 2020
2020 inline bool ComputedStyle::hasPseudoElementStyle() const 2021 inline bool ComputedStyle::hasPseudoElementStyle() const
2021 { 2022 {
2022 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK; 2023 return noninherited_flags.pseudoBits & PSEUDO_ELEMENT_MASK;
2023 } 2024 }
2024 2025
2025 } // namespace blink 2026 } // namespace blink
2026 2027
2027 #endif // ComputedStyle_h 2028 #endif // ComputedStyle_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutCounter.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698