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

Side by Side Diff: Source/web/AssertMatchingEnums.cpp

Issue 590183003: Adds accessibility role for details element (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/core/accessibility/AXRenderObject.cpp ('k') | public/web/WebAXEnums.h » ('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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleCheckBox, CheckBoxRole); 185 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleCheckBox, CheckBoxRole);
186 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleColorWell, ColorWellRole); 186 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleColorWell, ColorWellRole);
187 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleColumnHeader, ColumnHeaderRole); 187 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleColumnHeader, ColumnHeaderRole);
188 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleColumn, ColumnRole); 188 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleColumn, ColumnRole);
189 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleComboBox, ComboBoxRole); 189 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleComboBox, ComboBoxRole);
190 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleComplementary, ComplementaryRole); 190 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleComplementary, ComplementaryRole);
191 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleContentInfo, ContentInfoRole); 191 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleContentInfo, ContentInfoRole);
192 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDefinition, DefinitionRole); 192 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDefinition, DefinitionRole);
193 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDescriptionListDetail, DescriptionListDeta ilRole); 193 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDescriptionListDetail, DescriptionListDeta ilRole);
194 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDescriptionListTerm, DescriptionListTermRo le); 194 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDescriptionListTerm, DescriptionListTermRo le);
195 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDetails, DetailsRole);
195 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDialog, DialogRole); 196 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDialog, DialogRole);
196 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDirectory, DirectoryRole); 197 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDirectory, DirectoryRole);
197 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDisclosureTriangle, DisclosureTriangleRole ); 198 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDisclosureTriangle, DisclosureTriangleRole );
198 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDiv, DivRole); 199 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDiv, DivRole);
199 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDocument, DocumentRole); 200 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDocument, DocumentRole);
200 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDrawer, DrawerRole); 201 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleDrawer, DrawerRole);
201 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleEditableText, EditableTextRole); 202 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleEditableText, EditableTextRole);
202 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleEmbeddedObject, EmbeddedObjectRole); 203 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleEmbeddedObject, EmbeddedObjectRole);
203 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleFigcaption, FigcaptionRole); 204 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleFigcaption, FigcaptionRole);
204 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleFigure, FigureRole); 205 COMPILE_ASSERT_MATCHING_ENUM(WebAXRoleFigure, FigureRole);
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
627 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone); 628 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeNone, PointerTypeNone);
628 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse); 629 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeCoarse, PointerTypeCoarse);
629 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine); 630 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::PointerTypeFine, PointerTypeFine);
630 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone); 631 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeNone, HoverTypeNone);
631 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand); 632 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeOnDemand, HoverTypeOnDemand);
632 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover); 633 COMPILE_ASSERT_MATCHING_ENUM(WebSettings::HoverTypeHover, HoverTypeHover);
633 634
634 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa lue::wireFormatVersion); 635 COMPILE_ASSERT_MATCHING_UINT64(kSerializedScriptValueVersion, SerializedScriptVa lue::wireFormatVersion);
635 636
636 } // namespace blink 637 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXRenderObject.cpp ('k') | public/web/WebAXEnums.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698