| OLD | NEW |
| 1 /* | 1 /* |
| 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) | 2 * (C) 1999-2003 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
| 4 * Copyright (C) 2011 Research In Motion Limited. All rights reserved. | 4 * Copyright (C) 2011 Research In Motion Limited. 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 String result; | 232 String result; |
| 233 bool changed = propertySet().removeProperty(propertyID, &result); | 233 bool changed = propertySet().removeProperty(propertyID, &result); |
| 234 | 234 |
| 235 didMutate(changed ? PropertyChanged : NoChanges); | 235 didMutate(changed ? PropertyChanged : NoChanges); |
| 236 | 236 |
| 237 if (changed) | 237 if (changed) |
| 238 mutationScope.enqueueMutationRecord(); | 238 mutationScope.enqueueMutationRecord(); |
| 239 return result; | 239 return result; |
| 240 } | 240 } |
| 241 | 241 |
| 242 PassRefPtrWillBeRawPtr<CSSValue> AbstractPropertySetCSSStyleDeclaration::getProp
ertyCSSValueInternal(CSSPropertyID propertyID) | 242 NullableCSSValue AbstractPropertySetCSSStyleDeclaration::getPropertyCSSValueInte
rnal(CSSPropertyID propertyID) |
| 243 { | 243 { |
| 244 return propertySet().getPropertyCSSValue(propertyID); | 244 return propertySet().getPropertyCSSValue(propertyID); |
| 245 } | 245 } |
| 246 | 246 |
| 247 String AbstractPropertySetCSSStyleDeclaration::getPropertyValueInternal(CSSPrope
rtyID propertyID) | 247 String AbstractPropertySetCSSStyleDeclaration::getPropertyValueInternal(CSSPrope
rtyID propertyID) |
| 248 { | 248 { |
| 249 return propertySet().getPropertyValue(propertyID); | 249 return propertySet().getPropertyValue(propertyID); |
| 250 } | 250 } |
| 251 | 251 |
| 252 void AbstractPropertySetCSSStyleDeclaration::setPropertyInternal(CSSPropertyID u
nresolvedProperty, const String& value, bool important, ExceptionState&) | 252 void AbstractPropertySetCSSStyleDeclaration::setPropertyInternal(CSSPropertyID u
nresolvedProperty, const String& value, bool important, ExceptionState&) |
| 253 { | 253 { |
| 254 StyleAttributeMutationScope mutationScope(this); | 254 StyleAttributeMutationScope mutationScope(this); |
| 255 willMutate(); | 255 willMutate(); |
| 256 | 256 |
| 257 bool changed = propertySet().setProperty(unresolvedProperty, value, importan
t, contextStyleSheet()); | 257 bool changed = propertySet().setProperty(unresolvedProperty, value, importan
t, contextStyleSheet()); |
| 258 | 258 |
| 259 didMutate(changed ? PropertyChanged : NoChanges); | 259 didMutate(changed ? PropertyChanged : NoChanges); |
| 260 | 260 |
| 261 if (changed) | 261 if (changed) |
| 262 mutationScope.enqueueMutationRecord(); | 262 mutationScope.enqueueMutationRecord(); |
| 263 } | 263 } |
| 264 | 264 |
| 265 StyleSheetContents* AbstractPropertySetCSSStyleDeclaration::contextStyleSheet()
const | 265 StyleSheetContents* AbstractPropertySetCSSStyleDeclaration::contextStyleSheet()
const |
| 266 { | 266 { |
| 267 CSSStyleSheet* cssStyleSheet = parentStyleSheet(); | 267 CSSStyleSheet* cssStyleSheet = parentStyleSheet(); |
| 268 return cssStyleSheet ? cssStyleSheet->contents() : 0; | 268 return cssStyleSheet ? cssStyleSheet->contents() : 0; |
| 269 } | 269 } |
| 270 | 270 |
| 271 bool AbstractPropertySetCSSStyleDeclaration::cssPropertyMatches(CSSPropertyID pr
opertyID, const CSSValue* propertyValue) const | 271 bool AbstractPropertySetCSSStyleDeclaration::cssPropertyMatches(CSSPropertyID pr
opertyID, const CSSValue propertyValue) const |
| 272 { | 272 { |
| 273 return propertySet().propertyMatches(propertyID, propertyValue); | 273 return propertySet().propertyMatches(propertyID, propertyValue); |
| 274 } | 274 } |
| 275 | 275 |
| 276 DEFINE_TRACE(AbstractPropertySetCSSStyleDeclaration) | 276 DEFINE_TRACE(AbstractPropertySetCSSStyleDeclaration) |
| 277 { | 277 { |
| 278 CSSStyleDeclaration::trace(visitor); | 278 CSSStyleDeclaration::trace(visitor); |
| 279 } | 279 } |
| 280 | 280 |
| 281 StyleRuleCSSStyleDeclaration::StyleRuleCSSStyleDeclaration(MutableStylePropertyS
et& propertySetArg, CSSRule* parentRule) | 281 StyleRuleCSSStyleDeclaration::StyleRuleCSSStyleDeclaration(MutableStylePropertyS
et& propertySetArg, CSSRule* parentRule) |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 } | 382 } |
| 383 #endif | 383 #endif |
| 384 | 384 |
| 385 DEFINE_TRACE(InlineCSSStyleDeclaration) | 385 DEFINE_TRACE(InlineCSSStyleDeclaration) |
| 386 { | 386 { |
| 387 visitor->trace(m_parentElement); | 387 visitor->trace(m_parentElement); |
| 388 AbstractPropertySetCSSStyleDeclaration::trace(visitor); | 388 AbstractPropertySetCSSStyleDeclaration::trace(visitor); |
| 389 } | 389 } |
| 390 | 390 |
| 391 } // namespace blink | 391 } // namespace blink |
| OLD | NEW |