OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2010 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 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 bool canHaveChildren() const override { return false; } | 51 bool canHaveChildren() const override { return false; } |
52 | 52 |
53 Element* actionElement() const override; | 53 Element* actionElement() const override; |
54 bool isEnabled() const override; | 54 bool isEnabled() const override; |
55 bool isVisible() const override; | 55 bool isVisible() const override; |
56 bool isOffScreen() const override; | 56 bool isOffScreen() const override; |
57 bool isSelected() const override; | 57 bool isSelected() const override; |
58 void setSelected(bool) override; | 58 void setSelected(bool) override; |
59 bool canSetSelectedAttribute() const override; | 59 bool canSetSelectedAttribute() const override; |
60 LayoutRect elementRect() const override; | 60 LayoutRect elementRect() const override; |
61 String stringValue() const override; | 61 String textAlternative(bool recursive, bool inAriaLabelledByTraversal, AXObj
ectSet& visited, AXNameFrom&, AXRelatedObjectVector*, NameSources*) const overri
de; |
62 bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override
; | 62 bool computeAccessibilityIsIgnored(IgnoredReasons* = nullptr) const override
; |
63 | 63 |
64 RawPtrWillBeMember<HTMLOptionElement> m_element; | 64 RawPtrWillBeMember<HTMLOptionElement> m_element; |
65 }; | 65 }; |
66 | 66 |
67 DEFINE_AX_OBJECT_TYPE_CASTS(AXMenuListOption, isMenuListOption()); | 67 DEFINE_AX_OBJECT_TYPE_CASTS(AXMenuListOption, isMenuListOption()); |
68 | 68 |
69 } // namespace blink | 69 } // namespace blink |
70 | 70 |
71 #endif // AXMenuListOption_h | 71 #endif // AXMenuListOption_h |
OLD | NEW |