@markuplint/html-spec 4.0.1 → 4.1.0
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 +10 -8
- package/package.json +5 -5
package/index.json
CHANGED
|
@@ -11634,7 +11634,7 @@
|
|
|
11634
11634
|
},
|
|
11635
11635
|
{
|
|
11636
11636
|
"name": "tabpanel",
|
|
11637
|
-
"description": "A container for the resources associated with a tab, where each tab is contained in a tablist.\n\nAuthors SHOULD associate a tabpanel element with its tab,
|
|
11637
|
+
"description": "A container for the resources associated with a tab, where each tab is contained in a tablist.\n\nAuthors SHOULD associate a tabpanel element with its tab, by using the aria-controls attribute on the tab to reference the tab panel, and/or by using the aria-labelledby attribute on the tab panel to reference the tab.\n\ntablist elements are typically placed near, usually preceding, a series of tabpanel elements. See the WAI-ARIA Authoring Practices for details on implementing a tab set design pattern.",
|
|
11638
11638
|
"generalization": ["section"],
|
|
11639
11639
|
"requiredContextRole": [],
|
|
11640
11640
|
"requiredOwnedElements": [],
|
|
@@ -35625,6 +35625,9 @@
|
|
|
35625
35625
|
"onpagehide": {
|
|
35626
35626
|
"type": "FunctionBody"
|
|
35627
35627
|
},
|
|
35628
|
+
"onpagereveal": {
|
|
35629
|
+
"type": "FunctionBody"
|
|
35630
|
+
},
|
|
35628
35631
|
"onpageshow": {
|
|
35629
35632
|
"type": "FunctionBody"
|
|
35630
35633
|
},
|
|
@@ -37079,8 +37082,7 @@
|
|
|
37079
37082
|
"attributes": {
|
|
37080
37083
|
"profile": {
|
|
37081
37084
|
"description": "The URIs of one or more metadata profiles, separated by white space.",
|
|
37082
|
-
"deprecated": true
|
|
37083
|
-
"nonStandard": true
|
|
37085
|
+
"deprecated": true
|
|
37084
37086
|
}
|
|
37085
37087
|
}
|
|
37086
37088
|
},
|
|
@@ -37247,8 +37249,7 @@
|
|
|
37247
37249
|
"attributes": {
|
|
37248
37250
|
"manifest": {
|
|
37249
37251
|
"description": "Specifies the URI of a resource manifest indicating resources that should be cached locally.",
|
|
37250
|
-
"deprecated": true
|
|
37251
|
-
"nonStandard": true
|
|
37252
|
+
"deprecated": true
|
|
37252
37253
|
},
|
|
37253
37254
|
"version": {
|
|
37254
37255
|
"description": "Specifies the version of the HTML Document Type Definition that governs the current document. This attribute is not needed, because it is redundant with the version information in the document type declaration.",
|
|
@@ -37325,8 +37326,7 @@
|
|
|
37325
37326
|
},
|
|
37326
37327
|
"credentialless": {
|
|
37327
37328
|
"description": "Set to true to make the <iframe> credentialless, meaning that its content will be loaded in a new, ephemeral context. It doesn't have access to the network, cookies, and storage data associated with its origin. It uses a new context local to the top-level document lifetime. In return, the Cross-Origin-Embedder-Policy (COEP) embedding rules can be lifted, so documents with COEP set can embed third-party documents that do not. See IFrame credentialless for more details.",
|
|
37328
|
-
"experimental": true
|
|
37329
|
-
"nonStandard": true
|
|
37329
|
+
"experimental": true
|
|
37330
37330
|
},
|
|
37331
37331
|
"csp": {
|
|
37332
37332
|
"description": "A Content Security Policy enforced for the embedded resource. See HTMLIFrameElement.csp for details.",
|
|
@@ -38728,6 +38728,7 @@
|
|
|
38728
38728
|
"preload",
|
|
38729
38729
|
"prerender",
|
|
38730
38730
|
"prev",
|
|
38731
|
+
"privacy-policy",
|
|
38731
38732
|
"search",
|
|
38732
38733
|
"stylesheet",
|
|
38733
38734
|
"terms-of-service"
|
|
@@ -39393,7 +39394,8 @@
|
|
|
39393
39394
|
"requiredEither": ["data"]
|
|
39394
39395
|
},
|
|
39395
39396
|
"usemap": {
|
|
39396
|
-
"description": "A hash-name reference to a <map> element; that is a '#' followed by the value of a name of a map element."
|
|
39397
|
+
"description": "A hash-name reference to a <map> element; that is a '#' followed by the value of a name of a map element.",
|
|
39398
|
+
"deprecated": true
|
|
39397
39399
|
},
|
|
39398
39400
|
"width": {
|
|
39399
39401
|
"description": "The width of the display resource, in CSS pixels. — (Absolute values only. NO percentages)"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.1.0",
|
|
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.0.
|
|
21
|
-
"@markuplint/test-tools": "4.0.
|
|
20
|
+
"@markuplint/spec-generator": "4.0.1",
|
|
21
|
+
"@markuplint/test-tools": "4.0.1"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@markuplint/ml-spec": "4.0.
|
|
24
|
+
"@markuplint/ml-spec": "4.0.1"
|
|
25
25
|
},
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "b9817c30c2df71faa866e3b3fe286afa499deede"
|
|
27
27
|
}
|