| 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 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "core/html/HTMLOutputElement.h" | 32 #include "core/html/HTMLOutputElement.h" |
| 33 | 33 |
| 34 #include "HTMLNames.h" | 34 #include "HTMLNames.h" |
| 35 #include "bindings/v8/ExceptionStatePlaceholder.h" | 35 #include "bindings/v8/ExceptionStatePlaceholder.h" |
| 36 | 36 |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 inline HTMLOutputElement::HTMLOutputElement(const QualifiedName& tagName, Docume
nt* document, HTMLFormElement* form) | 39 inline HTMLOutputElement::HTMLOutputElement(const QualifiedName& tagName, Docume
nt& document, HTMLFormElement* form) |
| 40 : HTMLFormControlElement(tagName, document, form) | 40 : HTMLFormControlElement(tagName, document, form) |
| 41 , m_isDefaultValueMode(true) | 41 , m_isDefaultValueMode(true) |
| 42 , m_isSetTextContentInProgress(false) | 42 , m_isSetTextContentInProgress(false) |
| 43 , m_defaultValue("") | 43 , m_defaultValue("") |
| 44 , m_tokens(DOMSettableTokenList::create()) | 44 , m_tokens(DOMSettableTokenList::create()) |
| 45 { | 45 { |
| 46 ScriptWrappable::init(this); | 46 ScriptWrappable::init(this); |
| 47 } | 47 } |
| 48 | 48 |
| 49 PassRefPtr<HTMLOutputElement> HTMLOutputElement::create(const QualifiedName& tag
Name, Document* document, HTMLFormElement* form) | 49 PassRefPtr<HTMLOutputElement> HTMLOutputElement::create(const QualifiedName& tag
Name, Document& document, HTMLFormElement* form) |
| 50 { | 50 { |
| 51 return adoptRef(new HTMLOutputElement(tagName, document, form)); | 51 return adoptRef(new HTMLOutputElement(tagName, document, form)); |
| 52 } | 52 } |
| 53 | 53 |
| 54 const AtomicString& HTMLOutputElement::formControlType() const | 54 const AtomicString& HTMLOutputElement::formControlType() const |
| 55 { | 55 { |
| 56 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con
structFromLiteral)); | 56 DEFINE_STATIC_LOCAL(const AtomicString, output, ("output", AtomicString::Con
structFromLiteral)); |
| 57 return output; | 57 return output; |
| 58 } | 58 } |
| 59 | 59 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 } | 135 } |
| 136 | 136 |
| 137 void HTMLOutputElement::setTextContentInternal(const String& value) | 137 void HTMLOutputElement::setTextContentInternal(const String& value) |
| 138 { | 138 { |
| 139 ASSERT(!m_isSetTextContentInProgress); | 139 ASSERT(!m_isSetTextContentInProgress); |
| 140 m_isSetTextContentInProgress = true; | 140 m_isSetTextContentInProgress = true; |
| 141 setTextContent(value, IGNORE_EXCEPTION); | 141 setTextContent(value, IGNORE_EXCEPTION); |
| 142 } | 142 } |
| 143 | 143 |
| 144 } // namespace | 144 } // namespace |
| OLD | NEW |