| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 86 |
| 87 int listIndex() const; | 87 int listIndex() const; |
| 88 | 88 |
| 89 private: | 89 private: |
| 90 explicit HTMLOptionElement(Document&); | 90 explicit HTMLOptionElement(Document&); |
| 91 ~HTMLOptionElement(); | 91 ~HTMLOptionElement(); |
| 92 | 92 |
| 93 bool supportsFocus() const override; | 93 bool supportsFocus() const override; |
| 94 bool matchesDefaultPseudoClass() const override; | 94 bool matchesDefaultPseudoClass() const override; |
| 95 bool matchesEnabledPseudoClass() const override; | 95 bool matchesEnabledPseudoClass() const override; |
| 96 void attach(const AttachContext& = AttachContext()) override; | 96 void attachLayoutTree(const AttachContext& = AttachContext()) override; |
| 97 void detach(const AttachContext& = AttachContext()) override; | 97 void detach(const AttachContext& = AttachContext()) override; |
| 98 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; | 98 void parseAttribute(const QualifiedName&, const AtomicString&, const AtomicS
tring&) override; |
| 99 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 99 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 100 void removedFrom(ContainerNode*) override; | 100 void removedFrom(ContainerNode*) override; |
| 101 void accessKeyAction(bool) override; | 101 void accessKeyAction(bool) override; |
| 102 void childrenChanged(const ChildrenChange&) override; | 102 void childrenChanged(const ChildrenChange&) override; |
| 103 | 103 |
| 104 // <option> never has a layoutObject so we manually manage a cached style. | 104 // <option> never has a layoutObject so we manually manage a cached style. |
| 105 void updateNonComputedStyle(); | 105 void updateNonComputedStyle(); |
| 106 ComputedStyle* nonLayoutObjectComputedStyle() const override; | 106 ComputedStyle* nonLayoutObjectComputedStyle() const override; |
| 107 PassRefPtr<ComputedStyle> customStyleForLayoutObject() override; | 107 PassRefPtr<ComputedStyle> customStyleForLayoutObject() override; |
| 108 void didAddUserAgentShadowRoot(ShadowRoot&) override; | 108 void didAddUserAgentShadowRoot(ShadowRoot&) override; |
| 109 | 109 |
| 110 String collectOptionInnerText() const; | 110 String collectOptionInnerText() const; |
| 111 | 111 |
| 112 void updateLabel(); | 112 void updateLabel(); |
| 113 | 113 |
| 114 // Represents 'selectedness'. | 114 // Represents 'selectedness'. |
| 115 // https://html.spec.whatwg.org/multipage/forms.html#concept-option-selected
ness | 115 // https://html.spec.whatwg.org/multipage/forms.html#concept-option-selected
ness |
| 116 bool m_isSelected; | 116 bool m_isSelected; |
| 117 // Represents 'dirtiness'. | 117 // Represents 'dirtiness'. |
| 118 // https://html.spec.whatwg.org/multipage/forms.html#concept-option-dirtines
s | 118 // https://html.spec.whatwg.org/multipage/forms.html#concept-option-dirtines
s |
| 119 bool m_isDirty = false; | 119 bool m_isDirty = false; |
| 120 RefPtr<ComputedStyle> m_style; | 120 RefPtr<ComputedStyle> m_style; |
| 121 }; | 121 }; |
| 122 | 122 |
| 123 } // namespace blink | 123 } // namespace blink |
| 124 | 124 |
| 125 #endif // HTMLOptionElement_h | 125 #endif // HTMLOptionElement_h |
| OLD | NEW |