OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008, 2009, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2008, 2009, 2011 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 13 matching lines...) Expand all Loading... |
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 "AccessibilityObject.h" | 30 #include "AccessibilityObject.h" |
31 | 31 |
32 #include "AXObjectCache.h" | 32 #include "AXObjectCache.h" |
33 #include "AccessibilityTable.h" | 33 #include "AccessibilityTable.h" |
| 34 #include "FrameSelection.h" |
| 35 #include "Editor.h" |
34 #include "LocalizedStrings.h" | 36 #include "LocalizedStrings.h" |
35 #include "NodeTraversal.h" | 37 #include "NodeTraversal.h" |
36 #include "RenderListItem.h" | 38 #include "RenderListItem.h" |
37 #include "RenderTheme.h" | 39 #include "RenderTheme.h" |
38 #include "RenderView.h" | 40 #include "RenderView.h" |
39 #include "RenderedPosition.h" | 41 #include "RenderedPosition.h" |
40 #include "TextCheckerClient.h" | 42 #include "TextCheckerClient.h" |
41 #include "TextCheckingHelper.h" | 43 #include "TextCheckingHelper.h" |
| 44 #include "UserGestureIndicator.h" |
42 #include "VisibleUnits.h" | 45 #include "VisibleUnits.h" |
43 #include "htmlediting.h" | 46 #include "htmlediting.h" |
44 #include <wtf/StdLibExtras.h> | 47 #include <wtf/StdLibExtras.h> |
45 #include <wtf/text/StringBuilder.h> | 48 #include <wtf/text/StringBuilder.h> |
46 #include <wtf/text/WTFString.h> | 49 #include <wtf/text/WTFString.h> |
47 #include <wtf/unicode/CharacterNames.h> | 50 #include <wtf/unicode/CharacterNames.h> |
48 | 51 |
49 using namespace std; | 52 using namespace std; |
50 | 53 |
51 namespace WebCore { | 54 namespace WebCore { |
(...skipping 1260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1312 | 1315 |
1313 AccessibilityObjectInclusion AccessibilityObject::accessibilityPlatformIncludesO
bject() const | 1316 AccessibilityObjectInclusion AccessibilityObject::accessibilityPlatformIncludesO
bject() const |
1314 { | 1317 { |
1315 if (isMenuListPopup() || isMenuListOption()) | 1318 if (isMenuListPopup() || isMenuListOption()) |
1316 return IncludeObject; | 1319 return IncludeObject; |
1317 | 1320 |
1318 return DefaultBehavior; | 1321 return DefaultBehavior; |
1319 } | 1322 } |
1320 | 1323 |
1321 } // namespace WebCore | 1324 } // namespace WebCore |
OLD | NEW |