| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 #include "core/html/HTMLLabelElement.h" | 45 #include "core/html/HTMLLabelElement.h" |
| 46 #include "core/html/HTMLOptionElement.h" | 46 #include "core/html/HTMLOptionElement.h" |
| 47 #include "core/html/HTMLSelectElement.h" | 47 #include "core/html/HTMLSelectElement.h" |
| 48 #include "core/html/HTMLTextAreaElement.h" | 48 #include "core/html/HTMLTextAreaElement.h" |
| 49 #include "core/html/shadow/ShadowElementNames.h" | 49 #include "core/html/shadow/ShadowElementNames.h" |
| 50 #include "core/layout/HitTestResult.h" | 50 #include "core/layout/HitTestResult.h" |
| 51 #include "core/layout/Layer.h" | 51 #include "core/layout/Layer.h" |
| 52 #include "core/layout/LayoutFieldset.h" | 52 #include "core/layout/LayoutFieldset.h" |
| 53 #include "core/layout/LayoutHTMLCanvas.h" | 53 #include "core/layout/LayoutHTMLCanvas.h" |
| 54 #include "core/layout/LayoutImage.h" | 54 #include "core/layout/LayoutImage.h" |
| 55 #include "core/layout/LayoutListMarker.h" |
| 55 #include "core/layout/LayoutPart.h" | 56 #include "core/layout/LayoutPart.h" |
| 56 #include "core/layout/LayoutTextControlSingleLine.h" | 57 #include "core/layout/LayoutTextControlSingleLine.h" |
| 57 #include "core/loader/ProgressTracker.h" | 58 #include "core/loader/ProgressTracker.h" |
| 58 #include "core/page/Page.h" | 59 #include "core/page/Page.h" |
| 59 #include "core/rendering/RenderFileUploadControl.h" | 60 #include "core/rendering/RenderFileUploadControl.h" |
| 60 #include "core/rendering/RenderInline.h" | 61 #include "core/rendering/RenderInline.h" |
| 61 #include "core/rendering/RenderListMarker.h" | |
| 62 #include "core/rendering/RenderMenuList.h" | 62 #include "core/rendering/RenderMenuList.h" |
| 63 #include "core/rendering/RenderTextFragment.h" | 63 #include "core/rendering/RenderTextFragment.h" |
| 64 #include "core/rendering/RenderView.h" | 64 #include "core/rendering/RenderView.h" |
| 65 #include "core/svg/SVGDocumentExtensions.h" | 65 #include "core/svg/SVGDocumentExtensions.h" |
| 66 #include "core/svg/SVGSVGElement.h" | 66 #include "core/svg/SVGSVGElement.h" |
| 67 #include "core/svg/graphics/SVGImage.h" | 67 #include "core/svg/graphics/SVGImage.h" |
| 68 #include "modules/accessibility/AXImageMapLink.h" | 68 #include "modules/accessibility/AXImageMapLink.h" |
| 69 #include "modules/accessibility/AXInlineTextBox.h" | 69 #include "modules/accessibility/AXInlineTextBox.h" |
| 70 #include "modules/accessibility/AXObjectCacheImpl.h" | 70 #include "modules/accessibility/AXObjectCacheImpl.h" |
| 71 #include "modules/accessibility/AXSVGRoot.h" | 71 #include "modules/accessibility/AXSVGRoot.h" |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 942 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement>>& listItems = sel
ectElement->listItems(); | 942 const WillBeHeapVector<RawPtrWillBeMember<HTMLElement>>& listItems = sel
ectElement->listItems(); |
| 943 if (selectedIndex >= 0 && static_cast<size_t>(selectedIndex) < listItems
.size()) { | 943 if (selectedIndex >= 0 && static_cast<size_t>(selectedIndex) < listItems
.size()) { |
| 944 const AtomicString& overriddenDescription = listItems[selectedIndex]
->fastGetAttribute(aria_labelAttr); | 944 const AtomicString& overriddenDescription = listItems[selectedIndex]
->fastGetAttribute(aria_labelAttr); |
| 945 if (!overriddenDescription.isNull()) | 945 if (!overriddenDescription.isNull()) |
| 946 return overriddenDescription; | 946 return overriddenDescription; |
| 947 } | 947 } |
| 948 return toRenderMenuList(m_renderer)->text(); | 948 return toRenderMenuList(m_renderer)->text(); |
| 949 } | 949 } |
| 950 | 950 |
| 951 if (m_renderer->isListMarker()) | 951 if (m_renderer->isListMarker()) |
| 952 return toRenderListMarker(m_renderer)->text(); | 952 return toLayoutListMarker(m_renderer)->text(); |
| 953 | 953 |
| 954 if (isWebArea()) { | 954 if (isWebArea()) { |
| 955 // FIXME: Why would a renderer exist when the Document isn't attached to
a frame? | 955 // FIXME: Why would a renderer exist when the Document isn't attached to
a frame? |
| 956 if (m_renderer->frame()) | 956 if (m_renderer->frame()) |
| 957 return String(); | 957 return String(); |
| 958 | 958 |
| 959 ASSERT_NOT_REACHED(); | 959 ASSERT_NOT_REACHED(); |
| 960 } | 960 } |
| 961 | 961 |
| 962 if (isTextControl()) | 962 if (isTextControl()) |
| (...skipping 1448 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2411 if (label && label->renderer()) { | 2411 if (label && label->renderer()) { |
| 2412 LayoutRect labelRect = axObjectCache()->getOrCreate(label)->elementR
ect(); | 2412 LayoutRect labelRect = axObjectCache()->getOrCreate(label)->elementR
ect(); |
| 2413 result.unite(labelRect); | 2413 result.unite(labelRect); |
| 2414 } | 2414 } |
| 2415 } | 2415 } |
| 2416 | 2416 |
| 2417 return result; | 2417 return result; |
| 2418 } | 2418 } |
| 2419 | 2419 |
| 2420 } // namespace blink | 2420 } // namespace blink |
| OLD | NEW |