| 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 29 matching lines...) Expand all Loading... |
| 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); | 45 ScriptWrappable::init(this); |
| 46 } | 46 } |
| 47 | 47 |
| 48 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do
cument, HTMLFormElement* form) | 48 PassRefPtrWillBeRawPtr<HTMLOutputElement> HTMLOutputElement::create(Document& do
cument, HTMLFormElement* form) |
| 49 { | 49 { |
| 50 return adoptRefWillBeRefCountedGarbageCollected(new HTMLOutputElement(docume
nt, form)); | 50 return adoptRefWillBeNoop(new HTMLOutputElement(document, form)); |
| 51 } | 51 } |
| 52 | 52 |
| 53 const AtomicString& HTMLOutputElement::formControlType() const | 53 const AtomicString& HTMLOutputElement::formControlType() const |
| 54 { | 54 { |
| 55 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con
structFromLiteral)); | 55 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con
structFromLiteral)); |
| 56 return output; | 56 return output; |
| 57 } | 57 } |
| 58 | 58 |
| 59 bool HTMLOutputElement::supportsFocus() const | 59 bool HTMLOutputElement::supportsFocus() const |
| 60 { | 60 { |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 } | 129 } |
| 130 | 130 |
| 131 | 131 |
| 132 void HTMLOutputElement::trace(Visitor* visitor) | 132 void HTMLOutputElement::trace(Visitor* visitor) |
| 133 { | 133 { |
| 134 visitor->trace(m_tokens); | 134 visitor->trace(m_tokens); |
| 135 HTMLFormControlElement::trace(visitor); | 135 HTMLFormControlElement::trace(visitor); |
| 136 } | 136 } |
| 137 | 137 |
| 138 } // namespace | 138 } // namespace |
| OLD | NEW |