OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2010 Google Inc. All rights reserved. | 2 * Copyright (c) 2010 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 24 matching lines...) Expand all Loading... |
35 #include "core/HTMLNames.h" | 35 #include "core/HTMLNames.h" |
36 | 36 |
37 namespace blink { | 37 namespace blink { |
38 | 38 |
39 inline HTMLOutputElement::HTMLOutputElement(Document& document, HTMLFormElement*
form) | 39 inline HTMLOutputElement::HTMLOutputElement(Document& document, HTMLFormElement*
form) |
40 : HTMLFormControlElement(HTMLNames::outputTag, document, form) | 40 : HTMLFormControlElement(HTMLNames::outputTag, document, form) |
41 , m_isDefaultValueMode(true) | 41 , m_isDefaultValueMode(true) |
42 , m_defaultValue("") | 42 , m_defaultValue("") |
43 , m_tokens(DOMSettableTokenList::create()) | 43 , m_tokens(DOMSettableTokenList::create()) |
44 { | 44 { |
45 ScriptWrappable::init(this); | |
46 } | 45 } |
47 | 46 |
48 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do
cument, HTMLFormElement* form) | 47 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do
cument, HTMLFormElement* form) |
49 { | 48 { |
50 return adoptRefWillBeNoop(new HTMLOutputElement(document, form)); | 49 return adoptRefWillBeNoop(new HTMLOutputElement(document, form)); |
51 } | 50 } |
52 | 51 |
53 const AtomicString& HTMLOutputElement::formControlType() const | 52 const AtomicString& HTMLOutputElement::formControlType() const |
54 { | 53 { |
55 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con
structFromLiteral)); | 54 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con
structFromLiteral)); |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 } | 128 } |
130 | 129 |
131 | 130 |
132 void HTMLOutputElement::trace(Visitor* visitor) | 131 void HTMLOutputElement::trace(Visitor* visitor) |
133 { | 132 { |
134 visitor->trace(m_tokens); | 133 visitor->trace(m_tokens); |
135 HTMLFormControlElement::trace(visitor); | 134 HTMLFormControlElement::trace(visitor); |
136 } | 135 } |
137 | 136 |
138 } // namespace | 137 } // namespace |
OLD | NEW |