@markuplint/html-spec 2.0.0-rc.3 → 2.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.
Files changed (49) hide show
  1. package/README.md +0 -15
  2. package/index.json +110 -25
  3. package/package.json +6 -6
  4. package/src/attributes/link.json +7 -1
  5. package/src/attributes/script.json +6 -0
  6. package/src/attributes/style.json +6 -0
  7. package/src/attributes/svg_a.json +1 -0
  8. package/src/attributes/svg_animate.json +1 -0
  9. package/src/attributes/svg_circle.json +1 -0
  10. package/src/attributes/svg_defs.json +1 -0
  11. package/src/attributes/svg_ellipse.json +1 -0
  12. package/src/attributes/svg_feBlend.json +1 -0
  13. package/src/attributes/svg_feColorMatrix.json +1 -0
  14. package/src/attributes/svg_feComponentTransfer.json +1 -0
  15. package/src/attributes/svg_feComposite.json +1 -0
  16. package/src/attributes/svg_feConvolveMatrix.json +1 -0
  17. package/src/attributes/svg_feDiffuseLighting.json +1 -0
  18. package/src/attributes/svg_feDisplacementMap.json +1 -0
  19. package/src/attributes/svg_feDropShadow.json +1 -0
  20. package/src/attributes/svg_feFlood.json +1 -0
  21. package/src/attributes/svg_feGaussianBlur.json +1 -0
  22. package/src/attributes/svg_feImage.json +1 -0
  23. package/src/attributes/svg_feMerge.json +1 -0
  24. package/src/attributes/svg_feMorphology.json +1 -0
  25. package/src/attributes/svg_feOffset.json +1 -0
  26. package/src/attributes/svg_feSpecularLighting.json +1 -0
  27. package/src/attributes/svg_feTile.json +1 -0
  28. package/src/attributes/svg_feTurbulence.json +1 -0
  29. package/src/attributes/svg_filter.json +1 -0
  30. package/src/attributes/svg_foreignObject.json +1 -0
  31. package/src/attributes/svg_g.json +1 -0
  32. package/src/attributes/svg_image.json +1 -0
  33. package/src/attributes/svg_line.json +1 -0
  34. package/src/attributes/svg_marker.json +1 -0
  35. package/src/attributes/svg_mesh.json +1 -0
  36. package/src/attributes/svg_meshpatch.json +1 -0
  37. package/src/attributes/svg_meshrow.json +1 -0
  38. package/src/attributes/svg_path.json +1 -0
  39. package/src/attributes/svg_polygon.json +1 -0
  40. package/src/attributes/svg_polyline.json +1 -0
  41. package/src/attributes/svg_rect.json +1 -0
  42. package/src/attributes/svg_stop.json +1 -0
  43. package/src/attributes/svg_svg.json +1 -0
  44. package/src/attributes/svg_switch.json +1 -0
  45. package/src/attributes/svg_text.json +1 -0
  46. package/src/attributes/svg_textPath.json +1 -0
  47. package/src/attributes/svg_tspan.json +1 -0
  48. package/src/attributes/svg_use.json +1 -0
  49. package/src/global-attributes/_global.json +28 -0
package/README.md CHANGED
@@ -6,23 +6,8 @@
6
6
 
7
7
  ## Install
8
8
 
9
- Prerequisites: [Node.js](https://nodejs.org) (Version 12.4.0 or later)
10
-
11
9
  ```sh
12
10
  $ npm install @markuplint/html-spec
13
11
 
14
12
  $ yarn add @markuplint/html-spec
15
13
  ```
16
-
17
- ## Contributing
18
-
19
- ```
20
- $ git clone git@github.com:markuplint/markuplint.git -b main
21
- $ yarn
22
- $ yarn build
23
- $ yarn test
24
- ```
25
-
26
- ---
27
-
28
- Copyright © 2021 markuplint. Under the MIT License.
package/index.json CHANGED
@@ -402,6 +402,10 @@
402
402
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onabort",
403
403
  "type": "FunctionBody"
404
404
  },
405
+ "onbeforeinput": {
406
+ "ref": "https://w3c.github.io/uievents/#beforeinput",
407
+ "type": "FunctionBody"
408
+ },
405
409
  "onblur": {
406
410
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onabort",
407
411
  "type": "FunctionBody"
@@ -434,6 +438,18 @@
434
438
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncontextlost",
435
439
  "type": "FunctionBody"
436
440
  },
441
+ "oncompositionstart": {
442
+ "ref": "https://w3c.github.io/uievents/#compositionstart",
443
+ "type": "FunctionBody"
444
+ },
445
+ "oncompositionupdate": {
446
+ "ref": "https://w3c.github.io/uievents/#compositionupdate",
447
+ "type": "FunctionBody"
448
+ },
449
+ "oncompositionend": {
450
+ "ref": "https://w3c.github.io/uievents/#compositionend",
451
+ "type": "FunctionBody"
452
+ },
437
453
  "oncontextmenu": {
438
454
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncontextmenu",
439
455
  "type": "FunctionBody"
@@ -502,6 +518,14 @@
502
518
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onformdata",
503
519
  "type": "FunctionBody"
504
520
  },
521
+ "onfocusin": {
522
+ "ref": "https://w3c.github.io/uievents/#focusin",
523
+ "type": "FunctionBody"
524
+ },
525
+ "onfocusout": {
526
+ "ref": "https://w3c.github.io/uievents/#focusout",
527
+ "type": "FunctionBody"
528
+ },
505
529
  "oninput": {
506
530
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oninput",
507
531
  "type": "FunctionBody"
@@ -646,6 +670,10 @@
646
670
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onwaiting",
647
671
  "type": "FunctionBody"
648
672
  },
673
+ "onunload": {
674
+ "ref": "https://w3c.github.io/uievents/#unload",
675
+ "type": "FunctionBody"
676
+ },
649
677
  "onwheel": {
650
678
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onwheel",
651
679
  "type": "FunctionBody"
@@ -10558,14 +10586,14 @@
10558
10586
  "deprecated": true
10559
10587
  },
10560
10588
  "shape": {
10561
- "description": "The shape of the hyperlinks region in an image map. Note: Use the <area> element for image maps instead.",
10589
+ "description": "The shape of the hyperlink's region in an image map. Note: Use the <area> element for image maps instead.",
10562
10590
  "deprecated": true
10563
10591
  },
10564
10592
  "target": {
10565
- "description": "Where to display the linked URL, as the name for a browsing context (a tab, window, or <iframe>). The following keywords have special meanings for where to load the URL: _self: the current browsing context. (Default) _blank: usually a new tab, but users can configure browsers to open a new window instead. _parent: the parent browsing context of the current one. If no parent, behaves as _self. _top: the topmost browsing context (the \"highest\" context thats an ancestor of the current one). If no ancestors, behaves as _self. Note: Setting target=\"_blank\" on <a> elements implicitly provides the same rel behavior as setting rel=\"noopener\" which does not set window.opener. See browser compatibility for support status."
10593
+ "description": "Where to display the linked URL, as the name for a browsing context (a tab, window, or <iframe>). The following keywords have special meanings for where to load the URL: _self: the current browsing context. (Default) _blank: usually a new tab, but users can configure browsers to open a new window instead. _parent: the parent browsing context of the current one. If no parent, behaves as _self. _top: the topmost browsing context (the \"highest\" context that's an ancestor of the current one). If no ancestors, behaves as _self. Note: Setting target=\"_blank\" on <a> elements implicitly provides the same rel behavior as setting rel=\"noopener\" which does not set window.opener. See browser compatibility for support status."
10566
10594
  },
10567
10595
  "type": {
10568
- "description": "Hints at the linked URLs format with a MIME type. No built-in functionality."
10596
+ "description": "Hints at the linked URL's format with a MIME type. No built-in functionality."
10569
10597
  }
10570
10598
  }
10571
10599
  },
@@ -10643,7 +10671,7 @@
10643
10671
  "roles": true
10644
10672
  },
10645
10673
  "implicitRole": {
10646
- "summary": "",
10674
+ "summary": "No corresponding role",
10647
10675
  "role": false
10648
10676
  },
10649
10677
  "omittion": false,
@@ -10876,7 +10904,7 @@
10876
10904
  "roles": ["feed", "none", "note", "presentation", "region", "search"]
10877
10905
  },
10878
10906
  "implicitRole": {
10879
- "summary": "",
10907
+ "summary": "complementary",
10880
10908
  "role": "complementary"
10881
10909
  },
10882
10910
  "omittion": false,
@@ -11510,19 +11538,19 @@
11510
11538
  "description": "The URL that processes the information submitted by the button. Overrides the action attribute of the button's form owner. Does nothing if there is no form owner."
11511
11539
  },
11512
11540
  "formenctype": {
11513
- "description": "If the button is a submit button (it's inside/associated with a <form> and doesn't have type=\"button\"), specifies how to encode the form data that is submitted. Possible values: application/x-www-form-urlencoded: The default if the attribute is not used. multipart/form-data: Use to submit <input> elements with their type attributes set to file. text/plain: Specified as a debugging aid; shouldnt be used for real form submission. If this attribute is specified, it overrides the enctype attribute of the button's form owner."
11541
+ "description": "If the button is a submit button (it's inside/associated with a <form> and doesn't have type=\"button\"), specifies how to encode the form data that is submitted. Possible values: application/x-www-form-urlencoded: The default if the attribute is not used. multipart/form-data: Use to submit <input> elements with their type attributes set to file. text/plain: Specified as a debugging aid; shouldn't be used for real form submission. If this attribute is specified, it overrides the enctype attribute of the button's form owner."
11514
11542
  },
11515
11543
  "formmethod": {
11516
- "description": "If the button is a submit button (it's inside/associated with a <form> and doesn't have type=\"button\"), this attribute specifies the HTTP method used to submit the form. Possible values: post: The data from the form are included in the body of the HTTP request when sent to the server. Use when the form contains information that shouldnt be public, like login credentials. get: The form data are appended to the form's action URL, with a ? as a separator, and the resulting URL is sent to the server. Use this method when the form has no side effects, like search forms. If specified, this attribute overrides the method attribute of the button's form owner."
11544
+ "description": "If the button is a submit button (it's inside/associated with a <form> and doesn't have type=\"button\"), this attribute specifies the HTTP method used to submit the form. Possible values: post: The data from the form are included in the body of the HTTP request when sent to the server. Use when the form contains information that shouldn't be public, like login credentials. get: The form data are appended to the form's action URL, with a ? as a separator, and the resulting URL is sent to the server. Use this method when the form has no side effects, like search forms. If specified, this attribute overrides the method attribute of the button's form owner."
11517
11545
  },
11518
11546
  "formnovalidate": {
11519
11547
  "description": "If the button is a submit button, this Boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the novalidate attribute of the button's form owner. This attribute is also available on <input type=\"image\"> and <input type=\"submit\"> elements."
11520
11548
  },
11521
11549
  "formtarget": {
11522
- "description": "If the button is a submit button, this attribute is an author-defined name or standardized, underscore-prefixed keyword indicating where to display the response from submitting the form. This is the name of, or keyword for, a browsing context (a tab, window, or <iframe>). If this attribute is specified, it overrides the target attribute of the button's form owner. The following keywords have special meanings: _self: Load the response into the same browsing context as the current one. This is the default if the attribute is not specified. _blank: Load the response into a new unnamed browsing context — usually a new tab or window, depending on the users browser settings. _parent: Load the response into the parent browsing context of the current one. If there is no parent, this option behaves the same way as _self. _top: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self."
11550
+ "description": "If the button is a submit button, this attribute is an author-defined name or standardized, underscore-prefixed keyword indicating where to display the response from submitting the form. This is the name of, or keyword for, a browsing context (a tab, window, or <iframe>). If this attribute is specified, it overrides the target attribute of the button's form owner. The following keywords have special meanings: _self: Load the response into the same browsing context as the current one. This is the default if the attribute is not specified. _blank: Load the response into a new unnamed browsing context — usually a new tab or window, depending on the user's browser settings. _parent: Load the response into the parent browsing context of the current one. If there is no parent, this option behaves the same way as _self. _top: Load the response into the top-level browsing context (that is, the browsing context that is an ancestor of the current one, and has no parent). If there is no parent, this option behaves the same way as _self."
11523
11551
  },
11524
11552
  "name": {
11525
- "description": "The name of the button, submitted as a pair with the buttons value as part of the form data, when that button is used to submit the form."
11553
+ "description": "The name of the button, submitted as a pair with the button's value as part of the form data, when that button is used to submit the form."
11526
11554
  },
11527
11555
  "type": {
11528
11556
  "ref": "https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type",
@@ -11732,7 +11760,7 @@
11732
11760
  "deprecated": true
11733
11761
  },
11734
11762
  "bgcolor": {
11735
- "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color kewords can also be used. To achieve a similar effect, use the CSS background-color property.",
11763
+ "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color keywords can also be used. To achieve a similar effect, use the CSS background-color property.",
11736
11764
  "deprecated": true
11737
11765
  },
11738
11766
  "char": {
@@ -11806,7 +11834,7 @@
11806
11834
  "deprecated": true
11807
11835
  },
11808
11836
  "bgcolor": {
11809
- "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color kewords can also be used. To achieve a similar effect, use the CSS background-color property.",
11837
+ "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color keywords can also be used. To achieve a similar effect, use the CSS background-color property.",
11810
11838
  "deprecated": true
11811
11839
  },
11812
11840
  "char": {
@@ -12707,7 +12735,7 @@
12707
12735
  "globalAttrs": {},
12708
12736
  "attributes": {
12709
12737
  "frameborder": {
12710
- "description": "This attribute allows you to specify a frames border."
12738
+ "description": "This attribute allows you to specify a frame's border."
12711
12739
  },
12712
12740
  "marginheight": {
12713
12741
  "description": "This attribute defines the height of the margin between frames."
@@ -12716,7 +12744,7 @@
12716
12744
  "description": "This attribute defines the width of the margin between frames."
12717
12745
  },
12718
12746
  "name": {
12719
- "description": "This attribute is used for labeling frames. Without labeling, every link will open in the frame that its in – the closest parent frame. See the target attribute for more information."
12747
+ "description": "This attribute is used for labeling frames. Without labeling, every link will open in the frame that it's in – the closest parent frame. See the target attribute for more information."
12720
12748
  },
12721
12749
  "noresize": {
12722
12750
  "description": "This attribute prevents resizing of frames by users."
@@ -13119,7 +13147,7 @@
13119
13147
  },
13120
13148
  "attributes": {
13121
13149
  "manifest": {
13122
- "description": "Specifies the URI of a resource manifest indicating resources that should be cached locally. See Using the application cache for details.",
13150
+ "description": "Specifies the URI of a resource manifest indicating resources that should be cached locally.",
13123
13151
  "deprecated": true
13124
13152
  },
13125
13153
  "version": {
@@ -13401,7 +13429,7 @@
13401
13429
  "deprecated": true
13402
13430
  },
13403
13431
  "intrinsicsize": {
13404
- "description": "This attribute tells the browser to ignore the actual intrinsic size of the image and pretend its the size specified in the attribute. Specifically, the image would raster at these dimensions and naturalWidth/naturalHeight on images would return the values specified in this attribute. Explainer, examples",
13432
+ "description": "This attribute tells the browser to ignore the actual intrinsic size of the image and pretend it's the size specified in the attribute. Specifically, the image would raster at these dimensions and naturalWidth/naturalHeight on images would return the values specified in this attribute. Explainer, examples",
13405
13433
  "deprecated": true
13406
13434
  },
13407
13435
  "ismap": {
@@ -13416,7 +13444,7 @@
13416
13444
  "experimental": true
13417
13445
  },
13418
13446
  "longdesc": {
13419
- "description": "A link to a more detailed description of the image. Possible values are a URL or an element id. Note: This attribute is mentioned in the latest W3C version, HTML 5.2, but has been removed from the WHATWGs HTML Living Standard. It has an uncertain future; authors should use a WAI-ARIA alternative such as aria-describedby or aria-details.",
13447
+ "description": "A link to a more detailed description of the image. Possible values are a URL or an element id. Note: This attribute is mentioned in the latest W3C version, HTML 5.2, but has been removed from the WHATWG's HTML Living Standard. It has an uncertain future; authors should use a WAI-ARIA alternative such as aria-describedby or aria-details.",
13420
13448
  "deprecated": true
13421
13449
  },
13422
13450
  "name": {
@@ -13427,7 +13455,7 @@
13427
13455
  "description": "A string indicating which referrer to use when fetching the resource: no-referrer: The Referer header will not be sent. no-referrer-when-downgrade: The Referer header will not be sent to origins without TLS (HTTPS). origin: The sent referrer will be limited to the origin of the referring page: its scheme, host, and port. origin-when-cross-origin: The referrer sent to other origins will be limited to the scheme, the host, and the port. Navigations on the same origin will still include the path. same-origin: A referrer will be sent for same origin, but cross-origin requests will contain no referrer information. strict-origin: Only send the origin of the document as the referrer when the protocol security level stays the same (HTTPS→HTTPS), but don't send it to a less secure destination (HTTPS→HTTP). strict-origin-when-cross-origin (default): Send a full URL when performing a same-origin request, only send the origin when the protocol security level stays the same (HTTPS→HTTPS), and send no header to a less secure destination (HTTPS→HTTP). unsafe-url: The referrer will include the origin and the path (but not the fragment, password, or username). This value is unsafe, because it leaks origins and paths from TLS-protected resources to insecure origins."
13428
13456
  },
13429
13457
  "sizes": {
13430
- "description": "One or more strings separated by commas, indicating a set of source sizes. Each source size consists of: A media condition. This must be omitted for the last item in the list. A source size value. Media Conditions describe properties of the viewport, not of the image. For example, (max-height: 500px) 1000px proposes to use a source of 1000px width, if the viewport is not higher than 500px. Source size values specify the intended display size of the image. User agents use the current source size to select one of the sources supplied by the srcset attribute, when those sources are described using width (w) descriptors. The selected source size affects the intrinsic size of the image (the images display size if no CSS styling is applied). If the srcset attribute is absent, or contains no values with a width descriptor, then the sizes attribute has no effect."
13458
+ "description": "One or more strings separated by commas, indicating a set of source sizes. Each source size consists of: A media condition. This must be omitted for the last item in the list. A source size value. Media Conditions describe properties of the viewport, not of the image. For example, (max-height: 500px) 1000px proposes to use a source of 1000px width, if the viewport is not higher than 500px. Source size values specify the intended display size of the image. User agents use the current source size to select one of the sources supplied by the srcset attribute, when those sources are described using width (w) descriptors. The selected source size affects the intrinsic size of the image (the image's display size if no CSS styling is applied). If the srcset attribute is absent, or contains no values with a width descriptor, then the sizes attribute has no effect."
13431
13459
  },
13432
13460
  "src": {
13433
13461
  "ref": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-src",
@@ -14402,6 +14430,12 @@
14402
14430
  "self": ["[rel='preload' i]", "[rel='modulepreload' i]"]
14403
14431
  }
14404
14432
  },
14433
+ "blocking": {
14434
+ "ref": "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#render-blocking",
14435
+ "type": {
14436
+ "enum": ["render"]
14437
+ }
14438
+ },
14405
14439
  "charset": {
14406
14440
  "description": "This attribute defines the character encoding of the linked resource. The value is a space- and/or comma-delimited list of character sets as defined in RFC 2045. The default value is iso-8859-1. Note: To produce the same effect as this obsolete attribute, use the Content-Type HTTP header on the linked resource.",
14407
14441
  "obsolete": true,
@@ -14469,7 +14503,7 @@
14469
14503
  "experimental": true
14470
14504
  },
14471
14505
  "referrerpolicy": {
14472
- "description": "A string indicating which referrer to use when fetching the resource: no-referrer means that the Referer header will not be sent. no-referrer-when-downgrade means that no Referer header will be sent when navigating to an origin without TLS (HTTPS). This is a user agents default behavior, if no policy is otherwise specified. origin means that the referrer will be the origin of the page, which is roughly the scheme, the host, and the port. origin-when-cross-origin means that navigating to other origins will be limited to the scheme, the host, and the port, while navigating on the same origin will include the referrer's path. unsafe-url means that the referrer will include the origin and the path (but not the fragment, password, or username). This case is unsafe because it can leak origins and paths from TLS-protected resources to insecure origins.",
14506
+ "description": "A string indicating which referrer to use when fetching the resource: no-referrer means that the Referer header will not be sent. no-referrer-when-downgrade means that no Referer header will be sent when navigating to an origin without TLS (HTTPS). This is a user agent's default behavior, if no policy is otherwise specified. origin means that the referrer will be the origin of the page, which is roughly the scheme, the host, and the port. origin-when-cross-origin means that navigating to other origins will be limited to the scheme, the host, and the port, while navigating on the same origin will include the referrer's path. unsafe-url means that the referrer will include the origin and the path (but not the fragment, password, or username). This case is unsafe because it can leak origins and paths from TLS-protected resources to insecure origins.",
14473
14507
  "experimental": true
14474
14508
  },
14475
14509
  "rel": {
@@ -16036,8 +16070,14 @@
16036
16070
  },
16037
16071
  "ineffective": ":not([src]):not([type='module' i])"
16038
16072
  },
16073
+ "blocking": {
16074
+ "ref": "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#render-blocking",
16075
+ "type": {
16076
+ "enum": ["render"]
16077
+ }
16078
+ },
16039
16079
  "charset": {
16040
- "description": "If present, its value must be an ASCII case-insensitive match for \"utf-8\". Its unnecessary to specify the charset attribute, because documents must use UTF-8, and the script element inherits its character encoding from the document.",
16080
+ "description": "If present, its value must be an ASCII case-insensitive match for \"utf-8\". It's unnecessary to specify the charset attribute, because documents must use UTF-8, and the script element inherits its character encoding from the document.",
16041
16081
  "deprecated": true
16042
16082
  },
16043
16083
  "crossorigin": {
@@ -16059,7 +16099,7 @@
16059
16099
  }
16060
16100
  },
16061
16101
  "language": {
16062
- "description": "Like the type attribute, this attribute identifies the scripting language in use. Unlike the type attribute, however, this attributes possible values were never standardized. The type attribute should be used instead.",
16102
+ "description": "Like the type attribute, this attribute identifies the scripting language in use. Unlike the type attribute, however, this attribute's possible values were never standardized. The type attribute should be used instead.",
16063
16103
  "deprecated": true
16064
16104
  },
16065
16105
  "nomodule": {
@@ -16538,12 +16578,18 @@
16538
16578
  "#HTMLGlobalAttrs": true
16539
16579
  },
16540
16580
  "attributes": {
16581
+ "blocking": {
16582
+ "ref": "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#render-blocking",
16583
+ "type": {
16584
+ "enum": ["render"]
16585
+ }
16586
+ },
16541
16587
  "media": {
16542
16588
  "ref": "https://html.spec.whatwg.org/multipage/semantics.html#attr-style-media",
16543
16589
  "type": "<media-query-list>"
16544
16590
  },
16545
16591
  "nonce": {
16546
- "description": "A cryptographic nonce (number used once) used to allow inline styles in a style-src Content-Security-Policy. The server must generate a unique nonce value each time it transmits a policy. It is critical to provide a nonce that cannot be guessed as bypassing a resources policy is otherwise trivial."
16592
+ "description": "A cryptographic nonce (number used once) used to allow inline styles in a style-src Content-Security-Policy. The server must generate a unique nonce value each time it transmits a policy. It is critical to provide a nonce that cannot be guessed as bypassing a resource's policy is otherwise trivial."
16547
16593
  },
16548
16594
  "scoped": {
16549
16595
  "description": "This attribute specifies that the styles only apply to the elements of its parent(s) and children. Note: This attribute may be re-introduced in the future per https://github.com/w3c/csswg-drafts/issues/3547. If you want to use the attribute now, you can use a polyfill.",
@@ -16739,7 +16785,7 @@
16739
16785
  "deprecated": true
16740
16786
  },
16741
16787
  "bgcolor": {
16742
- "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color kewords can also be used. To achieve a similar effect, use the CSS background-color property.",
16788
+ "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color keywords can also be used. To achieve a similar effect, use the CSS background-color property.",
16743
16789
  "deprecated": true
16744
16790
  },
16745
16791
  "border": {
@@ -16807,7 +16853,7 @@
16807
16853
  "deprecated": true
16808
16854
  },
16809
16855
  "bgcolor": {
16810
- "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color kewords can also be used. As this attribute is deprecated, use the CSS background-color property instead.",
16856
+ "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color keywords can also be used. As this attribute is deprecated, use the CSS background-color property instead.",
16811
16857
  "deprecated": true
16812
16858
  },
16813
16859
  "char": {
@@ -16884,7 +16930,7 @@
16884
16930
  "deprecated": true
16885
16931
  },
16886
16932
  "bgcolor": {
16887
- "description": "This attribute defines the background color of each cell in a column. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color kewords can also be used. To achieve a similar effect, use the CSS background-color property.",
16933
+ "description": "This attribute defines the background color of each cell in a column. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color keywords can also be used. To achieve a similar effect, use the CSS background-color property.",
16888
16934
  "deprecated": true
16889
16935
  },
16890
16936
  "char": {
@@ -17097,7 +17143,7 @@
17097
17143
  "deprecated": true
17098
17144
  },
17099
17145
  "bgcolor": {
17100
- "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color kewords can also be used. To achieve a similar effect, use the CSS background-color property.",
17146
+ "description": "The background color of the table. It is a 6-digit hexadecimal RGB code, prefixed by a '#'. One of the predefined color keywords can also be used. To achieve a similar effect, use the CSS background-color property.",
17101
17147
  "deprecated": true
17102
17148
  },
17103
17149
  "char": {
@@ -17869,6 +17915,7 @@
17869
17915
  "text-decoration",
17870
17916
  "text-overflow",
17871
17917
  "text-rendering",
17918
+ "transform",
17872
17919
  "transform-origin",
17873
17920
  "unicode-bidi",
17874
17921
  "vector-effect",
@@ -18097,6 +18144,7 @@
18097
18144
  "text-decoration",
18098
18145
  "text-overflow",
18099
18146
  "text-rendering",
18147
+ "transform",
18100
18148
  "transform-origin",
18101
18149
  "unicode-bidi",
18102
18150
  "vector-effect",
@@ -18373,6 +18421,7 @@
18373
18421
  "text-decoration",
18374
18422
  "text-overflow",
18375
18423
  "text-rendering",
18424
+ "transform",
18376
18425
  "transform-origin",
18377
18426
  "unicode-bidi",
18378
18427
  "vector-effect",
@@ -18647,6 +18696,7 @@
18647
18696
  "text-decoration",
18648
18697
  "text-overflow",
18649
18698
  "text-rendering",
18699
+ "transform",
18650
18700
  "transform-origin",
18651
18701
  "unicode-bidi",
18652
18702
  "vector-effect",
@@ -18832,6 +18882,7 @@
18832
18882
  "text-decoration",
18833
18883
  "text-overflow",
18834
18884
  "text-rendering",
18885
+ "transform",
18835
18886
  "transform-origin",
18836
18887
  "unicode-bidi",
18837
18888
  "vector-effect",
@@ -18948,6 +18999,7 @@
18948
18999
  "text-decoration",
18949
19000
  "text-overflow",
18950
19001
  "text-rendering",
19002
+ "transform",
18951
19003
  "transform-origin",
18952
19004
  "unicode-bidi",
18953
19005
  "vector-effect",
@@ -19071,6 +19123,7 @@
19071
19123
  "text-decoration",
19072
19124
  "text-overflow",
19073
19125
  "text-rendering",
19126
+ "transform",
19074
19127
  "transform-origin",
19075
19128
  "unicode-bidi",
19076
19129
  "vector-effect",
@@ -19190,6 +19243,7 @@
19190
19243
  "text-decoration",
19191
19244
  "text-overflow",
19192
19245
  "text-rendering",
19246
+ "transform",
19193
19247
  "transform-origin",
19194
19248
  "unicode-bidi",
19195
19249
  "vector-effect",
@@ -19288,6 +19342,7 @@
19288
19342
  "text-decoration",
19289
19343
  "text-overflow",
19290
19344
  "text-rendering",
19345
+ "transform",
19291
19346
  "transform-origin",
19292
19347
  "unicode-bidi",
19293
19348
  "vector-effect",
@@ -19442,6 +19497,7 @@
19442
19497
  "text-decoration",
19443
19498
  "text-overflow",
19444
19499
  "text-rendering",
19500
+ "transform",
19445
19501
  "transform-origin",
19446
19502
  "unicode-bidi",
19447
19503
  "vector-effect",
@@ -19614,6 +19670,7 @@
19614
19670
  "text-decoration",
19615
19671
  "text-overflow",
19616
19672
  "text-rendering",
19673
+ "transform",
19617
19674
  "transform-origin",
19618
19675
  "unicode-bidi",
19619
19676
  "vector-effect",
@@ -19731,6 +19788,7 @@
19731
19788
  "text-decoration",
19732
19789
  "text-overflow",
19733
19790
  "text-rendering",
19791
+ "transform",
19734
19792
  "transform-origin",
19735
19793
  "unicode-bidi",
19736
19794
  "vector-effect",
@@ -19913,6 +19971,7 @@
19913
19971
  "text-decoration",
19914
19972
  "text-overflow",
19915
19973
  "text-rendering",
19974
+ "transform",
19916
19975
  "transform-origin",
19917
19976
  "unicode-bidi",
19918
19977
  "vector-effect",
@@ -20033,6 +20092,7 @@
20033
20092
  "text-decoration",
20034
20093
  "text-overflow",
20035
20094
  "text-rendering",
20095
+ "transform",
20036
20096
  "transform-origin",
20037
20097
  "unicode-bidi",
20038
20098
  "vector-effect",
@@ -20290,6 +20350,7 @@
20290
20350
  "text-decoration",
20291
20351
  "text-overflow",
20292
20352
  "text-rendering",
20353
+ "transform",
20293
20354
  "transform-origin",
20294
20355
  "unicode-bidi",
20295
20356
  "vector-effect",
@@ -20409,6 +20470,7 @@
20409
20470
  "text-decoration",
20410
20471
  "text-overflow",
20411
20472
  "text-rendering",
20473
+ "transform",
20412
20474
  "transform-origin",
20413
20475
  "unicode-bidi",
20414
20476
  "vector-effect",
@@ -20540,6 +20602,7 @@
20540
20602
  "text-decoration",
20541
20603
  "text-overflow",
20542
20604
  "text-rendering",
20605
+ "transform",
20543
20606
  "transform-origin",
20544
20607
  "unicode-bidi",
20545
20608
  "vector-effect",
@@ -20667,6 +20730,7 @@
20667
20730
  "text-decoration",
20668
20731
  "text-overflow",
20669
20732
  "text-rendering",
20733
+ "transform",
20670
20734
  "transform-origin",
20671
20735
  "unicode-bidi",
20672
20736
  "vector-effect",
@@ -20781,6 +20845,7 @@
20781
20845
  "text-decoration",
20782
20846
  "text-overflow",
20783
20847
  "text-rendering",
20848
+ "transform",
20784
20849
  "transform-origin",
20785
20850
  "unicode-bidi",
20786
20851
  "vector-effect",
@@ -20956,6 +21021,7 @@
20956
21021
  "text-decoration",
20957
21022
  "text-overflow",
20958
21023
  "text-rendering",
21024
+ "transform",
20959
21025
  "transform-origin",
20960
21026
  "unicode-bidi",
20961
21027
  "vector-effect",
@@ -21154,6 +21220,7 @@
21154
21220
  "text-decoration",
21155
21221
  "text-overflow",
21156
21222
  "text-rendering",
21223
+ "transform",
21157
21224
  "transform-origin",
21158
21225
  "unicode-bidi",
21159
21226
  "vector-effect",
@@ -21252,6 +21319,7 @@
21252
21319
  "text-decoration",
21253
21320
  "text-overflow",
21254
21321
  "text-rendering",
21322
+ "transform",
21255
21323
  "transform-origin",
21256
21324
  "unicode-bidi",
21257
21325
  "vector-effect",
@@ -21386,6 +21454,7 @@
21386
21454
  "text-decoration",
21387
21455
  "text-overflow",
21388
21456
  "text-rendering",
21457
+ "transform",
21389
21458
  "transform-origin",
21390
21459
  "unicode-bidi",
21391
21460
  "vector-effect",
@@ -21675,6 +21744,7 @@
21675
21744
  "text-decoration",
21676
21745
  "text-overflow",
21677
21746
  "text-rendering",
21747
+ "transform",
21678
21748
  "transform-origin",
21679
21749
  "unicode-bidi",
21680
21750
  "vector-effect",
@@ -21808,6 +21878,7 @@
21808
21878
  "text-decoration",
21809
21879
  "text-overflow",
21810
21880
  "text-rendering",
21881
+ "transform",
21811
21882
  "transform-origin",
21812
21883
  "unicode-bidi",
21813
21884
  "vector-effect",
@@ -22228,6 +22299,7 @@
22228
22299
  "text-decoration",
22229
22300
  "text-overflow",
22230
22301
  "text-rendering",
22302
+ "transform",
22231
22303
  "transform-origin",
22232
22304
  "unicode-bidi",
22233
22305
  "vector-effect",
@@ -22359,6 +22431,7 @@
22359
22431
  "text-decoration",
22360
22432
  "text-overflow",
22361
22433
  "text-rendering",
22434
+ "transform",
22362
22435
  "transform-origin",
22363
22436
  "unicode-bidi",
22364
22437
  "vector-effect",
@@ -22683,6 +22756,7 @@
22683
22756
  "text-decoration",
22684
22757
  "text-overflow",
22685
22758
  "text-rendering",
22759
+ "transform",
22686
22760
  "transform-origin",
22687
22761
  "unicode-bidi",
22688
22762
  "vector-effect",
@@ -23111,6 +23185,7 @@
23111
23185
  "text-decoration",
23112
23186
  "text-overflow",
23113
23187
  "text-rendering",
23188
+ "transform",
23114
23189
  "transform-origin",
23115
23190
  "unicode-bidi",
23116
23191
  "vector-effect",
@@ -23412,6 +23487,7 @@
23412
23487
  "text-decoration",
23413
23488
  "text-overflow",
23414
23489
  "text-rendering",
23490
+ "transform",
23415
23491
  "transform-origin",
23416
23492
  "unicode-bidi",
23417
23493
  "vector-effect",
@@ -23536,6 +23612,7 @@
23536
23612
  "text-decoration",
23537
23613
  "text-overflow",
23538
23614
  "text-rendering",
23615
+ "transform",
23539
23616
  "transform-origin",
23540
23617
  "unicode-bidi",
23541
23618
  "vector-effect",
@@ -23850,6 +23927,7 @@
23850
23927
  "text-decoration",
23851
23928
  "text-overflow",
23852
23929
  "text-rendering",
23930
+ "transform",
23853
23931
  "transform-origin",
23854
23932
  "unicode-bidi",
23855
23933
  "vector-effect",
@@ -24081,6 +24159,7 @@
24081
24159
  "text-decoration",
24082
24160
  "text-overflow",
24083
24161
  "text-rendering",
24162
+ "transform",
24084
24163
  "transform-origin",
24085
24164
  "unicode-bidi",
24086
24165
  "vector-effect",
@@ -24280,6 +24359,7 @@
24280
24359
  "text-decoration",
24281
24360
  "text-overflow",
24282
24361
  "text-rendering",
24362
+ "transform",
24283
24363
  "transform-origin",
24284
24364
  "unicode-bidi",
24285
24365
  "vector-effect",
@@ -24449,6 +24529,7 @@
24449
24529
  "text-decoration",
24450
24530
  "text-overflow",
24451
24531
  "text-rendering",
24532
+ "transform",
24452
24533
  "transform-origin",
24453
24534
  "unicode-bidi",
24454
24535
  "vector-effect",
@@ -24664,6 +24745,7 @@
24664
24745
  "text-decoration",
24665
24746
  "text-overflow",
24666
24747
  "text-rendering",
24748
+ "transform",
24667
24749
  "transform-origin",
24668
24750
  "unicode-bidi",
24669
24751
  "vector-effect",
@@ -24828,6 +24910,7 @@
24828
24910
  "text-decoration",
24829
24911
  "text-overflow",
24830
24912
  "text-rendering",
24913
+ "transform",
24831
24914
  "transform-origin",
24832
24915
  "unicode-bidi",
24833
24916
  "vector-effect",
@@ -25058,6 +25141,7 @@
25058
25141
  "text-decoration",
25059
25142
  "text-overflow",
25060
25143
  "text-rendering",
25144
+ "transform",
25061
25145
  "transform-origin",
25062
25146
  "unicode-bidi",
25063
25147
  "vector-effect",
@@ -25218,6 +25302,7 @@
25218
25302
  "text-decoration",
25219
25303
  "text-overflow",
25220
25304
  "text-rendering",
25305
+ "transform",
25221
25306
  "transform-origin",
25222
25307
  "unicode-bidi",
25223
25308
  "vector-effect",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markuplint/html-spec",
3
- "version": "2.0.0-rc.3",
3
+ "version": "2.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>",
@@ -16,17 +16,17 @@
16
16
  },
17
17
  "devDependencies": {
18
18
  "@apidevtools/json-schema-ref-parser": "^9.0.9",
19
- "@types/cheerio": "^0.22.30",
19
+ "@types/cheerio": "^0.22.31",
20
20
  "@types/cli-progress": "^3.9.2",
21
21
  "@types/node-fetch": "2",
22
22
  "cheerio": "^1.0.0-rc.10",
23
- "cli-progress": "^3.9.1",
24
- "fast-xml-parser": "^3.21.1",
23
+ "cli-progress": "^3.10.0",
24
+ "fast-xml-parser": "^4.0.2",
25
25
  "jsonschema": "^1.4.0",
26
26
  "node-fetch": "2"
27
27
  },
28
28
  "dependencies": {
29
- "@markuplint/ml-spec": "2.0.0-rc.3"
29
+ "@markuplint/ml-spec": "2.0.0"
30
30
  },
31
- "gitHead": "fd98dfe75d24c63190f0fd578ef2633ff638e6ab"
31
+ "gitHead": "37c0b6e00b612ce8d31549ce6b99c2f20ac242c7"
32
32
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "tag": "link",
3
- "ref": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link",
3
+ "ref": "https://html.spec.whatwg.org/multipage/semantics.html#the-link-element",
4
4
  "global": {
5
5
  "#HTMLGlobalAttrs": true,
6
6
  "#GlobalEventAttrs": true,
@@ -113,6 +113,12 @@
113
113
  "self": ["[rel='preload' i]", "[rel='modulepreload' i]"]
114
114
  }
115
115
  },
116
+ "blocking": {
117
+ "ref": "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#render-blocking",
118
+ "type": {
119
+ "enum": ["render"]
120
+ }
121
+ },
116
122
  "color": {
117
123
  "ref": "https://html.spec.whatwg.org/multipage/semantics.html#attr-link-color",
118
124
  "type": "<color>",
@@ -53,6 +53,12 @@
53
53
  "condition": {
54
54
  "self": "[src]"
55
55
  }
56
+ },
57
+ "blocking": {
58
+ "ref": "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#render-blocking",
59
+ "type": {
60
+ "enum": ["render"]
61
+ }
56
62
  }
57
63
  }
58
64
  }
@@ -11,6 +11,12 @@
11
11
  "media": {
12
12
  "ref": "https://html.spec.whatwg.org/multipage/semantics.html#attr-style-media",
13
13
  "type": "<media-query-list>"
14
+ },
15
+ "blocking": {
16
+ "ref": "https://html.spec.whatwg.org/multipage/urls-and-fetching.html#render-blocking",
17
+ "type": {
18
+ "enum": ["render"]
19
+ }
14
20
  }
15
21
  }
16
22
  }
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -83,6 +83,7 @@
83
83
  "text-decoration",
84
84
  "text-overflow",
85
85
  "text-rendering",
86
+ "transform",
86
87
  "transform-origin",
87
88
  "unicode-bidi",
88
89
  "vector-effect",
@@ -72,6 +72,7 @@
72
72
  "text-decoration",
73
73
  "text-overflow",
74
74
  "text-rendering",
75
+ "transform",
75
76
  "transform-origin",
76
77
  "unicode-bidi",
77
78
  "vector-effect",
@@ -66,6 +66,7 @@
66
66
  "text-decoration",
67
67
  "text-overflow",
68
68
  "text-rendering",
69
+ "transform",
69
70
  "transform-origin",
70
71
  "unicode-bidi",
71
72
  "vector-effect",
@@ -73,6 +73,7 @@
73
73
  "text-decoration",
74
74
  "text-overflow",
75
75
  "text-rendering",
76
+ "transform",
76
77
  "transform-origin",
77
78
  "unicode-bidi",
78
79
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -64,6 +64,7 @@
64
64
  "text-decoration",
65
65
  "text-overflow",
66
66
  "text-rendering",
67
+ "transform",
67
68
  "transform-origin",
68
69
  "unicode-bidi",
69
70
  "vector-effect",
@@ -73,6 +73,7 @@
73
73
  "text-decoration",
74
74
  "text-overflow",
75
75
  "text-rendering",
76
+ "transform",
76
77
  "transform-origin",
77
78
  "unicode-bidi",
78
79
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -73,6 +73,7 @@
73
73
  "text-decoration",
74
74
  "text-overflow",
75
75
  "text-rendering",
76
+ "transform",
76
77
  "transform-origin",
77
78
  "unicode-bidi",
78
79
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -66,6 +66,7 @@
66
66
  "text-decoration",
67
67
  "text-overflow",
68
68
  "text-rendering",
69
+ "transform",
69
70
  "transform-origin",
70
71
  "unicode-bidi",
71
72
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -65,6 +65,7 @@
65
65
  "text-decoration",
66
66
  "text-overflow",
67
67
  "text-rendering",
68
+ "transform",
68
69
  "transform-origin",
69
70
  "unicode-bidi",
70
71
  "vector-effect",
@@ -65,6 +65,7 @@
65
65
  "text-decoration",
66
66
  "text-overflow",
67
67
  "text-rendering",
68
+ "transform",
68
69
  "transform-origin",
69
70
  "unicode-bidi",
70
71
  "vector-effect",
@@ -70,6 +70,7 @@
70
70
  "text-decoration",
71
71
  "text-overflow",
72
72
  "text-rendering",
73
+ "transform",
73
74
  "transform-origin",
74
75
  "unicode-bidi",
75
76
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -75,6 +75,7 @@
75
75
  "text-decoration",
76
76
  "text-overflow",
77
77
  "text-rendering",
78
+ "transform",
78
79
  "transform-origin",
79
80
  "unicode-bidi",
80
81
  "vector-effect",
@@ -66,6 +66,7 @@
66
66
  "text-decoration",
67
67
  "text-overflow",
68
68
  "text-rendering",
69
+ "transform",
69
70
  "transform-origin",
70
71
  "unicode-bidi",
71
72
  "vector-effect",
@@ -74,6 +74,7 @@
74
74
  "text-decoration",
75
75
  "text-overflow",
76
76
  "text-rendering",
77
+ "transform",
77
78
  "transform-origin",
78
79
  "unicode-bidi",
79
80
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -69,6 +69,7 @@
69
69
  "text-decoration",
70
70
  "text-overflow",
71
71
  "text-rendering",
72
+ "transform",
72
73
  "transform-origin",
73
74
  "unicode-bidi",
74
75
  "vector-effect",
@@ -73,6 +73,7 @@
73
73
  "text-decoration",
74
74
  "text-overflow",
75
75
  "text-rendering",
76
+ "transform",
76
77
  "transform-origin",
77
78
  "unicode-bidi",
78
79
  "vector-effect",
@@ -193,6 +193,10 @@
193
193
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onabort",
194
194
  "type": "FunctionBody"
195
195
  },
196
+ "onbeforeinput": {
197
+ "ref": "https://w3c.github.io/uievents/#beforeinput",
198
+ "type": "FunctionBody"
199
+ },
196
200
  "onblur": {
197
201
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onabort",
198
202
  "type": "FunctionBody"
@@ -225,6 +229,18 @@
225
229
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncontextlost",
226
230
  "type": "FunctionBody"
227
231
  },
232
+ "oncompositionstart": {
233
+ "ref": "https://w3c.github.io/uievents/#compositionstart",
234
+ "type": "FunctionBody"
235
+ },
236
+ "oncompositionupdate": {
237
+ "ref": "https://w3c.github.io/uievents/#compositionupdate",
238
+ "type": "FunctionBody"
239
+ },
240
+ "oncompositionend": {
241
+ "ref": "https://w3c.github.io/uievents/#compositionend",
242
+ "type": "FunctionBody"
243
+ },
228
244
  "oncontextmenu": {
229
245
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oncontextmenu",
230
246
  "type": "FunctionBody"
@@ -293,6 +309,14 @@
293
309
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onformdata",
294
310
  "type": "FunctionBody"
295
311
  },
312
+ "onfocusin": {
313
+ "ref": "https://w3c.github.io/uievents/#focusin",
314
+ "type": "FunctionBody"
315
+ },
316
+ "onfocusout": {
317
+ "ref": "https://w3c.github.io/uievents/#focusout",
318
+ "type": "FunctionBody"
319
+ },
296
320
  "oninput": {
297
321
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-oninput",
298
322
  "type": "FunctionBody"
@@ -437,6 +461,10 @@
437
461
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onwaiting",
438
462
  "type": "FunctionBody"
439
463
  },
464
+ "onunload": {
465
+ "ref": "https://w3c.github.io/uievents/#unload",
466
+ "type": "FunctionBody"
467
+ },
440
468
  "onwheel": {
441
469
  "ref": "https://html.spec.whatwg.org/multipage/webappapis.html#handler-onwheel",
442
470
  "type": "FunctionBody"