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 |
11 * version 2 of the License, or (at your option) any later version. | 11 * version 2 of the License, or (at your option) any later version. |
12 * | 12 * |
13 * This library is distributed in the hope that it will be useful, | 13 * This library is distributed in the hope that it will be useful, |
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 * Library General Public License for more details. | 16 * Library General Public License for more details. |
17 * | 17 * |
18 * You should have received a copy of the GNU Library General Public License | 18 * You should have received a copy of the GNU Library General Public License |
19 * along with this library; see the file COPYING.LIB. If not, write to | 19 * along with this library; see the file COPYING.LIB. If not, write to |
20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
22 */ | 22 */ |
23 #include "config.h" | 23 #include "config.h" |
24 #include "core/dom/Attr.h" | 24 #include "core/dom/Attr.h" |
25 | 25 |
26 #include "XMLNSNames.h" | 26 #include "XMLNSNames.h" |
27 #include "bindings/v8/ExceptionMessages.h" | |
28 #include "bindings/v8/ExceptionState.h" | 27 #include "bindings/v8/ExceptionState.h" |
29 #include "bindings/v8/ExceptionStatePlaceholder.h" | 28 #include "bindings/v8/ExceptionStatePlaceholder.h" |
30 #include "core/dom/Element.h" | 29 #include "core/dom/Element.h" |
31 #include "core/dom/ExceptionCode.h" | 30 #include "core/dom/ExceptionCode.h" |
32 #include "core/dom/Text.h" | 31 #include "core/dom/Text.h" |
33 #include "core/events/ScopedEventQueue.h" | 32 #include "core/events/ScopedEventQueue.h" |
34 #include "core/frame/UseCounter.h" | 33 #include "core/frame/UseCounter.h" |
35 #include "wtf/text/AtomicString.h" | 34 #include "wtf/text/AtomicString.h" |
36 #include "wtf/text/StringBuilder.h" | 35 #include "wtf/text/StringBuilder.h" |
37 | 36 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 92 |
94 void Attr::setPrefix(const AtomicString& prefix, ExceptionState& exceptionState) | 93 void Attr::setPrefix(const AtomicString& prefix, ExceptionState& exceptionState) |
95 { | 94 { |
96 UseCounter::count(document(), UseCounter::AttributeSetPrefix); | 95 UseCounter::count(document(), UseCounter::AttributeSetPrefix); |
97 | 96 |
98 checkSetPrefix(prefix, exceptionState); | 97 checkSetPrefix(prefix, exceptionState); |
99 if (exceptionState.hadException()) | 98 if (exceptionState.hadException()) |
100 return; | 99 return; |
101 | 100 |
102 if (prefix == xmlnsAtom && namespaceURI() != XMLNSNames::xmlnsNamespaceURI)
{ | 101 if (prefix == xmlnsAtom && namespaceURI() != XMLNSNames::xmlnsNamespaceURI)
{ |
103 exceptionState.throwDOMException(NamespaceError, ExceptionMessages::fail
edToSet("prefix", "Attr", "The prefix '" + xmlnsAtom + "' may not be used on the
namespace '" + namespaceURI() + "'.")); | 102 exceptionState.throwDOMException(NamespaceError, "The prefix '" + xmlnsA
tom + "' may not be used on the namespace '" + namespaceURI() + "'."); |
104 return; | 103 return; |
105 } | 104 } |
106 | 105 |
107 if (this->qualifiedName() == xmlnsAtom) { | 106 if (this->qualifiedName() == xmlnsAtom) { |
108 exceptionState.throwDOMException(NamespaceError, ExceptionMessages::fail
edToSet("prefix", "Attr", "The prefix '" + prefix + "' may not be used as a name
space prefix for attributes whose qualified name is '" + xmlnsAtom + "'.")); | 107 exceptionState.throwDOMException(NamespaceError, "The prefix '" + prefix
+ "' may not be used as a namespace prefix for attributes whose qualified name
is '" + xmlnsAtom + "'."); |
109 return; | 108 return; |
110 } | 109 } |
111 | 110 |
112 const AtomicString& newPrefix = prefix.isEmpty() ? nullAtom : prefix; | 111 const AtomicString& newPrefix = prefix.isEmpty() ? nullAtom : prefix; |
113 | 112 |
114 if (m_element) | 113 if (m_element) |
115 elementAttribute().setPrefix(newPrefix); | 114 elementAttribute().setPrefix(newPrefix); |
116 m_name.setPrefix(newPrefix); | 115 m_name.setPrefix(newPrefix); |
117 } | 116 } |
118 | 117 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 } | 213 } |
215 | 214 |
216 void Attr::attachToElement(Element* element) | 215 void Attr::attachToElement(Element* element) |
217 { | 216 { |
218 ASSERT(!m_element); | 217 ASSERT(!m_element); |
219 m_element = element; | 218 m_element = element; |
220 m_standaloneValue = nullAtom; | 219 m_standaloneValue = nullAtom; |
221 } | 220 } |
222 | 221 |
223 } | 222 } |
OLD | NEW |