| 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 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 parent->removeChild(this, IGNORE_EXCEPTION); | 219 parent->removeChild(this, IGNORE_EXCEPTION); |
| 220 return 0; | 220 return 0; |
| 221 } | 221 } |
| 222 | 222 |
| 223 setData(newText); | 223 setData(newText); |
| 224 return protectedThis.release(); | 224 return protectedThis.release(); |
| 225 } | 225 } |
| 226 | 226 |
| 227 String Text::nodeName() const | 227 String Text::nodeName() const |
| 228 { | 228 { |
| 229 return textAtom.string(); | 229 return "#text"; |
| 230 } | 230 } |
| 231 | 231 |
| 232 Node::NodeType Text::nodeType() const | 232 Node::NodeType Text::nodeType() const |
| 233 { | 233 { |
| 234 return TEXT_NODE; | 234 return TEXT_NODE; |
| 235 } | 235 } |
| 236 | 236 |
| 237 PassRefPtr<Node> Text::cloneNode(bool /*deep*/) | 237 PassRefPtr<Node> Text::cloneNode(bool /*deep*/) |
| 238 { | 238 { |
| 239 return cloneWithData(data()); | 239 return cloneWithData(data()); |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 result.appendLiteral("; "); | 373 result.appendLiteral("; "); |
| 374 result.appendLiteral("value="); | 374 result.appendLiteral("value="); |
| 375 result.append(s); | 375 result.append(s); |
| 376 } | 376 } |
| 377 | 377 |
| 378 strncpy(buffer, result.toString().utf8().data(), length - 1); | 378 strncpy(buffer, result.toString().utf8().data(), length - 1); |
| 379 } | 379 } |
| 380 #endif | 380 #endif |
| 381 | 381 |
| 382 } // namespace WebCore | 382 } // namespace WebCore |
| OLD | NEW |