| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 | 32 |
| 33 #include "core/dom/CustomElementDefinition.h" | 33 #include "core/dom/CustomElementDefinition.h" |
| 34 | 34 |
| 35 #include "bindings/v8/CustomElementHelpers.h" | |
| 36 #include <wtf/Assertions.h> | 35 #include <wtf/Assertions.h> |
| 37 | 36 |
| 38 #if ENABLE(SVG) | 37 #if ENABLE(SVG) |
| 39 #include "SVGNames.h" | |
| 40 #endif | 38 #endif |
| 41 | 39 |
| 42 namespace WebCore { | 40 namespace WebCore { |
| 43 | 41 |
| 44 PassRefPtr<CustomElementDefinition> CustomElementDefinition::create(ScriptState*
state, const AtomicString& type, const AtomicString& name, const AtomicString&
namespaceURI, const ScriptValue& prototype) | 42 PassRefPtr<CustomElementDefinition> CustomElementDefinition::create(ScriptState*
state, const AtomicString& type, const AtomicString& name, const AtomicString&
namespaceURI, const ScriptValue& prototype) |
| 45 { | 43 { |
| 46 ASSERT(CustomElementHelpers::isValidPrototypeParameter(prototype, state)); | 44 ASSERT(CustomElementHelpers::isValidPrototypeParameter(prototype, state)); |
| 47 ASSERT(name == type || QualifiedName(nullAtom, name, namespaceURI) == *Custo
mElementHelpers::findLocalName(prototype)); | 45 ASSERT(name == type || QualifiedName(nullAtom, name, namespaceURI) == *Custo
mElementHelpers::findLocalName(prototype)); |
| 48 #if ENABLE(SVG) | 46 #if ENABLE(SVG) |
| 49 ASSERT(namespaceURI == HTMLNames::xhtmlNamespaceURI || namespaceURI == SVGNa
mes::svgNamespaceURI); | 47 ASSERT(namespaceURI == HTMLNames::xhtmlNamespaceURI || namespaceURI == SVGNa
mes::svgNamespaceURI); |
| 50 #else | 48 #else |
| 51 ASSERT(namespaceURI == HTMLNames::xhtmlNamespaceURI); | 49 ASSERT(namespaceURI == HTMLNames::xhtmlNamespaceURI); |
| 52 #endif | 50 #endif |
| 53 | 51 |
| 54 RefPtr<CustomElementDefinition> created = adoptRef(new CustomElementDefiniti
on(type, name, namespaceURI, prototype)); | 52 RefPtr<CustomElementDefinition> created = adoptRef(new CustomElementDefiniti
on(type, name, namespaceURI, prototype)); |
| 55 return created.release(); | 53 return created.release(); |
| 56 } | 54 } |
| 57 | 55 |
| 58 CustomElementDefinition::CustomElementDefinition(const AtomicString& type, const
AtomicString& name, const AtomicString& namespaceURI, const ScriptValue& protot
ype) | 56 CustomElementDefinition::CustomElementDefinition(const AtomicString& type, const
AtomicString& name, const AtomicString& namespaceURI, const ScriptValue& protot
ype) |
| 59 : m_prototype(prototype) | 57 : m_prototype(prototype) |
| 60 , m_type(type) | 58 , m_type(type) |
| 61 , m_tag(QualifiedName(nullAtom, name, namespaceURI)) | 59 , m_tag(QualifiedName(nullAtom, name, namespaceURI)) |
| 62 { | 60 { |
| 63 } | 61 } |
| 64 | 62 |
| 65 } | 63 } |
| OLD | NEW |