| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) | 3 * (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com) |
| 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) | 4 * Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com) |
| 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r
ights reserved. | 5 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All r
ights reserved. |
| 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> | 6 * Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org> |
| 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> | 7 * Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org> |
| 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. | 9 * Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2011. All rights reserved. |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 StyleRuleBase* rule = rules[i].get(); | 146 StyleRuleBase* rule = rules[i].get(); |
| 147 | 147 |
| 148 if (rule->isStyleRule()) { | 148 if (rule->isStyleRule()) { |
| 149 StyleRule* styleRule = toStyleRule(rule); | 149 StyleRule* styleRule = toStyleRule(rule); |
| 150 | 150 |
| 151 const CSSSelectorList& selectorList = styleRule->selectorList(); | 151 const CSSSelectorList& selectorList = styleRule->selectorList(); |
| 152 for (size_t selectorIndex = 0; selectorIndex != kNotFound; selectorI
ndex = selectorList.indexOfNextSelectorAfter(selectorIndex)) | 152 for (size_t selectorIndex = 0; selectorIndex != kNotFound; selectorI
ndex = selectorList.indexOfNextSelectorAfter(selectorIndex)) |
| 153 addRule(styleRule, selectorIndex); | 153 addRule(styleRule, selectorIndex); |
| 154 } else if (rule->isFontFaceRule()) { | 154 } else if (rule->isFontFaceRule()) { |
| 155 addFontFaceRule(toStyleRuleFontFace(rule)); | 155 addFontFaceRule(toStyleRuleFontFace(rule)); |
| 156 } else if (rule->isKeyframesRule()) { | |
| 157 // TODO(esprehn): remove this. | |
| 158 } else if (rule->isSupportsRule() && toStyleRuleSupports(rule)->conditio
nIsSupported()) { | 156 } else if (rule->isSupportsRule() && toStyleRuleSupports(rule)->conditio
nIsSupported()) { |
| 159 addChildRules(toStyleRuleSupports(rule)->childRules()); | 157 addChildRules(toStyleRuleSupports(rule)->childRules()); |
| 160 } | 158 } |
| 161 } | 159 } |
| 162 } | 160 } |
| 163 | 161 |
| 164 void RuleSet::addRulesFromSheet(StyleSheetContents* sheet) | 162 void RuleSet::addRulesFromSheet(StyleSheetContents* sheet) |
| 165 { | 163 { |
| 166 TRACE_EVENT0("blink", "RuleSet::addRulesFromSheet"); | 164 TRACE_EVENT0("blink", "RuleSet::addRulesFromSheet"); |
| 167 ASSERT(sheet); | 165 ASSERT(sheet); |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 | 203 |
| 206 #ifndef NDEBUG | 204 #ifndef NDEBUG |
| 207 void RuleSet::show() | 205 void RuleSet::show() |
| 208 { | 206 { |
| 209 for (Vector<RuleData>::const_iterator it = m_allRules.begin(); it != m_allRu
les.end(); ++it) | 207 for (Vector<RuleData>::const_iterator it = m_allRules.begin(); it != m_allRu
les.end(); ++it) |
| 210 it->selector().show(); | 208 it->selector().show(); |
| 211 } | 209 } |
| 212 #endif | 210 #endif |
| 213 | 211 |
| 214 } // namespace blink | 212 } // namespace blink |
| OLD | NEW |