| 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 28 matching lines...) Expand all Loading... |
| 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(Document& document, HTMLFormElement* form) | 45 HTMLKeygenElement::HTMLKeygenElement(Document& document, HTMLFormElement* form) |
| 46 : HTMLFormControlElementWithState(keygenTag, document, form) | 46 : HTMLFormControlElementWithState(keygenTag, document, form) |
| 47 { | 47 { |
| 48 ScriptWrappable::init(this); | 48 ScriptWrappable::init(this); |
| 49 ensureUserAgentShadowRoot(); | 49 } |
| 50 |
| 51 PassRefPtrWillBeRawPtr<HTMLKeygenElement> HTMLKeygenElement::create(Document& do
cument, HTMLFormElement* form) |
| 52 { |
| 53 RefPtrWillBeRawPtr<HTMLKeygenElement> keygen = adoptRefWillBeRefCountedGarba
geCollected(new HTMLKeygenElement(document, form)); |
| 54 keygen->ensureUserAgentShadowRoot(); |
| 55 return keygen.release(); |
| 50 } | 56 } |
| 51 | 57 |
| 52 void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot& root) | 58 void HTMLKeygenElement::didAddUserAgentShadowRoot(ShadowRoot& root) |
| 53 { | 59 { |
| 54 DEFINE_STATIC_LOCAL(AtomicString, keygenSelectPseudoId, ("-webkit-keygen-sel
ect", AtomicString::ConstructFromLiteral)); | 60 DEFINE_STATIC_LOCAL(AtomicString, keygenSelectPseudoId, ("-webkit-keygen-sel
ect", AtomicString::ConstructFromLiteral)); |
| 55 | 61 |
| 56 Vector<String> keys; | 62 Vector<String> keys; |
| 57 getSupportedKeySizes(locale(), keys); | 63 getSupportedKeySizes(locale(), keys); |
| 58 | 64 |
| 59 // Create a select element with one option element for each key size. | 65 // Create a select element with one option element for each key size. |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 { | 117 { |
| 112 return true; | 118 return true; |
| 113 } | 119 } |
| 114 | 120 |
| 115 bool HTMLKeygenElement::supportsAutofocus() const | 121 bool HTMLKeygenElement::supportsAutofocus() const |
| 116 { | 122 { |
| 117 return true; | 123 return true; |
| 118 } | 124 } |
| 119 | 125 |
| 120 } // namespace | 126 } // namespace |
| OLD | NEW |