| 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 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. |
| 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) | 6 * (C) 2006 Alexey Proskuryakov (ap@nypop.com) |
| 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/html/HTMLSelectElement.h" | 35 #include "core/html/HTMLSelectElement.h" |
| 36 #include "platform/SSLKeyGenerator.h" | 36 #include "platform/SSLKeyGenerator.h" |
| 37 #include "wtf/StdLibExtras.h" | 37 #include "wtf/StdLibExtras.h" |
| 38 | 38 |
| 39 using namespace WebCore; | 39 using namespace WebCore; |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace WebCore { |
| 42 | 42 |
| 43 using namespace HTMLNames; | 43 using namespace HTMLNames; |
| 44 | 44 |
| 45 HTMLKeygenElement::HTMLKeygenElement(const QualifiedName& tagName, Document& doc
ument, HTMLFormElement* form) | 45 HTMLKeygenElement::HTMLKeygenElement(Document& document, HTMLFormElement* form) |
| 46 : HTMLFormControlElementWithState(tagName, document, form) | 46 : HTMLFormControlElementWithState(keygenTag, document, form) |
| 47 { | 47 { |
| 48 ASSERT(hasTagName(keygenTag)); | |
| 49 ScriptWrappable::init(this); | 48 ScriptWrappable::init(this); |
| 50 ensureUserAgentShadowRoot(); | 49 ensureUserAgentShadowRoot(); |
| 51 } | 50 } |
| 52 | 51 |
| 53 void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot& root) | 52 void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot& root) |
| 54 { | 53 { |
| 55 DEFINE_STATIC_LOCAL(AtomicString, keygenSelectPseudoId, ("-webkit-keygen-sel
ect", AtomicString::ConstructFromLiteral)); | 54 DEFINE_STATIC_LOCAL(AtomicString, keygenSelectPseudoId, ("-webkit-keygen-sel
ect", AtomicString::ConstructFromLiteral)); |
| 56 | 55 |
| 57 Vector<String> keys; | 56 Vector<String> keys; |
| 58 getSupportedKeySizes(locale(), keys); | 57 getSupportedKeySizes(locale(), keys); |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 ShadowRoot* root = userAgentShadowRoot(); | 106 ShadowRoot* root = userAgentShadowRoot(); |
| 108 return root ? toHTMLSelectElement(root->firstChild()) : 0; | 107 return root ? toHTMLSelectElement(root->firstChild()) : 0; |
| 109 } | 108 } |
| 110 | 109 |
| 111 bool HTMLKeygenElement::isInteractiveContent() const | 110 bool HTMLKeygenElement::isInteractiveContent() const |
| 112 { | 111 { |
| 113 return true; | 112 return true; |
| 114 } | 113 } |
| 115 | 114 |
| 116 } // namespace | 115 } // namespace |
| OLD | NEW |