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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/accessibility/ARIAConfig.js

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 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 WebInspector.ARIAMetadata._config = { 1 Accessibility.ARIAMetadata._config = {
2 'attributes': { 2 'attributes': {
3 'aria-activedescendant': {'type': 'IDREF'}, 3 'aria-activedescendant': {'type': 'IDREF'},
4 'aria-atomic': {'default': 'false', 'type': 'boolean'}, 4 'aria-atomic': {'default': 'false', 'type': 'boolean'},
5 'aria-autocomplete': {'default': 'none', 'enum': ['inline', 'list', 'both', 'none'], 'type': 'token'}, 5 'aria-autocomplete': {'default': 'none', 'enum': ['inline', 'list', 'both', 'none'], 'type': 'token'},
6 'aria-busy': {'default': 'false', 'type': 'boolean'}, 6 'aria-busy': {'default': 'false', 'type': 'boolean'},
7 'aria-checked': {'default': 'undefined', 'enum': ['true', 'false', 'mixed', 'undefined'], 'type': 'token'}, 7 'aria-checked': {'default': 'undefined', 'enum': ['true', 'false', 'mixed', 'undefined'], 'type': 'token'},
8 'aria-controls': {'type': 'IDREF_list'}, 8 'aria-controls': {'type': 'IDREF_list'},
9 'aria-describedby': {'type': 'IDREF_list'}, 9 'aria-describedby': {'type': 'IDREF_list'},
10 'aria-disabled': {'default': 'false', 'type': 'boolean'}, 10 'aria-disabled': {'default': 'false', 'type': 'boolean'},
11 'aria-dropeffect': 11 'aria-dropeffect':
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 {'nameFrom': ['contents', 'author'], 'scope': ['group', 'tree'], 'superc lasses': ['listitem', 'option']}, 244 {'nameFrom': ['contents', 'author'], 'scope': ['group', 'tree'], 'superc lasses': ['listitem', 'option']},
245 'widget': {'abstract': true, 'superclasses': ['roletype']}, 245 'widget': {'abstract': true, 'superclasses': ['roletype']},
246 'window': { 246 'window': {
247 'abstract': true, 247 'abstract': true,
248 'nameFrom': ['author'], 248 'nameFrom': ['author'],
249 'superclasses': ['roletype'], 249 'superclasses': ['roletype'],
250 'supportedAttributes': ['aria-expanded'] 250 'supportedAttributes': ['aria-expanded']
251 } 251 }
252 } 252 }
253 }; 253 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698