@markuplint/html-spec 4.5.0 → 4.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.json +14 -4
- package/package.json +5 -5
package/index.json
CHANGED
|
@@ -35020,10 +35020,17 @@
|
|
|
35020
35020
|
},
|
|
35021
35021
|
"conditions": {
|
|
35022
35022
|
":not([href])": {
|
|
35023
|
-
"implicitRole":
|
|
35023
|
+
"implicitRole": "generic",
|
|
35024
35024
|
"permittedRoles": true,
|
|
35025
35025
|
"namingProhibited": true
|
|
35026
35026
|
}
|
|
35027
|
+
},
|
|
35028
|
+
"1.1": {
|
|
35029
|
+
"conditions": {
|
|
35030
|
+
":not([href])": {
|
|
35031
|
+
"implicitRole": false
|
|
35032
|
+
}
|
|
35033
|
+
}
|
|
35027
35034
|
}
|
|
35028
35035
|
},
|
|
35029
35036
|
"omission": false,
|
|
@@ -38345,7 +38352,7 @@
|
|
|
38345
38352
|
"description": "A string specifying a name for the input control. This name is submitted along with the control's value when the form data is submitted. Consider the name a required attribute (even though it's not). If an input has no name specified, or name is empty, the input's value is not submitted with the form! (Disabled controls, unchecked radio buttons, unchecked checkboxes, and reset buttons are also not sent.) There are two special cases: _charset_ : If used as the name of an <input> element of type hidden, the input's value is automatically set by the user agent to the character encoding being used to submit the form. isindex: For historical reasons, the name isindex is not allowed. The name attribute creates a unique behavior for radio buttons. Only one radio button in a same-named group of radio buttons can be checked at a time. Selecting any radio button in that group automatically deselects any currently-selected radio button in the same group. The value of that one checked radio button is sent along with the name if the form is submitted, When tabbing into a series of same-named group of radio buttons, if one is checked, that one will receive focus. If they aren't grouped together in source order, if one of the group is checked, tabbing into the group starts when the first one in the group is encountered, skipping all those that aren't checked. In other words, if one is checked, tabbing skips the unchecked radio buttons in the group. If none are checked, the radio button group receives focus when the first button in the same name group is reached. Once one of the radio buttons in a group has focus, using the arrow keys will navigate through all the radio buttons of the same name, even if the radio buttons are not grouped together in the source order. When an input element is given a name, that name becomes a property of the owning form element's HTMLFormElement.elements property. If you have an input whose name is set to guest and another whose name is hat-size, the following code can be used: jslet form = document.querySelector(\"form\"); let guestName = form.elements.guest; let hatSize = form.elements[\"hat-size\"]; When this code has run, guestName will be the HTMLInputElement for the guest field, and hatSize the object for the hat-size field. Warning: Avoid giving form elements a name that corresponds to a built-in property of the form, since you would then override the predefined property or method with this reference to the corresponding input."
|
|
38346
38353
|
},
|
|
38347
38354
|
"orient": {
|
|
38348
|
-
"description": "Similar to the -moz-orient non-standard CSS property impacting the <progress> and <meter> elements, the orient attribute defines the orientation of the range slider. Values include horizontal, meaning the range is rendered horizontally, and vertical, where the range is rendered vertically.",
|
|
38355
|
+
"description": "Similar to the -moz-orient non-standard CSS property impacting the <progress> and <meter> elements, the orient attribute defines the orientation of the range slider. Values include horizontal, meaning the range is rendered horizontally, and vertical, where the range is rendered vertically. See Creating vertical form controls for a modern approach to creating vertical form controls.",
|
|
38349
38356
|
"nonStandard": true
|
|
38350
38357
|
},
|
|
38351
38358
|
"pattern": {
|
|
@@ -40163,9 +40170,12 @@
|
|
|
40163
40170
|
]
|
|
40164
40171
|
},
|
|
40165
40172
|
"aria": {
|
|
40166
|
-
"implicitRole":
|
|
40173
|
+
"implicitRole": "deletion",
|
|
40167
40174
|
"permittedRoles": true,
|
|
40168
|
-
"namingProhibited": true
|
|
40175
|
+
"namingProhibited": true,
|
|
40176
|
+
"1.1": {
|
|
40177
|
+
"implicitRole": false
|
|
40178
|
+
}
|
|
40169
40179
|
},
|
|
40170
40180
|
"omission": false,
|
|
40171
40181
|
"globalAttrs": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.1",
|
|
4
4
|
"description": "A specification of HTML Living Standard for markuplint",
|
|
5
5
|
"repository": "git@github.com:markuplint/markuplint.git",
|
|
6
6
|
"author": "Yusuke Hirao <yusukehirao@me.com>",
|
|
@@ -17,11 +17,11 @@
|
|
|
17
17
|
"gen:prettier": "prettier --write index.json"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@markuplint/spec-generator": "4.
|
|
21
|
-
"@markuplint/test-tools": "4.
|
|
20
|
+
"@markuplint/spec-generator": "4.5.1",
|
|
21
|
+
"@markuplint/test-tools": "4.4.0"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@markuplint/ml-spec": "4.
|
|
24
|
+
"@markuplint/ml-spec": "4.4.1"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "b029c86a6b3a9ea8189d2e5535e3023aaea753fd"
|
|
27
27
|
}
|