| 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 11 matching lines...) Expand all Loading... |
| 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 22 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 */ | 27 */ |
| 28 | 28 |
| 29 #include "config.h" | 29 #include "config.h" |
| 30 #include "modules/accessibility/AXListBoxOption.h" | 30 #include "modules/accessibility/AXListBoxOption.h" |
| 31 | 31 |
| 32 #include "core/dom/AXObjectCache.h" |
| 32 #include "core/html/HTMLOptionElement.h" | 33 #include "core/html/HTMLOptionElement.h" |
| 33 #include "core/html/HTMLSelectElement.h" | 34 #include "core/html/HTMLSelectElement.h" |
| 34 #include "core/rendering/RenderListBox.h" | 35 #include "core/rendering/RenderListBox.h" |
| 35 #include "modules/accessibility/AXObjectCacheImpl.h" | 36 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 36 | 37 |
| 37 | 38 |
| 38 namespace blink { | 39 namespace blink { |
| 39 | 40 |
| 40 using namespace HTMLNames; | 41 using namespace HTMLNames; |
| 41 | 42 |
| 42 AXListBoxOption::AXListBoxOption(RenderObject* renderer) | 43 AXListBoxOption::AXListBoxOption(RenderObject* renderer, AXObjectCache* axObject
Cache) |
| 43 : AXRenderObject(renderer) | 44 : AXRenderObject(renderer, axObjectCache) |
| 44 { | 45 { |
| 45 } | 46 } |
| 46 | 47 |
| 47 AXListBoxOption::~AXListBoxOption() | 48 AXListBoxOption::~AXListBoxOption() |
| 48 { | 49 { |
| 49 } | 50 } |
| 50 | 51 |
| 51 PassRefPtr<AXListBoxOption> AXListBoxOption::create(RenderObject* renderer) | 52 PassRefPtr<AXListBoxOption> AXListBoxOption::create(RenderObject* renderer, AXOb
jectCache* axObjectCache) |
| 52 { | 53 { |
| 53 return adoptRef(new AXListBoxOption(renderer)); | 54 return adoptRef(new AXListBoxOption(renderer, axObjectCache)); |
| 54 } | 55 } |
| 55 | 56 |
| 56 bool AXListBoxOption::isEnabled() const | 57 bool AXListBoxOption::isEnabled() const |
| 57 { | 58 { |
| 58 if (!node()) | 59 if (!node()) |
| 59 return false; | 60 return false; |
| 60 | 61 |
| 61 if (equalIgnoringCase(getAttribute(aria_disabledAttr), "true")) | 62 if (equalIgnoringCase(getAttribute(aria_disabledAttr), "true")) |
| 62 return false; | 63 return false; |
| 63 | 64 |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 unsigned length = listItems.size(); | 162 unsigned length = listItems.size(); |
| 162 for (unsigned i = 0; i < length; i++) { | 163 for (unsigned i = 0; i < length; i++) { |
| 163 if (listItems[i] == node()) | 164 if (listItems[i] == node()) |
| 164 return i; | 165 return i; |
| 165 } | 166 } |
| 166 | 167 |
| 167 return -1; | 168 return -1; |
| 168 } | 169 } |
| 169 | 170 |
| 170 } // namespace blink | 171 } // namespace blink |
| OLD | NEW |