| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 unsigned AbstractPropertySetCSSStyleDeclaration::length() const | 146 unsigned AbstractPropertySetCSSStyleDeclaration::length() const |
| 147 { | 147 { |
| 148 return propertySet().propertyCount(); | 148 return propertySet().propertyCount(); |
| 149 } | 149 } |
| 150 | 150 |
| 151 String AbstractPropertySetCSSStyleDeclaration::item(unsigned i) const | 151 String AbstractPropertySetCSSStyleDeclaration::item(unsigned i) const |
| 152 { | 152 { |
| 153 if (i >= propertySet().propertyCount()) | 153 if (i >= propertySet().propertyCount()) |
| 154 return ""; | 154 return ""; |
| 155 return propertySet().propertyAt(i).cssName(); | 155 return getPropertyName(propertySet().propertyAt(i).id()); |
| 156 } | 156 } |
| 157 | 157 |
| 158 String AbstractPropertySetCSSStyleDeclaration::cssText() const | 158 String AbstractPropertySetCSSStyleDeclaration::cssText() const |
| 159 { | 159 { |
| 160 return propertySet().asText(); | 160 return propertySet().asText(); |
| 161 } | 161 } |
| 162 | 162 |
| 163 void AbstractPropertySetCSSStyleDeclaration::setCSSText(const String& text, Exce
ptionState&) | 163 void AbstractPropertySetCSSStyleDeclaration::setCSSText(const String& text, Exce
ptionState&) |
| 164 { | 164 { |
| 165 StyleAttributeMutationScope mutationScope(this); | 165 StyleAttributeMutationScope mutationScope(this); |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 387 } | 387 } |
| 388 #endif | 388 #endif |
| 389 | 389 |
| 390 DEFINE_TRACE(InlineCSSStyleDeclaration) | 390 DEFINE_TRACE(InlineCSSStyleDeclaration) |
| 391 { | 391 { |
| 392 visitor->trace(m_parentElement); | 392 visitor->trace(m_parentElement); |
| 393 AbstractPropertySetCSSStyleDeclaration::trace(visitor); | 393 AbstractPropertySetCSSStyleDeclaration::trace(visitor); |
| 394 } | 394 } |
| 395 | 395 |
| 396 } // namespace blink | 396 } // namespace blink |
| OLD | NEW |