| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc.
All rights reserved. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 bool applyAnimatedProperties(StyleResolverState&, const Element* animatingEl
ement); | 204 bool applyAnimatedProperties(StyleResolverState&, const Element* animatingEl
ement); |
| 205 void applyCallbackSelectors(StyleResolverState&); | 205 void applyCallbackSelectors(StyleResolverState&); |
| 206 | 206 |
| 207 template <CSSPropertyPriority priority> | 207 template <CSSPropertyPriority priority> |
| 208 void applyMatchedProperties(StyleResolverState&, const MatchedPropertiesRang
e&, bool important, bool inheritedOnly); | 208 void applyMatchedProperties(StyleResolverState&, const MatchedPropertiesRang
e&, bool important, bool inheritedOnly); |
| 209 template <CSSPropertyPriority priority> | 209 template <CSSPropertyPriority priority> |
| 210 void applyProperties(StyleResolverState&, const StylePropertySet* properties
, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelis
tNone); | 210 void applyProperties(StyleResolverState&, const StylePropertySet* properties
, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelis
tNone); |
| 211 template <CSSPropertyPriority priority> | 211 template <CSSPropertyPriority priority> |
| 212 void applyAnimatedProperties(StyleResolverState&, const ActiveInterpolations
Map&); | 212 void applyAnimatedProperties(StyleResolverState&, const ActiveInterpolations
Map&); |
| 213 template <CSSPropertyPriority priority> | 213 template <CSSPropertyPriority priority> |
| 214 void applyAllProperty(StyleResolverState&, const CSSValue*, bool inheritedOn
ly, PropertyWhitelistType); | 214 void applyAllProperty(StyleResolverState&, const CSSValue&, bool inheritedOn
ly, PropertyWhitelistType); |
| 215 template <CSSPropertyPriority priority> | 215 template <CSSPropertyPriority priority> |
| 216 void applyPropertiesForApplyAtRule(StyleResolverState&, const CSSValue*, boo
l isImportant, bool inheritedOnly, PropertyWhitelistType); | 216 void applyPropertiesForApplyAtRule(StyleResolverState&, const CSSValue&, boo
l isImportant, bool inheritedOnly, PropertyWhitelistType); |
| 217 | 217 |
| 218 bool pseudoStyleForElementInternal(Element&, const PseudoStyleRequest&, cons
t ComputedStyle* parentStyle, StyleResolverState&); | 218 bool pseudoStyleForElementInternal(Element&, const PseudoStyleRequest&, cons
t ComputedStyle* parentStyle, StyleResolverState&); |
| 219 bool hasAuthorBackground(const StyleResolverState&); | 219 bool hasAuthorBackground(const StyleResolverState&); |
| 220 bool hasAuthorBorder(const StyleResolverState&); | 220 bool hasAuthorBorder(const StyleResolverState&); |
| 221 | 221 |
| 222 PseudoElement* createPseudoElement(Element* parent, PseudoId); | 222 PseudoElement* createPseudoElement(Element* parent, PseudoId); |
| 223 | 223 |
| 224 Document& document() { return *m_document; } | 224 Document& document() { return *m_document; } |
| 225 | 225 |
| 226 static ComputedStyle* s_styleNotYetAvailable; | 226 static ComputedStyle* s_styleNotYetAvailable; |
| (...skipping 24 matching lines...) Expand all Loading... |
| 251 bool m_printMediaType; | 251 bool m_printMediaType; |
| 252 bool m_hasFullscreenUAStyle = false; | 252 bool m_hasFullscreenUAStyle = false; |
| 253 | 253 |
| 254 unsigned m_styleSharingDepth; | 254 unsigned m_styleSharingDepth; |
| 255 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth> m_styleSharingLis
ts; | 255 HeapVector<Member<StyleSharingList>, styleSharingMaxDepth> m_styleSharingLis
ts; |
| 256 }; | 256 }; |
| 257 | 257 |
| 258 } // namespace blink | 258 } // namespace blink |
| 259 | 259 |
| 260 #endif // StyleResolver_h | 260 #endif // StyleResolver_h |
| OLD | NEW |