@markuplint/html-spec 3.0.0-rc.0 → 3.0.0-rc.2
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 +2 -6
- package/package.json +5 -5
- package/src/spec.iframe.json +1 -5
- package/src/spec.noscript.json +1 -1
package/index.json
CHANGED
|
@@ -25000,11 +25000,7 @@
|
|
|
25000
25000
|
"description": "The <iframe> HTML element represents a nested browsing context, embedding another HTML page into the current one.",
|
|
25001
25001
|
"categories": ["#flow", "#phrasing", "#embedded", "#interactive", "#palpable"],
|
|
25002
25002
|
"contentModel": {
|
|
25003
|
-
"contents":
|
|
25004
|
-
{
|
|
25005
|
-
"transparent": "*"
|
|
25006
|
-
}
|
|
25007
|
-
]
|
|
25003
|
+
"contents": false
|
|
25008
25004
|
},
|
|
25009
25005
|
"aria": {
|
|
25010
25006
|
"implicitRole": false,
|
|
@@ -27015,7 +27011,7 @@
|
|
|
27015
27011
|
"contentModel": {
|
|
27016
27012
|
"contents": [
|
|
27017
27013
|
{
|
|
27018
|
-
"
|
|
27014
|
+
"transparent": ":not(noscript)"
|
|
27019
27015
|
}
|
|
27020
27016
|
]
|
|
27021
27017
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@markuplint/html-spec",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.2",
|
|
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>",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"@types/cheerio": "^0.22.31",
|
|
19
19
|
"@types/cli-progress": "^3.11.0",
|
|
20
20
|
"@types/node-fetch": "2",
|
|
21
|
-
"ajv": "^8.11.
|
|
21
|
+
"ajv": "^8.11.2",
|
|
22
22
|
"cheerio": "^1.0.0-rc.12",
|
|
23
23
|
"cli-progress": "^3.11.2",
|
|
24
|
-
"fast-xml-parser": "^4.0.
|
|
24
|
+
"fast-xml-parser": "^4.0.12",
|
|
25
25
|
"node-fetch": "2",
|
|
26
26
|
"strip-json-comments": "3"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@markuplint/ml-spec": "3.0.0-rc.
|
|
29
|
+
"@markuplint/ml-spec": "3.0.0-rc.2"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "27a5c8d136f4b0cf8452552cff529dd0a4db6bba"
|
|
32
32
|
}
|
package/src/spec.iframe.json
CHANGED