| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 virtual AccessibilityRole roleValue() const override; | 50 virtual AccessibilityRole roleValue() const override; |
| 51 virtual bool isSelected() const override; | 51 virtual bool isSelected() const override; |
| 52 virtual bool isEnabled() const override; | 52 virtual bool isEnabled() const override; |
| 53 virtual bool isSelectedOptionActive() const override; | 53 virtual bool isSelectedOptionActive() const override; |
| 54 virtual void setSelected(bool) override; | 54 virtual void setSelected(bool) override; |
| 55 virtual bool canSetSelectedAttribute() const override; | 55 virtual bool canSetSelectedAttribute() const override; |
| 56 virtual String stringValue() const override; | 56 virtual String stringValue() const override; |
| 57 virtual String title(TextUnderElementMode) const override { return String();
} | 57 virtual String title(TextUnderElementMode) const override { return String();
} |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 virtual bool isListBoxOption() const override { return true; } | |
| 61 virtual bool canHaveChildren() const override { return false; } | 60 virtual bool canHaveChildren() const override { return false; } |
| 62 virtual bool computeAccessibilityIsIgnored() const override; | 61 virtual bool computeAccessibilityIsIgnored() const override; |
| 63 | 62 |
| 64 HTMLSelectElement* listBoxOptionParentNode() const; | 63 HTMLSelectElement* listBoxOptionParentNode() const; |
| 65 int listBoxOptionIndex() const; | 64 int listBoxOptionIndex() const; |
| 66 AXObject* listBoxOptionAXObject(HTMLElement*) const; | 65 AXObject* listBoxOptionAXObject(HTMLElement*) const; |
| 67 }; | 66 }; |
| 68 | 67 |
| 69 DEFINE_AX_OBJECT_TYPE_CASTS(AXListBoxOption, isListBoxOption()); | 68 DEFINE_AX_OBJECT_TYPE_CASTS(AXListBoxOption, isListBoxOption()); |
| 70 | 69 |
| 71 } // namespace blink | 70 } // namespace blink |
| 72 | 71 |
| 73 #endif // AXListBoxOption_h | 72 #endif // AXListBoxOption_h |
| OLD | NEW |