| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 virtual void accept(Visitor*) const OVERRIDE; | 55 virtual void accept(Visitor*) const OVERRIDE; |
| 56 | 56 |
| 57 private: | 57 private: |
| 58 HTMLOutputElement(const QualifiedName&, Handle<Document>, const Handle<HTMLF
ormElement>&); | 58 HTMLOutputElement(const QualifiedName&, Handle<Document>, const Handle<HTMLF
ormElement>&); |
| 59 | 59 |
| 60 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 60 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
| 61 virtual const AtomicString& formControlType() const; | 61 virtual const AtomicString& formControlType() const; |
| 62 virtual bool isEnumeratable() const { return true; } | 62 virtual bool isEnumeratable() const { return true; } |
| 63 virtual bool supportLabels() const OVERRIDE { return true; } | 63 virtual bool supportLabels() const OVERRIDE { return true; } |
| 64 virtual bool supportsFocus() const; | 64 virtual bool supportsFocus() const; |
| 65 virtual void childrenChanged(bool createdByParser = false, Node* beforeChang
e = 0, Node* afterChange = 0, int childCountDelta = 0); | 65 virtual void childrenChanged(bool createdByParser = false, const Handle<Node
>& beforeChange = nullptr, const Handle<Node>& afterChange = nullptr, int childC
ountDelta = 0); |
| 66 virtual void reset(); | 66 virtual void reset(); |
| 67 | 67 |
| 68 void setTextContentInternal(const String&); | 68 void setTextContentInternal(const String&); |
| 69 | 69 |
| 70 bool m_isDefaultValueMode; | 70 bool m_isDefaultValueMode; |
| 71 bool m_isSetTextContentInProgress; | 71 bool m_isSetTextContentInProgress; |
| 72 String m_defaultValue; | 72 String m_defaultValue; |
| 73 RefPtr<DOMSettableTokenList> m_tokens; | 73 RefPtr<DOMSettableTokenList> m_tokens; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace | 76 } // namespace |
| 77 | 77 |
| 78 #endif | 78 #endif |
| OLD | NEW |