| 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) 2000 Stefan Schimanski (1Stein@gmx.de) | 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) |
| 5 * Copyright (C) 2004, 2005, 2006, 2008, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2008, 2010 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "core/dom/Attribute.h" | 27 #include "core/dom/Attribute.h" |
| 28 #include "core/dom/Document.h" | 28 #include "core/dom/Document.h" |
| 29 | 29 |
| 30 namespace blink { | 30 namespace blink { |
| 31 | 31 |
| 32 using namespace HTMLNames; | 32 using namespace HTMLNames; |
| 33 | 33 |
| 34 inline HTMLParamElement::HTMLParamElement(Document& document) | 34 inline HTMLParamElement::HTMLParamElement(Document& document) |
| 35 : HTMLElement(paramTag, document) | 35 : HTMLElement(paramTag, document) |
| 36 { | 36 { |
| 37 ScriptWrappable::init(this); | |
| 38 } | 37 } |
| 39 | 38 |
| 40 DEFINE_NODE_FACTORY(HTMLParamElement) | 39 DEFINE_NODE_FACTORY(HTMLParamElement) |
| 41 | 40 |
| 42 const AtomicString& HTMLParamElement::name() const | 41 const AtomicString& HTMLParamElement::name() const |
| 43 { | 42 { |
| 44 if (hasName()) | 43 if (hasName()) |
| 45 return getNameAttribute(); | 44 return getNameAttribute(); |
| 46 return document().isHTMLDocument() ? emptyAtom : getIdAttribute(); | 45 return document().isHTMLDocument() ? emptyAtom : getIdAttribute(); |
| 47 } | 46 } |
| 48 | 47 |
| 49 const AtomicString& HTMLParamElement::value() const | 48 const AtomicString& HTMLParamElement::value() const |
| 50 { | 49 { |
| 51 return fastGetAttribute(valueAttr); | 50 return fastGetAttribute(valueAttr); |
| 52 } | 51 } |
| 53 | 52 |
| 54 bool HTMLParamElement::isURLParameter(const String& name) | 53 bool HTMLParamElement::isURLParameter(const String& name) |
| 55 { | 54 { |
| 56 return equalIgnoringCase(name, "data") || equalIgnoringCase(name, "movie") |
| equalIgnoringCase(name, "src"); | 55 return equalIgnoringCase(name, "data") || equalIgnoringCase(name, "movie") |
| equalIgnoringCase(name, "src"); |
| 57 } | 56 } |
| 58 | 57 |
| 59 bool HTMLParamElement::isURLAttribute(const Attribute& attribute) const | 58 bool HTMLParamElement::isURLAttribute(const Attribute& attribute) const |
| 60 { | 59 { |
| 61 if (attribute.name() == valueAttr && isURLParameter(name())) | 60 if (attribute.name() == valueAttr && isURLParameter(name())) |
| 62 return true; | 61 return true; |
| 63 return HTMLElement::isURLAttribute(attribute); | 62 return HTMLElement::isURLAttribute(attribute); |
| 64 } | 63 } |
| 65 | 64 |
| 66 } | 65 } |
| OLD | NEW |