| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2012 Apple Inc. All rights
reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2012 Apple Inc. All rights
reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 { | 196 { |
| 197 if (m_element) | 197 if (m_element) |
| 198 return m_element->getAttribute(qualifiedName()); | 198 return m_element->getAttribute(qualifiedName()); |
| 199 return m_standaloneValueOrAttachedLocalName; | 199 return m_standaloneValueOrAttachedLocalName; |
| 200 } | 200 } |
| 201 | 201 |
| 202 Attribute& Attr::elementAttribute() | 202 Attribute& Attr::elementAttribute() |
| 203 { | 203 { |
| 204 ASSERT(m_element); | 204 ASSERT(m_element); |
| 205 ASSERT(m_element->elementData()); | 205 ASSERT(m_element->elementData()); |
| 206 return *m_element->ensureUniqueElementData().findAttributeByName(qualifiedNa
me()); | 206 return *m_element->ensureUniqueElementData().attributes().find(qualifiedName
()); |
| 207 } | 207 } |
| 208 | 208 |
| 209 void Attr::detachFromElementWithValue(const AtomicString& value) | 209 void Attr::detachFromElementWithValue(const AtomicString& value) |
| 210 { | 210 { |
| 211 ASSERT(m_element); | 211 ASSERT(m_element); |
| 212 m_standaloneValueOrAttachedLocalName = value; | 212 m_standaloneValueOrAttachedLocalName = value; |
| 213 m_element = nullptr; | 213 m_element = nullptr; |
| 214 } | 214 } |
| 215 | 215 |
| 216 void Attr::attachToElement(Element* element, const AtomicString& attachedLocalNa
me) | 216 void Attr::attachToElement(Element* element, const AtomicString& attachedLocalNa
me) |
| 217 { | 217 { |
| 218 ASSERT(!m_element); | 218 ASSERT(!m_element); |
| 219 m_element = element; | 219 m_element = element; |
| 220 m_standaloneValueOrAttachedLocalName = attachedLocalName; | 220 m_standaloneValueOrAttachedLocalName = attachedLocalName; |
| 221 } | 221 } |
| 222 | 222 |
| 223 void Attr::trace(Visitor* visitor) | 223 void Attr::trace(Visitor* visitor) |
| 224 { | 224 { |
| 225 visitor->trace(m_element); | 225 visitor->trace(m_element); |
| 226 ContainerNode::trace(visitor); | 226 ContainerNode::trace(visitor); |
| 227 } | 227 } |
| 228 | 228 |
| 229 } | 229 } |
| OLD | NEW |