@markuplint/html-spec 4.1.1 → 4.3.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.
Files changed (2) hide show
  1. package/index.json +15 -6
  2. package/package.json +5 -5
package/index.json CHANGED
@@ -4074,6 +4074,7 @@
4074
4074
  {
4075
4075
  "name": "directory",
4076
4076
  "description": "[Deprecated in ARIA 1.2] A list of references to members of a group, such as a static table of contents.\n\nAs exposed by accessibility APIs, the directory role is essentially equivalent to the list role. So, using directory does not provide any additional benefits to assistive technology users. Authors are advised to treat directory as deprecated and to use list, or a host language's equivalent semantics instead.\n\nA directory is a static table of contents, whether linked or unlinked. This includes tables of contents built with lists, including nested lists. Dynamic tables of contents, however, might use a tree role instead.",
4077
+ "deprecated": true,
4077
4078
  "generalization": ["list"],
4078
4079
  "requiredContextRole": [],
4079
4080
  "requiredOwnedElements": [],
@@ -16165,6 +16166,7 @@
16165
16166
  {
16166
16167
  "name": "directory",
16167
16168
  "description": "[Deprecated in ARIA 1.2] A list of references to members of a group, such as a static table of contents.\n\nAs exposed by accessibility APIs, the directory role is essentially equivalent to the list role. So, using directory does not provide any additional benefits to assistive technology users. Authors are advised to treat directory as deprecated and to use list, or a host language's equivalent semantics instead.\n\nA directory is a static table of contents, whether linked or unlinked. This includes tables of contents built with lists, including nested lists. Dynamic tables of contents, however, might use a tree role instead.",
16169
+ "deprecated": true,
16168
16170
  "generalization": ["list"],
16169
16171
  "requiredContextRole": [],
16170
16172
  "requiredOwnedElements": [],
@@ -35733,6 +35735,9 @@
35733
35735
  "onpageshow": {
35734
35736
  "type": "FunctionBody"
35735
35737
  },
35738
+ "onpageswap": {
35739
+ "type": "FunctionBody"
35740
+ },
35736
35741
  "onpopstate": {
35737
35742
  "type": "FunctionBody"
35738
35743
  },
@@ -37426,6 +37431,11 @@
37426
37431
  "deprecated": true,
37427
37432
  "nonStandard": true
37428
37433
  },
37434
+ "browsingtopics": {
37435
+ "description": "A boolean attribute that, if present, specifies that the selected topics for the current user should be sent with the request for the <iframe>'s source. See Using the Topics API for more details.",
37436
+ "experimental": true,
37437
+ "nonStandard": true
37438
+ },
37429
37439
  "credentialless": {
37430
37440
  "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.",
37431
37441
  "experimental": true
@@ -38818,6 +38828,7 @@
38818
38828
  "canonical",
38819
38829
  "author",
38820
38830
  "dns-prefetch",
38831
+ "expect",
38821
38832
  "help",
38822
38833
  "icon",
38823
38834
  "manifest",
@@ -40643,7 +40654,7 @@
40643
40654
  "name": "style",
40644
40655
  "cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/style",
40645
40656
  "description": "The <style> HTML element contains style information for a document, or part of a document. It contains CSS, which is applied to the contents of the document containing the <style> element.",
40646
- "categories": ["#metadata", "#flow"],
40657
+ "categories": ["#metadata"],
40647
40658
  "contentModel": {
40648
40659
  "contents": [
40649
40660
  {
@@ -41593,13 +41604,11 @@
41593
41604
  "attributes": {
41594
41605
  "compact": {
41595
41606
  "description": "This Boolean attribute hints that the list should be rendered in a compact style. The interpretation of this attribute depends on the user agent, and it doesn't work in all browsers. Warning: Do not use this attribute, as it has been deprecated: use CSS instead. To give a similar effect as the compact attribute, the CSS property line-height can be used with a value of 80%.",
41596
- "deprecated": true,
41597
- "nonStandard": true
41607
+ "deprecated": true
41598
41608
  },
41599
41609
  "type": {
41600
41610
  "description": "This attribute sets the bullet style for the list. The values defined under HTML3.2 and the transitional version of HTML 4.0/4.01 are: circle disc square A fourth bullet type has been defined in the WebTV interface, but not all browsers support it: triangle. If not present and if no CSS list-style-type property applies to the element, the user agent selects a bullet type depending on the nesting level of the list. Warning: Do not use this attribute, as it has been deprecated; use the CSS list-style-type property instead.",
41601
- "deprecated": true,
41602
- "nonStandard": true
41611
+ "deprecated": true
41603
41612
  }
41604
41613
  }
41605
41614
  },
@@ -44993,7 +45002,7 @@
44993
45002
  {
44994
45003
  "zeroOrMore": [
44995
45004
  ":model(SVGDescriptive)",
44996
- "#SVGFilterPrimitive",
45005
+ ":model(SVGFilterPrimitive)",
44997
45006
  "svg|animate",
44998
45007
  "svg|script",
44999
45008
  "svg|set"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "4.1.1",
3
+ "version": "4.3.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.1.0",
21
- "@markuplint/test-tools": "4.0.2"
20
+ "@markuplint/spec-generator": "4.2.0",
21
+ "@markuplint/test-tools": "4.1.0"
22
22
  },
23
23
  "dependencies": {
24
- "@markuplint/ml-spec": "4.0.2"
24
+ "@markuplint/ml-spec": "4.1.0"
25
25
  },
26
- "gitHead": "10ce6c8374106f311eeaaffbae8f3fdcbb40f877"
26
+ "gitHead": "f750e5da19f5526995f80292c249d1592324b333"
27
27
  }