| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 return hrefString(); | 107 return hrefString(); |
| 108 } | 108 } |
| 109 | 109 |
| 110 String SVGScriptElement::charsetAttributeValue() const | 110 String SVGScriptElement::charsetAttributeValue() const |
| 111 { | 111 { |
| 112 return String(); | 112 return String(); |
| 113 } | 113 } |
| 114 | 114 |
| 115 String SVGScriptElement::typeAttributeValue() const | 115 String SVGScriptElement::typeAttributeValue() const |
| 116 { | 116 { |
| 117 return getAttribute(SVGNames::typeAttr).string(); | 117 return getAttribute(SVGNames::typeAttr).getString(); |
| 118 } | 118 } |
| 119 | 119 |
| 120 String SVGScriptElement::languageAttributeValue() const | 120 String SVGScriptElement::languageAttributeValue() const |
| 121 { | 121 { |
| 122 return String(); | 122 return String(); |
| 123 } | 123 } |
| 124 | 124 |
| 125 String SVGScriptElement::forAttributeValue() const | 125 String SVGScriptElement::forAttributeValue() const |
| 126 { | 126 { |
| 127 return String(); | 127 return String(); |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 #endif | 168 #endif |
| 169 | 169 |
| 170 DEFINE_TRACE(SVGScriptElement) | 170 DEFINE_TRACE(SVGScriptElement) |
| 171 { | 171 { |
| 172 visitor->trace(m_loader); | 172 visitor->trace(m_loader); |
| 173 SVGElement::trace(visitor); | 173 SVGElement::trace(visitor); |
| 174 SVGURIReference::trace(visitor); | 174 SVGURIReference::trace(visitor); |
| 175 } | 175 } |
| 176 | 176 |
| 177 } // namespace blink | 177 } // namespace blink |
| OLD | NEW |