| 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 StyleAttributeMutationScope mutationScope(this); | 164 StyleAttributeMutationScope mutationScope(this); |
| 165 willMutate(); | 165 willMutate(); |
| 166 | 166 |
| 167 propertySet().parseDeclarationList(text, contextStyleSheet()); | 167 propertySet().parseDeclarationList(text, contextStyleSheet()); |
| 168 | 168 |
| 169 didMutate(PropertyChanged); | 169 didMutate(PropertyChanged); |
| 170 | 170 |
| 171 mutationScope.enqueueMutationRecord(); | 171 mutationScope.enqueueMutationRecord(); |
| 172 } | 172 } |
| 173 | 173 |
| 174 String AbstractPropertySetCSSStyleDeclaration::cssFloat() const |
| 175 { |
| 176 return propertySet().getPropertyValue(CSSPropertyFloat); |
| 177 } |
| 178 |
| 179 void AbstractPropertySetCSSStyleDeclaration::setCSSFloat(const String& value) |
| 180 { |
| 181 propertySet().setProperty(CSSPropertyFloat, value); |
| 182 } |
| 183 |
| 174 String AbstractPropertySetCSSStyleDeclaration::getPropertyValue(const String &pr
opertyName) | 184 String AbstractPropertySetCSSStyleDeclaration::getPropertyValue(const String &pr
opertyName) |
| 175 { | 185 { |
| 176 CSSPropertyID propertyID = cssPropertyID(propertyName); | 186 CSSPropertyID propertyID = cssPropertyID(propertyName); |
| 177 if (!propertyID) | 187 if (!propertyID) |
| 178 return String(); | 188 return String(); |
| 179 return propertySet().getPropertyValue(propertyID); | 189 return propertySet().getPropertyValue(propertyID); |
| 180 } | 190 } |
| 181 | 191 |
| 182 String AbstractPropertySetCSSStyleDeclaration::getPropertyPriority(const String&
propertyName) | 192 String AbstractPropertySetCSSStyleDeclaration::getPropertyPriority(const String&
propertyName) |
| 183 { | 193 { |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 381 } | 391 } |
| 382 #endif | 392 #endif |
| 383 | 393 |
| 384 DEFINE_TRACE(InlineCSSStyleDeclaration) | 394 DEFINE_TRACE(InlineCSSStyleDeclaration) |
| 385 { | 395 { |
| 386 visitor->trace(m_parentElement); | 396 visitor->trace(m_parentElement); |
| 387 AbstractPropertySetCSSStyleDeclaration::trace(visitor); | 397 AbstractPropertySetCSSStyleDeclaration::trace(visitor); |
| 388 } | 398 } |
| 389 | 399 |
| 390 } // namespace blink | 400 } // namespace blink |
| OLD | NEW |