OLD | NEW |
1 /* | 1 /* |
2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) | 3 * (C) 2002-2003 Dirk Mueller (mueller@kde.org) |
4 * Copyright (C) 2002, 2005, 2006, 2008, 2012 Apple Inc. All rights reserved. | 4 * Copyright (C) 2002, 2005, 2006, 2008, 2012 Apple Inc. 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 29 matching lines...) Expand all Loading... |
40 } | 40 } |
41 | 41 |
42 CSSStyleRule::CSSStyleRule(StyleRule* styleRule, CSSStyleSheet* parent) | 42 CSSStyleRule::CSSStyleRule(StyleRule* styleRule, CSSStyleSheet* parent) |
43 : CSSRule(parent) | 43 : CSSRule(parent) |
44 , m_styleRule(styleRule) | 44 , m_styleRule(styleRule) |
45 { | 45 { |
46 } | 46 } |
47 | 47 |
48 CSSStyleRule::~CSSStyleRule() | 48 CSSStyleRule::~CSSStyleRule() |
49 { | 49 { |
| 50 #if !ENABLE(OILPAN) |
50 if (m_propertiesCSSOMWrapper) | 51 if (m_propertiesCSSOMWrapper) |
51 m_propertiesCSSOMWrapper->clearParentRule(); | 52 m_propertiesCSSOMWrapper->clearParentRule(); |
52 | 53 #endif |
53 if (hasCachedSelectorText()) { | 54 if (hasCachedSelectorText()) { |
54 selectorTextCache().remove(this); | 55 selectorTextCache().remove(this); |
55 setHasCachedSelectorText(false); | 56 setHasCachedSelectorText(false); |
56 } | 57 } |
57 } | 58 } |
58 | 59 |
59 CSSStyleDeclaration* CSSStyleRule::style() const | 60 CSSStyleDeclaration* CSSStyleRule::style() const |
60 { | 61 { |
61 if (!m_propertiesCSSOMWrapper) { | 62 if (!m_propertiesCSSOMWrapper) { |
62 m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_styleR
ule->mutableProperties(), const_cast<CSSStyleRule*>(this)); | 63 m_propertiesCSSOMWrapper = StyleRuleCSSStyleDeclaration::create(m_styleR
ule->mutableProperties(), const_cast<CSSStyleRule*>(this)); |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 { | 126 { |
126 ASSERT(rule); | 127 ASSERT(rule); |
127 m_styleRule = toStyleRule(rule); | 128 m_styleRule = toStyleRule(rule); |
128 if (m_propertiesCSSOMWrapper) | 129 if (m_propertiesCSSOMWrapper) |
129 m_propertiesCSSOMWrapper->reattach(m_styleRule->mutableProperties()); | 130 m_propertiesCSSOMWrapper->reattach(m_styleRule->mutableProperties()); |
130 } | 131 } |
131 | 132 |
132 void CSSStyleRule::trace(Visitor* visitor) | 133 void CSSStyleRule::trace(Visitor* visitor) |
133 { | 134 { |
134 visitor->trace(m_styleRule); | 135 visitor->trace(m_styleRule); |
| 136 visitor->trace(m_propertiesCSSOMWrapper); |
135 CSSRule::trace(visitor); | 137 CSSRule::trace(visitor); |
136 } | 138 } |
137 | 139 |
138 } // namespace WebCore | 140 } // namespace WebCore |
OLD | NEW |