Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(92)

Side by Side Diff: Source/core/accessibility/AXObject.h

Issue 515843002: Adds accessibility role for figure tag and handles its children as a group. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: added role for some case without renderer Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 * Copyright (C) 2008 Nuanti Ltd. 3 * Copyright (C) 2008 Nuanti Ltd.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 DescriptionListDetailRole, 81 DescriptionListDetailRole,
82 DescriptionListTermRole, 82 DescriptionListTermRole,
83 DialogRole, 83 DialogRole,
84 DirectoryRole, 84 DirectoryRole,
85 DisclosureTriangleRole, 85 DisclosureTriangleRole,
86 DivRole, 86 DivRole,
87 DocumentRole, 87 DocumentRole,
88 DrawerRole, 88 DrawerRole,
89 EditableTextRole, 89 EditableTextRole,
90 EmbeddedObjectRole, 90 EmbeddedObjectRole,
91 FigureRole,
91 FooterRole, 92 FooterRole,
92 FormRole, 93 FormRole,
93 GridRole, 94 GridRole,
94 GroupRole, 95 GroupRole,
95 GrowAreaRole, 96 GrowAreaRole,
96 HeadingRole, 97 HeadingRole,
97 HelpTagRole, 98 HelpTagRole,
98 HorizontalRuleRole, 99 HorizontalRuleRole,
99 IframeRole, 100 IframeRole,
100 IgnoredRole, 101 IgnoredRole,
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 575
575 bool m_detached; 576 bool m_detached;
576 }; 577 };
577 578
578 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ 579 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
579 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate) 580 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate)
580 581
581 } // namespace blink 582 } // namespace blink
582 583
583 #endif // AXObject_h 584 #endif // AXObject_h
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXNodeObject.cpp ('k') | Source/core/accessibility/AXRenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698