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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXObject.cpp

Issue 1416873015: Text controls should expose their value instead of their name via IAccessibleText (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed radio menu items test on Android. Created 5 years, 1 month 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 * 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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 135
136 const InternalRoleEntry internalRoles[] = { 136 const InternalRoleEntry internalRoles[] = {
137 { UnknownRole, "Unknown" }, 137 { UnknownRole, "Unknown" },
138 { AlertDialogRole, "AlertDialog" }, 138 { AlertDialogRole, "AlertDialog" },
139 { AlertRole, "Alert" }, 139 { AlertRole, "Alert" },
140 { AnnotationRole, "Annotation" }, 140 { AnnotationRole, "Annotation" },
141 { ApplicationRole, "Application" }, 141 { ApplicationRole, "Application" },
142 { ArticleRole, "Article" }, 142 { ArticleRole, "Article" },
143 { BannerRole, "Banner" }, 143 { BannerRole, "Banner" },
144 { BlockquoteRole, "Blockquote" }, 144 { BlockquoteRole, "Blockquote" },
145 // TODO(nektar): Delete busy_indicator role. It's used nowhere.
145 { BusyIndicatorRole, "BusyIndicator" }, 146 { BusyIndicatorRole, "BusyIndicator" },
146 { ButtonRole, "Button" }, 147 { ButtonRole, "Button" },
147 { CanvasRole, "Canvas" }, 148 { CanvasRole, "Canvas" },
148 { CaptionRole, "Caption" }, 149 { CaptionRole, "Caption" },
149 { CellRole, "Cell" }, 150 { CellRole, "Cell" },
150 { CheckBoxRole, "CheckBox" }, 151 { CheckBoxRole, "CheckBox" },
151 { ColorWellRole, "ColorWell" }, 152 { ColorWellRole, "ColorWell" },
152 { ColumnHeaderRole, "ColumnHeader" }, 153 { ColumnHeaderRole, "ColumnHeader" },
153 { ColumnRole, "Column" }, 154 { ColumnRole, "Column" },
154 { ComboBoxRole, "ComboBox" }, 155 { ComboBoxRole, "ComboBox" },
(...skipping 1355 matching lines...) Expand 10 before | Expand all | Expand 10 after
1510 1511
1511 DEFINE_TRACE(AXObject) 1512 DEFINE_TRACE(AXObject)
1512 { 1513 {
1513 visitor->trace(m_children); 1514 visitor->trace(m_children);
1514 visitor->trace(m_parent); 1515 visitor->trace(m_parent);
1515 visitor->trace(m_cachedLiveRegionRoot); 1516 visitor->trace(m_cachedLiveRegionRoot);
1516 visitor->trace(m_axObjectCache); 1517 visitor->trace(m_axObjectCache);
1517 } 1518 }
1518 1519
1519 } // namespace blink 1520 } // namespace blink
OLDNEW
« no previous file with comments | « content/test/data/accessibility/html/textarea-with-selection-expected-win.txt ('k') | ui/accessibility/ax_enums.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698