| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 cloneChildNodes(clone.get()); | 158 cloneChildNodes(clone.get()); |
| 159 return clone.release(); | 159 return clone.release(); |
| 160 } | 160 } |
| 161 | 161 |
| 162 // DOM Section 1.1.1 | 162 // DOM Section 1.1.1 |
| 163 bool Attr::childTypeAllowed(NodeType type) const | 163 bool Attr::childTypeAllowed(NodeType type) const |
| 164 { | 164 { |
| 165 return TEXT_NODE == type; | 165 return TEXT_NODE == type; |
| 166 } | 166 } |
| 167 | 167 |
| 168 void Attr::childrenChanged(bool, Node*, Node*, int) | 168 void Attr::childrenChanged(const ChildrenChange&) |
| 169 { | 169 { |
| 170 if (m_ignoreChildrenChanged > 0) | 170 if (m_ignoreChildrenChanged > 0) |
| 171 return; | 171 return; |
| 172 | 172 |
| 173 QualifiedName name = qualifiedName(); | 173 QualifiedName name = qualifiedName(); |
| 174 invalidateNodeListCachesInAncestors(&name, m_element); | 174 invalidateNodeListCachesInAncestors(&name, m_element); |
| 175 | 175 |
| 176 StringBuilder valueBuilder; | 176 StringBuilder valueBuilder; |
| 177 for (Node *n = firstChild(); n; n = n->nextSibling()) { | 177 for (Node *n = firstChild(); n; n = n->nextSibling()) { |
| 178 if (n->isTextNode()) | 178 if (n->isTextNode()) |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |