| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 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 * | 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 #include "core/accessibility/AccessibilityScrollView.h" | 50 #include "core/accessibility/AccessibilityScrollView.h" |
| 51 #include "core/accessibility/AccessibilityScrollbar.h" | 51 #include "core/accessibility/AccessibilityScrollbar.h" |
| 52 #include "core/accessibility/AccessibilitySlider.h" | 52 #include "core/accessibility/AccessibilitySlider.h" |
| 53 #include "core/accessibility/AccessibilitySpinButton.h" | 53 #include "core/accessibility/AccessibilitySpinButton.h" |
| 54 #include "core/accessibility/AccessibilityTable.h" | 54 #include "core/accessibility/AccessibilityTable.h" |
| 55 #include "core/accessibility/AccessibilityTableCell.h" | 55 #include "core/accessibility/AccessibilityTableCell.h" |
| 56 #include "core/accessibility/AccessibilityTableColumn.h" | 56 #include "core/accessibility/AccessibilityTableColumn.h" |
| 57 #include "core/accessibility/AccessibilityTableHeaderContainer.h" | 57 #include "core/accessibility/AccessibilityTableHeaderContainer.h" |
| 58 #include "core/accessibility/AccessibilityTableRow.h" | 58 #include "core/accessibility/AccessibilityTableRow.h" |
| 59 #include "core/dom/Document.h" | 59 #include "core/dom/Document.h" |
| 60 #include "core/editing/Editor.h" | |
| 61 #include "core/html/HTMLAreaElement.h" | 60 #include "core/html/HTMLAreaElement.h" |
| 62 #include "core/html/HTMLImageElement.h" | 61 #include "core/html/HTMLImageElement.h" |
| 63 #include "core/html/HTMLInputElement.h" | 62 #include "core/html/HTMLInputElement.h" |
| 64 #include "core/html/HTMLLabelElement.h" | 63 #include "core/html/HTMLLabelElement.h" |
| 65 #include "core/html/shadow/MediaControlElements.h" | |
| 66 #include "core/page/Chrome.h" | 64 #include "core/page/Chrome.h" |
| 67 #include "core/page/ChromeClient.h" | 65 #include "core/page/ChromeClient.h" |
| 68 #include "core/page/FocusController.h" | 66 #include "core/page/FocusController.h" |
| 69 #include "core/page/Frame.h" | 67 #include "core/page/Frame.h" |
| 70 #include "core/page/Page.h" | 68 #include "core/page/Page.h" |
| 71 #include "core/platform/ScrollView.h" | 69 #include "core/platform/ScrollView.h" |
| 72 #include "core/rendering/RenderListBox.h" | 70 #include "core/rendering/RenderListBox.h" |
| 73 #include "core/rendering/RenderMenuList.h" | 71 #include "core/rendering/RenderMenuList.h" |
| 74 #include "core/rendering/RenderProgress.h" | 72 #include "core/rendering/RenderProgress.h" |
| 75 #include "core/rendering/RenderSlider.h" | 73 #include "core/rendering/RenderSlider.h" |
| (...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1024 void AXObjectCache::handleScrolledToAnchor(const Node* anchorNode) | 1022 void AXObjectCache::handleScrolledToAnchor(const Node* anchorNode) |
| 1025 { | 1023 { |
| 1026 // The anchor node may not be accessible. Post the notification for the | 1024 // The anchor node may not be accessible. Post the notification for the |
| 1027 // first accessible object. | 1025 // first accessible object. |
| 1028 postPlatformNotification(AccessibilityObject::firstAccessibleObjectFromNode(
anchorNode), AXScrolledToAnchor); | 1026 postPlatformNotification(AccessibilityObject::firstAccessibleObjectFromNode(
anchorNode), AXScrolledToAnchor); |
| 1029 } | 1027 } |
| 1030 | 1028 |
| 1031 } // namespace WebCore | 1029 } // namespace WebCore |
| 1032 | 1030 |
| 1033 #endif // HAVE(ACCESSIBILITY) | 1031 #endif // HAVE(ACCESSIBILITY) |
| OLD | NEW |