| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). | 2 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). |
| 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 3 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 4 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 4 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 5 * (C) 2000 Dirk Mueller (mueller@kde.org) | 5 * (C) 2000 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All rights |
| 7 * reserved. | 7 * reserved. |
| 8 * Copyright (C) 2010 Google Inc. All rights reserved. | 8 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 9 * | 9 * |
| 10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 bool supportsAutofocus() const override; | 193 bool supportsAutofocus() const override; |
| 194 bool supportLabels() const override { return true; } | 194 bool supportLabels() const override { return true; } |
| 195 | 195 |
| 196 FormControlState saveFormControlState() const override; | 196 FormControlState saveFormControlState() const override; |
| 197 void restoreFormControlState(const FormControlState&) override; | 197 void restoreFormControlState(const FormControlState&) override; |
| 198 | 198 |
| 199 void parseAttribute(const AttributeModificationParams&) override; | 199 void parseAttribute(const AttributeModificationParams&) override; |
| 200 bool isPresentationAttribute(const QualifiedName&) const override; | 200 bool isPresentationAttribute(const QualifiedName&) const override; |
| 201 | 201 |
| 202 LayoutObject* createLayoutObject(const ComputedStyle&) override; | 202 LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 203 void didRecalcStyle(StyleRecalcChange) override; | 203 void didRecalcStyle() override; |
| 204 void detachLayoutTree(const AttachContext& = AttachContext()) override; | 204 void detachLayoutTree(const AttachContext& = AttachContext()) override; |
| 205 void appendToFormData(FormData&) override; | 205 void appendToFormData(FormData&) override; |
| 206 void didAddUserAgentShadowRoot(ShadowRoot&) override; | 206 void didAddUserAgentShadowRoot(ShadowRoot&) override; |
| 207 | 207 |
| 208 void defaultEventHandler(Event*) override; | 208 void defaultEventHandler(Event*) override; |
| 209 | 209 |
| 210 void dispatchInputAndChangeEventForMenuList(); | 210 void dispatchInputAndChangeEventForMenuList(); |
| 211 | 211 |
| 212 void setRecalcListItems(); | 212 void setRecalcListItems(); |
| 213 void recalcListItems() const; | 213 void recalcListItems() const; |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 | 304 |
| 305 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, FirstSelectableOption); | 305 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, FirstSelectableOption); |
| 306 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, LastSelectableOption); | 306 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, LastSelectableOption); |
| 307 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, NextSelectableOption); | 307 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, NextSelectableOption); |
| 308 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, PreviousSelectableOption); | 308 FRIEND_TEST_ALL_PREFIXES(HTMLSelectElementTest, PreviousSelectableOption); |
| 309 }; | 309 }; |
| 310 | 310 |
| 311 } // namespace blink | 311 } // namespace blink |
| 312 | 312 |
| 313 #endif // HTMLSelectElement_h | 313 #endif // HTMLSelectElement_h |
| OLD | NEW |