UNPKG

1.82 kBJavaScriptView Raw
1/**
2 * Copyright 2013-present, Facebook, Inc.
3 * All rights reserved.
4 *
5 * This source code is licensed under the BSD-style license found in the
6 * LICENSE file in the root directory of this source tree. An additional grant
7 * of patent rights can be found in the PATENTS file in the same directory.
8 *
9 */
10
11'use strict';
12
13var ARIADOMPropertyConfig = {
14 Properties: {
15 // Global States and Properties
16 'aria-current': 0, // state
17 'aria-details': 0,
18 'aria-disabled': 0, // state
19 'aria-hidden': 0, // state
20 'aria-invalid': 0, // state
21 'aria-keyshortcuts': 0,
22 'aria-label': 0,
23 'aria-roledescription': 0,
24 // Widget Attributes
25 'aria-autocomplete': 0,
26 'aria-checked': 0,
27 'aria-expanded': 0,
28 'aria-haspopup': 0,
29 'aria-level': 0,
30 'aria-modal': 0,
31 'aria-multiline': 0,
32 'aria-multiselectable': 0,
33 'aria-orientation': 0,
34 'aria-placeholder': 0,
35 'aria-pressed': 0,
36 'aria-readonly': 0,
37 'aria-required': 0,
38 'aria-selected': 0,
39 'aria-sort': 0,
40 'aria-valuemax': 0,
41 'aria-valuemin': 0,
42 'aria-valuenow': 0,
43 'aria-valuetext': 0,
44 // Live Region Attributes
45 'aria-atomic': 0,
46 'aria-busy': 0,
47 'aria-live': 0,
48 'aria-relevant': 0,
49 // Drag-and-Drop Attributes
50 'aria-dropeffect': 0,
51 'aria-grabbed': 0,
52 // Relationship Attributes
53 'aria-activedescendant': 0,
54 'aria-colcount': 0,
55 'aria-colindex': 0,
56 'aria-colspan': 0,
57 'aria-controls': 0,
58 'aria-describedby': 0,
59 'aria-errormessage': 0,
60 'aria-flowto': 0,
61 'aria-labelledby': 0,
62 'aria-owns': 0,
63 'aria-posinset': 0,
64 'aria-rowcount': 0,
65 'aria-rowindex': 0,
66 'aria-rowspan': 0,
67 'aria-setsize': 0
68 },
69 DOMAttributeNames: {},
70 DOMPropertyNames: {}
71};
72
73module.exports = ARIADOMPropertyConfig;
\No newline at end of file