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

Side by Side Diff: third_party/WebKit/Source/modules/accessibility/AXObjectCacheImpl.h

Issue 1628283002: posinset and setsize for input type, radio, exposed in AX tree (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed isRadiobutton() Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014, Google Inc. All rights reserved. 2 * Copyright (C) 2014, 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 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 58
59 void dispose() override; 59 void dispose() override;
60 60
61 void selectionChanged(Node*) override; 61 void selectionChanged(Node*) override;
62 void childrenChanged(Node*) override; 62 void childrenChanged(Node*) override;
63 void childrenChanged(LayoutObject*) override; 63 void childrenChanged(LayoutObject*) override;
64 void checkedStateChanged(Node*) override; 64 void checkedStateChanged(Node*) override;
65 virtual void listboxOptionStateChanged(HTMLOptionElement*); 65 virtual void listboxOptionStateChanged(HTMLOptionElement*);
66 virtual void listboxSelectedChildrenChanged(HTMLSelectElement*); 66 virtual void listboxSelectedChildrenChanged(HTMLSelectElement*);
67 virtual void listboxActiveIndexChanged(HTMLSelectElement*); 67 virtual void listboxActiveIndexChanged(HTMLSelectElement*);
68 virtual void radiobuttonRemovedFromGroup(HTMLInputElement*);
68 69
69 void remove(LayoutObject*) override; 70 void remove(LayoutObject*) override;
70 void remove(Node*) override; 71 void remove(Node*) override;
71 void remove(AbstractInlineTextBox*) override; 72 void remove(AbstractInlineTextBox*) override;
72 73
73 const Element* rootAXEditableElement(const Node*) override; 74 const Element* rootAXEditableElement(const Node*) override;
74 75
75 // Called by a node when text or a text equivalent (e.g. alt) attribute is c hanged. 76 // Called by a node when text or a text equivalent (e.g. alt) attribute is c hanged.
76 void textChanged(LayoutObject*) override; 77 void textChanged(LayoutObject*) override;
77 // Called when a node has just been attached, so we can make sure we have th e right subclass of AXObject. 78 // Called when a node has just been attached, so we can make sure we have th e right subclass of AXObject.
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 // This is the only subclass of AXObjectCache. 247 // This is the only subclass of AXObjectCache.
247 DEFINE_TYPE_CASTS(AXObjectCacheImpl, AXObjectCache, cache, true, true); 248 DEFINE_TYPE_CASTS(AXObjectCacheImpl, AXObjectCache, cache, true, true);
248 249
249 bool nodeHasRole(Node*, const String& role); 250 bool nodeHasRole(Node*, const String& role);
250 // This will let you know if aria-hidden was explicitly set to false. 251 // This will let you know if aria-hidden was explicitly set to false.
251 bool isNodeAriaVisible(Node*); 252 bool isNodeAriaVisible(Node*);
252 253
253 } // namespace blink 254 } // namespace blink
254 255
255 #endif 256 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698