| 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. | 3 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. |
| 4 * All rights reserved. | 4 * 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 23 matching lines...) Expand all Loading... |
| 34 StyleResolverState::StyleResolverState( | 34 StyleResolverState::StyleResolverState( |
| 35 Document& document, | 35 Document& document, |
| 36 const ElementResolveContext& elementContext, | 36 const ElementResolveContext& elementContext, |
| 37 const ComputedStyle* parentStyle) | 37 const ComputedStyle* parentStyle) |
| 38 : m_elementContext(elementContext), | 38 : m_elementContext(elementContext), |
| 39 m_document(document), | 39 m_document(document), |
| 40 m_style(nullptr), | 40 m_style(nullptr), |
| 41 // TODO(jchaffraix): We should make m_parentStyle const | 41 // TODO(jchaffraix): We should make m_parentStyle const |
| 42 // (https://crbug.com/468152) | 42 // (https://crbug.com/468152) |
| 43 m_parentStyle(const_cast<ComputedStyle*>(parentStyle)), | 43 m_parentStyle(const_cast<ComputedStyle*>(parentStyle)), |
| 44 m_isAnimatingCustomProperties(false), |
| 44 m_applyPropertyToRegularStyle(true), | 45 m_applyPropertyToRegularStyle(true), |
| 45 m_applyPropertyToVisitedLinkStyle(false), | 46 m_applyPropertyToVisitedLinkStyle(false), |
| 46 m_hasDirAutoAttribute(false), | 47 m_hasDirAutoAttribute(false), |
| 47 m_fontBuilder(document), | 48 m_fontBuilder(document), |
| 48 m_elementStyleResources(document, document.devicePixelRatio()) { | 49 m_elementStyleResources(document, document.devicePixelRatio()) { |
| 49 if (!m_parentStyle) { | 50 if (!m_parentStyle) { |
| 50 // TODO(jchaffraix): We should make m_parentStyle const | 51 // TODO(jchaffraix): We should make m_parentStyle const |
| 51 // (https://crbug.com/468152) | 52 // (https://crbug.com/468152) |
| 52 m_parentStyle = const_cast<ComputedStyle*>(m_elementContext.parentStyle()); | 53 m_parentStyle = const_cast<ComputedStyle*>(m_elementContext.parentStyle()); |
| 53 } | 54 } |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map = | 110 HeapHashMap<CSSPropertyID, Member<const CSSValue>>* map = |
| 110 m_parsedPropertiesForPendingSubstitutionCache.get(&value); | 111 m_parsedPropertiesForPendingSubstitutionCache.get(&value); |
| 111 if (!map) { | 112 if (!map) { |
| 112 map = new HeapHashMap<CSSPropertyID, Member<const CSSValue>>; | 113 map = new HeapHashMap<CSSPropertyID, Member<const CSSValue>>; |
| 113 m_parsedPropertiesForPendingSubstitutionCache.set(&value, map); | 114 m_parsedPropertiesForPendingSubstitutionCache.set(&value, map); |
| 114 } | 115 } |
| 115 return *map; | 116 return *map; |
| 116 } | 117 } |
| 117 | 118 |
| 118 } // namespace blink | 119 } // namespace blink |
| OLD | NEW |