| 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) 2000 Dirk Mueller (mueller@kde.org) | 4 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2004, 2005, 2006, 2010, 2011 Apple Inc. All rights reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2010, 2011 Apple Inc. All rights reserved. |
| 6 * Copyright (C) 2010 Google Inc. All rights reserved. | 6 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 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 14 matching lines...) Expand all Loading... |
| 25 #ifndef HTMLOptionElement_h | 25 #ifndef HTMLOptionElement_h |
| 26 #define HTMLOptionElement_h | 26 #define HTMLOptionElement_h |
| 27 | 27 |
| 28 #include "HTMLElement.h" | 28 #include "HTMLElement.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 class HTMLDataListElement; | 32 class HTMLDataListElement; |
| 33 class HTMLSelectElement; | 33 class HTMLSelectElement; |
| 34 | 34 |
| 35 class HTMLOptionElement : public HTMLElement { | 35 class HTMLOptionElement FINAL : public HTMLElement { |
| 36 public: | 36 public: |
| 37 static PassRefPtr<HTMLOptionElement> create(Document*); | 37 static PassRefPtr<HTMLOptionElement> create(Document*); |
| 38 static PassRefPtr<HTMLOptionElement> create(const QualifiedName&, Document*)
; | 38 static PassRefPtr<HTMLOptionElement> create(const QualifiedName&, Document*)
; |
| 39 static PassRefPtr<HTMLOptionElement> createForJSConstructor(Document*, const
String& data, const String& value, | 39 static PassRefPtr<HTMLOptionElement> createForJSConstructor(Document*, const
String& data, const String& value, |
| 40 bool defaultSelected, bool selected, ExceptionCode&); | 40 bool defaultSelected, bool selected, ExceptionCode&); |
| 41 | 41 |
| 42 virtual String text() const; | 42 virtual String text() const; |
| 43 void setText(const String&, ExceptionCode&); | 43 void setText(const String&, ExceptionCode&); |
| 44 | 44 |
| 45 int index() const; | 45 int index() const; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 inline const HTMLOptionElement* toHTMLOptionElement(const Node* node) | 112 inline const HTMLOptionElement* toHTMLOptionElement(const Node* node) |
| 113 { | 113 { |
| 114 return static_cast<const HTMLOptionElement*>(node); | 114 return static_cast<const HTMLOptionElement*>(node); |
| 115 } | 115 } |
| 116 | 116 |
| 117 #endif | 117 #endif |
| 118 | 118 |
| 119 } // namespace | 119 } // namespace |
| 120 | 120 |
| 121 #endif | 121 #endif |
| OLD | NEW |