| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 | 111 |
| 112 // Inline text boxes. | 112 // Inline text boxes. |
| 113 void loadInlineTextBoxes() override; | 113 void loadInlineTextBoxes() override; |
| 114 AXObject* nextOnLine() const override; | 114 AXObject* nextOnLine() const override; |
| 115 AXObject* previousOnLine() const override; | 115 AXObject* previousOnLine() const override; |
| 116 | 116 |
| 117 // Properties of interactive elements. | 117 // Properties of interactive elements. |
| 118 String stringValue() const override; | 118 String stringValue() const override; |
| 119 | 119 |
| 120 // ARIA attributes. | 120 // ARIA attributes. |
| 121 void ariaFlowToElements(AXObjectVector&) const override; | |
| 122 void ariaControlsElements(AXObjectVector&) const override; | |
| 123 void ariaDescribedbyElements(AXObjectVector&) const override; | 121 void ariaDescribedbyElements(AXObjectVector&) const override; |
| 124 void ariaLabelledbyElements(AXObjectVector&) const override; | 122 void ariaLabelledbyElements(AXObjectVector&) const override; |
| 125 void ariaOwnsElements(AXObjectVector&) const override; | 123 void ariaOwnsElements(AXObjectVector&) const override; |
| 126 | 124 |
| 127 bool ariaHasPopup() const override; | 125 bool ariaHasPopup() const override; |
| 128 bool ariaRoleHasPresentationalChildren() const override; | 126 bool ariaRoleHasPresentationalChildren() const override; |
| 129 AXObject* ancestorForWhichThisIsAPresentationalChild() const override; | 127 AXObject* ancestorForWhichThisIsAPresentationalChild() const override; |
| 130 bool supportsARIADragging() const override; | 128 bool supportsARIADragging() const override; |
| 131 bool supportsARIADropping() const override; | 129 bool supportsARIADropping() const override; |
| 132 bool supportsARIAFlowTo() const override; | 130 bool supportsARIAFlowTo() const override; |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 AXRange textControlSelection() const; | 216 AXRange textControlSelection() const; |
| 219 int indexForVisiblePosition(const VisiblePosition&) const; | 217 int indexForVisiblePosition(const VisiblePosition&) const; |
| 220 AXLayoutObject* getUnignoredObjectFromNode(Node&) const; | 218 AXLayoutObject* getUnignoredObjectFromNode(Node&) const; |
| 221 }; | 219 }; |
| 222 | 220 |
| 223 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, isAXLayoutObject()); | 221 DEFINE_AX_OBJECT_TYPE_CASTS(AXLayoutObject, isAXLayoutObject()); |
| 224 | 222 |
| 225 } // namespace blink | 223 } // namespace blink |
| 226 | 224 |
| 227 #endif // AXLayoutObject_h | 225 #endif // AXLayoutObject_h |
| OLD | NEW |