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

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

Issue 766053006: Add a new role for an iframe element with role=presentation. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 years 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/modules/accessibility/AXRenderObject.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 EditableTextRole, 85 EditableTextRole,
86 EmbeddedObjectRole, 86 EmbeddedObjectRole,
87 FigcaptionRole, 87 FigcaptionRole,
88 FigureRole, 88 FigureRole,
89 FooterRole, 89 FooterRole,
90 FormRole, 90 FormRole,
91 GridRole, 91 GridRole,
92 GroupRole, 92 GroupRole,
93 GrowAreaRole, 93 GrowAreaRole,
94 HeadingRole, 94 HeadingRole,
95 IframePresentationalRole,
95 IframeRole, 96 IframeRole,
96 IgnoredRole, 97 IgnoredRole,
97 ImageMapLinkRole, 98 ImageMapLinkRole,
98 ImageMapRole, 99 ImageMapRole,
99 ImageRole, 100 ImageRole,
100 InlineTextBoxRole, 101 InlineTextBoxRole,
101 LabelRole, 102 LabelRole,
102 LegendRole, 103 LegendRole,
103 LinkRole, 104 LinkRole,
104 ListBoxOptionRole, 105 ListBoxOptionRole,
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 // functions called here may only search up the tree (ancestors), not down. 613 // functions called here may only search up the tree (ancestors), not down.
613 void updateCachedAttributeValuesIfNeeded() const; 614 void updateCachedAttributeValuesIfNeeded() const;
614 }; 615 };
615 616
616 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \ 617 #define DEFINE_AX_OBJECT_TYPE_CASTS(thisType, predicate) \
617 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate) 618 DEFINE_TYPE_CASTS(thisType, AXObject, object, object->predicate, object.pred icate)
618 619
619 } // namespace blink 620 } // namespace blink
620 621
621 #endif // AXObject_h 622 #endif // AXObject_h
OLDNEW
« no previous file with comments | « no previous file | Source/modules/accessibility/AXRenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698