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

Side by Side Diff: Source/core/dom/AXObjectCache.h

Issue 1020473004: Fire an event when a menu list option becomes unselected. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add comment about selectedIndex=-1 Created 5 years, 9 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010, 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 AXCheckedStateChanged, 55 AXCheckedStateChanged,
56 AXChildrenChanged, 56 AXChildrenChanged,
57 AXFocusedUIElementChanged, 57 AXFocusedUIElementChanged,
58 AXHide, 58 AXHide,
59 AXInvalidStatusChanged, 59 AXInvalidStatusChanged,
60 AXLayoutComplete, 60 AXLayoutComplete,
61 AXLiveRegionChanged, 61 AXLiveRegionChanged,
62 AXLoadComplete, 62 AXLoadComplete,
63 AXLocationChanged, 63 AXLocationChanged,
64 AXMenuListItemSelected, 64 AXMenuListItemSelected,
65 AXMenuListItemUnselected,
65 AXMenuListValueChanged, 66 AXMenuListValueChanged,
66 AXRowCollapsed, 67 AXRowCollapsed,
67 AXRowCountChanged, 68 AXRowCountChanged,
68 AXRowExpanded, 69 AXRowExpanded,
69 AXScrollPositionChanged, 70 AXScrollPositionChanged,
70 AXScrolledToAnchor, 71 AXScrolledToAnchor,
71 AXSelectedChildrenChanged, 72 AXSelectedChildrenChanged,
72 AXSelectedTextChanged, 73 AXSelectedTextChanged,
73 AXShow, 74 AXShow,
74 AXTextChanged, 75 AXTextChanged,
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 144
144 private: 145 private:
145 Document& m_document; 146 Document& m_document;
146 AXObjectCache* m_cache; 147 AXObjectCache* m_cache;
147 bool m_isScoped; 148 bool m_isScoped;
148 }; 149 };
149 150
150 } 151 }
151 152
152 #endif 153 #endif
OLDNEW
« no previous file with comments | « LayoutTests/accessibility/menu-list-selection-changed-expected.txt ('k') | Source/modules/accessibility/AXMenuListPopup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698