@markuplint/html-spec 2.5.0 → 2.8.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
CHANGED
|
@@ -175,8 +175,6 @@
|
|
|
175
175
|
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter",
|
|
176
176
|
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject",
|
|
177
177
|
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g",
|
|
178
|
-
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch",
|
|
179
|
-
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath",
|
|
180
178
|
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image",
|
|
181
179
|
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line",
|
|
182
180
|
"https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient",
|
|
@@ -1328,7 +1326,7 @@
|
|
|
1328
1326
|
},
|
|
1329
1327
|
"r": {
|
|
1330
1328
|
"ref": "https://svgwg.org/svg2-draft/geometry.html#RProperty",
|
|
1331
|
-
"type": "<svg-length>",
|
|
1329
|
+
"type": ["<svg-length>", "<percentage>"],
|
|
1332
1330
|
"defaultValue": "0",
|
|
1333
1331
|
"animatable": true
|
|
1334
1332
|
},
|
|
@@ -12596,7 +12594,7 @@
|
|
|
12596
12594
|
{
|
|
12597
12595
|
"name": "footer",
|
|
12598
12596
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer",
|
|
12599
|
-
"description": "The <footer> HTML element represents a footer for its nearest sectioning content or sectioning root element. A <footer> typically contains information about the author of the section, copyright data or links to related documents.",
|
|
12597
|
+
"description": "The <footer> HTML element represents a footer for its nearest ancestor sectioning content or sectioning root element. A <footer> typically contains information about the author of the section, copyright data or links to related documents.",
|
|
12600
12598
|
"categories": ["#flow", "#palpable"],
|
|
12601
12599
|
"permittedStructures": {
|
|
12602
12600
|
"summary": "Flow content, but with no <footer> or <header> descendants.",
|
|
@@ -13073,7 +13071,19 @@
|
|
|
13073
13071
|
"zeroOrMore": "#script-supporting"
|
|
13074
13072
|
},
|
|
13075
13073
|
{
|
|
13076
|
-
"
|
|
13074
|
+
"zeroOrMore": "p"
|
|
13075
|
+
},
|
|
13076
|
+
{
|
|
13077
|
+
"zeroOrMore": "#script-supporting"
|
|
13078
|
+
},
|
|
13079
|
+
{
|
|
13080
|
+
"require": ["h1", "h2", "h3", "h4", "h5", "h6"]
|
|
13081
|
+
},
|
|
13082
|
+
{
|
|
13083
|
+
"zeroOrMore": "#script-supporting"
|
|
13084
|
+
},
|
|
13085
|
+
{
|
|
13086
|
+
"zeroOrMore": "p"
|
|
13077
13087
|
},
|
|
13078
13088
|
{
|
|
13079
13089
|
"zeroOrMore": "#script-supporting"
|
|
@@ -13460,7 +13470,8 @@
|
|
|
13460
13470
|
}
|
|
13461
13471
|
},
|
|
13462
13472
|
"fetchpriority": {
|
|
13463
|
-
"description": "Provides a hint of the relative priority to use when fetching the image. Allowed values: high Signals a high-priority fetch relative to other images. low Signals a low-priority fetch relative to other images. auto Default: Signals automatic determination of fetch priority relative to other images."
|
|
13473
|
+
"description": "Provides a hint of the relative priority to use when fetching the image. Allowed values: high Signals a high-priority fetch relative to other images. low Signals a low-priority fetch relative to other images. auto Default: Signals automatic determination of fetch priority relative to other images.",
|
|
13474
|
+
"experimental": true
|
|
13464
13475
|
},
|
|
13465
13476
|
"height": {
|
|
13466
13477
|
"description": "The intrinsic height of the image, in pixels. Must be an integer without a unit."
|
|
@@ -13469,10 +13480,6 @@
|
|
|
13469
13480
|
"description": "The number of pixels of white space on the left and right of the image. Use the margin CSS property instead.",
|
|
13470
13481
|
"deprecated": true
|
|
13471
13482
|
},
|
|
13472
|
-
"intrinsicsize": {
|
|
13473
|
-
"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",
|
|
13474
|
-
"deprecated": true
|
|
13475
|
-
},
|
|
13476
13483
|
"ismap": {
|
|
13477
13484
|
"ref": "https://html.spec.whatwg.org/multipage/embedded-content.html#attr-img-ismap",
|
|
13478
13485
|
"type": "Boolean",
|
|
@@ -13481,8 +13488,7 @@
|
|
|
13481
13488
|
}
|
|
13482
13489
|
},
|
|
13483
13490
|
"loading": {
|
|
13484
|
-
"description": "Indicates how the browser should load the image: eager: Loads the image immediately, regardless of whether or not the image is currently within the visible viewport (this is the default value). lazy: Defers loading the image until it reaches a calculated distance from the viewport, as defined by the browser. The intent is to avoid the network and storage bandwidth needed to handle the image until it's reasonably certain that it will be needed. This generally improves the performance of the content in most typical use cases. Note: Loading is only deferred when JavaScript is enabled. This is an anti-tracking measure, because if a user agent supported lazy loading when scripting is disabled, it would still be possible for a site to track a user's approximate scroll position throughout a session, by strategically placing images in a page's markup such that a server can track how many images are requested and when."
|
|
13485
|
-
"experimental": true
|
|
13491
|
+
"description": "Indicates how the browser should load the image: eager: Loads the image immediately, regardless of whether or not the image is currently within the visible viewport (this is the default value). lazy: Defers loading the image until it reaches a calculated distance from the viewport, as defined by the browser. The intent is to avoid the network and storage bandwidth needed to handle the image until it's reasonably certain that it will be needed. This generally improves the performance of the content in most typical use cases. Note: Loading is only deferred when JavaScript is enabled. This is an anti-tracking measure, because if a user agent supported lazy loading when scripting is disabled, it would still be possible for a site to track a user's approximate scroll position throughout a session, by strategically placing images in a page's markup such that a server can track how many images are requested and when."
|
|
13486
13492
|
},
|
|
13487
13493
|
"longdesc": {
|
|
13488
13494
|
"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.",
|
|
@@ -13533,7 +13539,7 @@
|
|
|
13533
13539
|
"contents": false
|
|
13534
13540
|
},
|
|
13535
13541
|
"permittedRoles": {
|
|
13536
|
-
"summary": "type=button: link, menuitem, menuitemcheckbox, menuitemradio, option, radio, switch, tab type=checkbox: button when used with aria-pressed, menuitemcheckbox, option, switch type=image: link, menuitem, menuitemcheckbox, menuitemradio, radio, switch type=radio: menuitemradio type=text with no list attribute: combobox, searchbox, spinbutton type=color|date|datetime
|
|
13542
|
+
"summary": "type=button: link, menuitem, menuitemcheckbox, menuitemradio, option, radio, switch, tab type=checkbox: button when used with aria-pressed, menuitemcheckbox, option, switch type=image: link, menuitem, menuitemcheckbox, menuitemradio, radio, switch type=radio: menuitemradio type=text with no list attribute: combobox, searchbox, spinbutton type=color|date|datetime-local|email|file|hidden| month|number|password|range|reset|search|submit|tel|url|week or text with list attribute: no role permitted",
|
|
13537
13543
|
"roles": false,
|
|
13538
13544
|
"conditions": [
|
|
13539
13545
|
{
|
|
@@ -13640,7 +13646,7 @@
|
|
|
13640
13646
|
]
|
|
13641
13647
|
},
|
|
13642
13648
|
"implicitRole": {
|
|
13643
|
-
"summary": "type=button: button type=checkbox: checkbox type=email with no list attribute: textbox with list attribute: combobox type=image: button type=number: spinbutton type=radio: radio type=range: slider type=reset: button type=search with no list attribute: searchbox with list attribute:
|
|
13649
|
+
"summary": "type=button: button type=checkbox: checkbox type=email with no list attribute: textbox with list attribute: combobox type=image: button type=number: spinbutton type=radio: radio type=range: slider type=reset: button type=search with no list attribute: searchbox with list attribute:combobox type=submit: button type=tel with no list attribute: textbox with list attribute: combobox type=text with no list attribute: textbox with list attribute: combobox type=url with no list attribute: textbox with list attribute: combobox type=color|date|datetime-local|file|hidden|month|password|time|week: no corresponding role",
|
|
13644
13650
|
"role": false,
|
|
13645
13651
|
"conditions": [
|
|
13646
13652
|
{
|
|
@@ -13801,7 +13807,7 @@
|
|
|
13801
13807
|
}
|
|
13802
13808
|
},
|
|
13803
13809
|
"autocorrect": {
|
|
13804
|
-
"description": "
|
|
13810
|
+
"description": "(Safari only). A string which indicates whether or not to activate automatic correction while the user is editing this field. Permitted values are: on Enable automatic correction of typos, as well as processing of text substitutions if any are configured. off Disable automatic correction and text substitutions.",
|
|
13805
13811
|
"nonStandard": true
|
|
13806
13812
|
},
|
|
13807
13813
|
"autofocus": {
|
|
@@ -13943,10 +13949,6 @@
|
|
|
13943
13949
|
]
|
|
13944
13950
|
}
|
|
13945
13951
|
},
|
|
13946
|
-
"mozactionhint": {
|
|
13947
|
-
"description": "A Mozilla extension, supported by Firefox for Android, which provides a hint as to what sort of action will be taken if the user presses the Enter or Return key while editing the field. This information is used to decide what kind of label to use on the Enter key on the virtual keyboard. Note: This has been standardized as the global attribute enterkeyhint, but is not yet widely implemented. To see the status of the change being implemented in Firefox, see bug 1490661. Permitted values are: go, done, next, search, and send. The browser decides, using this hint, what label to put on the enter key.",
|
|
13948
|
-
"nonStandard": true
|
|
13949
|
-
},
|
|
13950
13952
|
"multiple": {
|
|
13951
13953
|
"ref": "https://html.spec.whatwg.org/multipage/input.html#attr-input-multiple",
|
|
13952
13954
|
"type": "Boolean",
|
|
@@ -14790,8 +14792,7 @@
|
|
|
14790
14792
|
{
|
|
14791
14793
|
"name": "menu",
|
|
14792
14794
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/menu",
|
|
14793
|
-
"description": "The <menu> HTML element is a semantic alternative to <ul>. It represents an unordered list of items (represented by <li> elements)
|
|
14794
|
-
"experimental": true,
|
|
14795
|
+
"description": "The <menu> HTML element is described in the HTML specification as a semantic alternative to <ul>, but treated by browsers (and exposed through the accessibility tree) as no different than <ul>. It represents an unordered list of items (which are represented by <li> elements).",
|
|
14795
14796
|
"categories": ["#flow", "#palpable"],
|
|
14796
14797
|
"permittedStructures": {
|
|
14797
14798
|
"summary": "Zero or more occurrences of <li>, <script>, and <template>.",
|
|
@@ -15221,9 +15222,6 @@
|
|
|
15221
15222
|
"summary": "zero or more <param> elements, then transparent.",
|
|
15222
15223
|
"tag": "object",
|
|
15223
15224
|
"contents": [
|
|
15224
|
-
{
|
|
15225
|
-
"zeroOrMore": "param"
|
|
15226
|
-
},
|
|
15227
15225
|
{
|
|
15228
15226
|
"zeroOrMore": "#transparent"
|
|
15229
15227
|
}
|
|
@@ -15280,7 +15278,7 @@
|
|
|
15280
15278
|
"description": "The form element, if any, that the object element is associated with (its form owner). The value of the attribute must be an ID of a <form> element in the same document."
|
|
15281
15279
|
},
|
|
15282
15280
|
"height": {
|
|
15283
|
-
"description": "The height of the displayed resource, in CSS pixels.
|
|
15281
|
+
"description": "The height of the displayed resource, in CSS pixels. — (Absolute values only. NO percentages)"
|
|
15284
15282
|
},
|
|
15285
15283
|
"name": {
|
|
15286
15284
|
"ref": "https://html.spec.whatwg.org/multipage/iframe-embed-object.html#attr-object-name",
|
|
@@ -15299,7 +15297,7 @@
|
|
|
15299
15297
|
"description": "A hash-name reference to a <map> element; that is a '#' followed by the value of a name of a map element."
|
|
15300
15298
|
},
|
|
15301
15299
|
"width": {
|
|
15302
|
-
"description": "The width of the display resource, in CSS pixels.
|
|
15300
|
+
"description": "The width of the display resource, in CSS pixels. — (Absolute values only. NO percentages)"
|
|
15303
15301
|
}
|
|
15304
15302
|
}
|
|
15305
15303
|
},
|
|
@@ -15560,11 +15558,12 @@
|
|
|
15560
15558
|
"name": "param",
|
|
15561
15559
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param",
|
|
15562
15560
|
"description": "The <param> HTML element defines parameters for an <object> element.",
|
|
15561
|
+
"deprecated": true,
|
|
15563
15562
|
"categories": [],
|
|
15564
15563
|
"permittedStructures": {
|
|
15565
15564
|
"summary": "None, it is an empty element.",
|
|
15566
|
-
"tag": "
|
|
15567
|
-
"contents":
|
|
15565
|
+
"tag": "param",
|
|
15566
|
+
"contents": true
|
|
15568
15567
|
},
|
|
15569
15568
|
"permittedRoles": {
|
|
15570
15569
|
"summary": "No role permitted",
|
|
@@ -15575,26 +15574,19 @@
|
|
|
15575
15574
|
"role": false
|
|
15576
15575
|
},
|
|
15577
15576
|
"omittion": false,
|
|
15578
|
-
"globalAttrs": {
|
|
15579
|
-
"#ARIAAttrs": true,
|
|
15580
|
-
"#DocumentElementEventAttrs": true,
|
|
15581
|
-
"#GlobalEventAttrs": true,
|
|
15582
|
-
"#HTMLGlobalAttrs": true
|
|
15583
|
-
},
|
|
15577
|
+
"globalAttrs": {},
|
|
15584
15578
|
"attributes": {
|
|
15585
15579
|
"name": {
|
|
15586
|
-
"
|
|
15587
|
-
"
|
|
15588
|
-
"required": true
|
|
15580
|
+
"description": "Name of the parameter.",
|
|
15581
|
+
"deprecated": true
|
|
15589
15582
|
},
|
|
15590
15583
|
"type": {
|
|
15591
15584
|
"description": "Only used if the valuetype is set to ref. Specifies the MIME type of values found at the URI specified by value.",
|
|
15592
15585
|
"deprecated": true
|
|
15593
15586
|
},
|
|
15594
15587
|
"value": {
|
|
15595
|
-
"
|
|
15596
|
-
"
|
|
15597
|
-
"required": true
|
|
15588
|
+
"description": "Specifies the value of the parameter.",
|
|
15589
|
+
"deprecated": true
|
|
15598
15590
|
},
|
|
15599
15591
|
"valuetype": {
|
|
15600
15592
|
"description": "Specifies the type of the value attribute. Possible values are: data: Default value. The value is passed to the object's implementation as a string. ref: The value is a URI to a resource where run-time values are stored. object: An ID of another <object> in the same document.",
|
|
@@ -16129,7 +16121,7 @@
|
|
|
16129
16121
|
"_TODO_": "The defer attribute affects the element that has the async attribute if it doesn't support the async"
|
|
16130
16122
|
},
|
|
16131
16123
|
"fetchpriority": {
|
|
16132
|
-
"description": "Provides a hint of the relative priority to use when fetching an external script. Allowed values: high Signals a high-priority fetch relative to other external scripts
|
|
16124
|
+
"description": "Provides a hint of the relative priority to use when fetching an external script. Allowed values: high Signals a high-priority fetch relative to other external scripts. low Signals a low-priority fetch relative to other external scripts. auto Default: Signals automatic determination of fetch priority relative to other external scripts."
|
|
16133
16125
|
},
|
|
16134
16126
|
"integrity": {
|
|
16135
16127
|
"ref": "https://html.spec.whatwg.org/multipage/scripting.html#attr-script-integrity",
|
|
@@ -16272,7 +16264,7 @@
|
|
|
16272
16264
|
},
|
|
16273
16265
|
"attributes": {
|
|
16274
16266
|
"autocomplete": {
|
|
16275
|
-
"description": "A
|
|
16267
|
+
"description": "A string providing a hint for a user agent's autocomplete feature. See The HTML autocomplete attribute for a complete list of values and details on how to use autocomplete."
|
|
16276
16268
|
},
|
|
16277
16269
|
"autofocus": {
|
|
16278
16270
|
"description": "This Boolean attribute lets you specify that a form control should have input focus when the page loads. Only one form element in a document can have the autofocus attribute."
|
|
@@ -16630,11 +16622,6 @@
|
|
|
16630
16622
|
"nonce": {
|
|
16631
16623
|
"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."
|
|
16632
16624
|
},
|
|
16633
|
-
"scoped": {
|
|
16634
|
-
"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.",
|
|
16635
|
-
"deprecated": true,
|
|
16636
|
-
"nonStandard": true
|
|
16637
|
-
},
|
|
16638
16625
|
"title": {
|
|
16639
16626
|
"description": "This attribute specifies alternative style sheet sets."
|
|
16640
16627
|
},
|
|
@@ -17079,10 +17066,6 @@
|
|
|
17079
17066
|
"#HTMLGlobalAttrs": true
|
|
17080
17067
|
},
|
|
17081
17068
|
"attributes": {
|
|
17082
|
-
"autocapitalize": {
|
|
17083
|
-
"description": "This is a non-standard attribute supported by WebKit on iOS (therefore nearly all browsers running on iOS, including Safari, Firefox, and Chrome), which controls whether and how the text value should be automatically capitalized as it is entered/edited by the user. The non-deprecated values are available in iOS 5 and later. Possible values are: none: Completely disables automatic capitalization. sentences: Automatically capitalize the first letter of sentences. words: Automatically capitalize the first letter of words. characters: Automatically capitalize all characters. on: Deprecated since iOS 5. off: Deprecated since iOS 5.",
|
|
17084
|
-
"nonStandard": true
|
|
17085
|
-
},
|
|
17086
17069
|
"autocomplete": {
|
|
17087
17070
|
"description": "This attribute indicates whether the value of the control can be automatically completed by the browser. Possible values are: off: The user must explicitly enter a value into this field for every use, or the document provides its own auto-completion method; the browser does not automatically complete the entry. on: The browser can automatically complete the value based on values that the user has entered during previous uses. If the autocomplete attribute is not specified on a <textarea> element, then the browser uses the autocomplete attribute value of the <textarea> element's form owner. The form owner is either the <form> element that this <textarea> element is a descendant of or the form element whose id is specified by the form attribute of the input element. For more information, see the autocomplete attribute in <form>."
|
|
17088
17071
|
},
|
|
@@ -17460,23 +17443,23 @@
|
|
|
17460
17443
|
},
|
|
17461
17444
|
"attributes": {
|
|
17462
17445
|
"align": {
|
|
17463
|
-
"description": "A
|
|
17446
|
+
"description": "A string which specifies how the cell's context should be aligned horizontally within the cells in the row; this is shorthand for using align on every cell in the row individually. Possible values are: left Align the content of each cell at its left edge. center Center the contents of each cell between their left and right edges. right Align the content of each cell at its right edge. justify Widen whitespaces within the text of each cell so that the text fills the full width of each cell (full justification). char Align each cell in the row on a specific character (such that each row in the column that is configured this way will horizontally align its cells on that character). This uses the char and charoff to establish the alignment character (typically \".\" or \",\" when aligning numerical data) and the number of characters that should follow the alignment character. This alignment type was never widely supported. If no value is expressly set for align, the parent node's value is inherited. Note: Instead of using the obsolete align attribute, you should instead use the CSS text-align property to establish left, center, right, or justify alignment for the row's cells. To apply character-based alignment, set the CSS text-align property to the alignment character (such as \".\" or \",\").",
|
|
17464
17447
|
"deprecated": true
|
|
17465
17448
|
},
|
|
17466
17449
|
"bgcolor": {
|
|
17467
|
-
"description": "A
|
|
17450
|
+
"description": "A string specifying a color to apply to the backgrounds of each of the row's cells. This can be either an hexadecimal #RRGGBB or #RGB value or a color keyword. Omitting the attribute or setting it to null in JavaScript causes the row's cells to inherit the row's parent element's background color. Note: The <tr> element should be styled using CSS. To give a similar effect as the bgcolor attribute, use the CSS property background-color.",
|
|
17468
17451
|
"deprecated": true
|
|
17469
17452
|
},
|
|
17470
17453
|
"char": {
|
|
17471
|
-
"description": "A
|
|
17454
|
+
"description": "A string which sets the character to align the cells in each of the row's columns on (each row's centering that uses the same character gets aligned with others using the same character . Typical values for this include a period (\".\") or comma (\",\") when attempting to align numbers or monetary values. If align is not set to char, this attribute is ignored. Note: This attribute is not only obsolete, but was rarely implemented anyway. To achieve the same effect as the char attribute, set the CSS text-align property to the same string you would specify for the char property, such as text-align: \".\".",
|
|
17472
17455
|
"deprecated": true
|
|
17473
17456
|
},
|
|
17474
17457
|
"charoff": {
|
|
17475
|
-
"description": "A
|
|
17458
|
+
"description": "A string indicating the number of characters on the tail end of the column's data should be displayed after the alignment character specified by the char attribute. For example, when displaying money values for currencies that use hundredths of a unit (such as the dollar, which is divided into 100 cents), you would typically specify a value of 2, so that in tandem with char being set to \".\", the values in a column would be cleanly aligned on the decimal points, with the number of cents properly displayed to the right of the decimal point. Note: This attribute is obsolete, and was never widely supported anyway.",
|
|
17476
17459
|
"deprecated": true
|
|
17477
17460
|
},
|
|
17478
17461
|
"valign": {
|
|
17479
|
-
"description": "A
|
|
17462
|
+
"description": "A string specifying the vertical alignment of the text within each cell in the row. Possible values for this attribute are: baseline Aligns each cell's content text as closely as possible to the bottom of the cell, handling alignment of different fonts and font sizes by aligning the characters along the baseline of the font(s) used in the row. If all of the characters in the row are the same size, the effect is the same as bottom. bottom, Draws the text in each of the row's cells as closely as possible to the bottom edge of those cells. middle Each cell's text is vertically centered. top Each cell's text is drawn as closely as possible to the top edge of the containing cell. Note: Don't use the obsolete valign attribute. Instead, add the CSS vertical-align property to the row.",
|
|
17480
17463
|
"deprecated": true
|
|
17481
17464
|
}
|
|
17482
17465
|
}
|
|
@@ -17678,7 +17661,7 @@
|
|
|
17678
17661
|
"description": "The <video> HTML element embeds a media player which supports video playback into the document. You can use <video> for audio content as well, but the <audio> element may provide a more appropriate user experience.",
|
|
17679
17662
|
"categories": ["#flow", "#phrasing", "#embedded", "#interactive", "#palpable"],
|
|
17680
17663
|
"permittedStructures": {
|
|
17681
|
-
"summary": "If the element has a src attribute: zero or more <track> elements, followed by transparent content that contains no media elements–that is no <audio> or <video
|
|
17664
|
+
"summary": "If the element has a src attribute: zero or more <track> elements, followed by transparent content that contains no media elements–that is no <audio> or <video>. Else: zero or more <source> elements, followed by zero or more <track> elements, followed by transparent content that contains no media elements–that is no <audio> or <video>.",
|
|
17682
17665
|
"tag": "video",
|
|
17683
17666
|
"conditional": [
|
|
17684
17667
|
{
|
|
@@ -17770,7 +17753,7 @@
|
|
|
17770
17753
|
"experimental": true
|
|
17771
17754
|
},
|
|
17772
17755
|
"height": {
|
|
17773
|
-
"description": "The height of the video's display area, in CSS pixels (absolute values only; no percentages.
|
|
17756
|
+
"description": "The height of the video's display area, in CSS pixels (absolute values only; no percentages)."
|
|
17774
17757
|
},
|
|
17775
17758
|
"loop": {
|
|
17776
17759
|
"description": "A Boolean attribute; if specified, the browser will automatically seek back to the start upon reaching the end of the video."
|
|
@@ -17852,14 +17835,6 @@
|
|
|
17852
17835
|
"namespace": "http://www.w3.org/2000/svg",
|
|
17853
17836
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/a",
|
|
17854
17837
|
"categories": ["#SVGContainer"],
|
|
17855
|
-
"permittedRoles": {
|
|
17856
|
-
"summary": "WIP",
|
|
17857
|
-
"roles": []
|
|
17858
|
-
},
|
|
17859
|
-
"implicitRole": {
|
|
17860
|
-
"summary": "WIP",
|
|
17861
|
-
"role": false
|
|
17862
|
-
},
|
|
17863
17838
|
"permittedStructures": {
|
|
17864
17839
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
17865
17840
|
"tag": "a",
|
|
@@ -17885,6 +17860,14 @@
|
|
|
17885
17860
|
}
|
|
17886
17861
|
]
|
|
17887
17862
|
},
|
|
17863
|
+
"implicitRole": {
|
|
17864
|
+
"summary": "WIP",
|
|
17865
|
+
"role": false
|
|
17866
|
+
},
|
|
17867
|
+
"permittedRoles": {
|
|
17868
|
+
"summary": "WIP",
|
|
17869
|
+
"roles": []
|
|
17870
|
+
},
|
|
17888
17871
|
"omittion": false,
|
|
17889
17872
|
"globalAttrs": {
|
|
17890
17873
|
"#HTMLGlobalAttrs": true,
|
|
@@ -18014,6 +17997,11 @@
|
|
|
18014
17997
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18015
17998
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
18016
17999
|
"categories": [],
|
|
18000
|
+
"permittedStructures": {
|
|
18001
|
+
"summary": "",
|
|
18002
|
+
"tag": "altGlyph",
|
|
18003
|
+
"contents": false
|
|
18004
|
+
},
|
|
18017
18005
|
"permittedRoles": {
|
|
18018
18006
|
"summary": "",
|
|
18019
18007
|
"roles": []
|
|
@@ -18022,11 +18010,6 @@
|
|
|
18022
18010
|
"summary": "",
|
|
18023
18011
|
"role": false
|
|
18024
18012
|
},
|
|
18025
|
-
"permittedStructures": {
|
|
18026
|
-
"summary": "",
|
|
18027
|
-
"tag": "altGlyph",
|
|
18028
|
-
"contents": false
|
|
18029
|
-
},
|
|
18030
18013
|
"omittion": false,
|
|
18031
18014
|
"globalAttrs": {},
|
|
18032
18015
|
"attributes": {},
|
|
@@ -18037,6 +18020,11 @@
|
|
|
18037
18020
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18038
18021
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
18039
18022
|
"categories": [],
|
|
18023
|
+
"permittedStructures": {
|
|
18024
|
+
"summary": "",
|
|
18025
|
+
"tag": "altGlyphDef",
|
|
18026
|
+
"contents": false
|
|
18027
|
+
},
|
|
18040
18028
|
"permittedRoles": {
|
|
18041
18029
|
"summary": "",
|
|
18042
18030
|
"roles": []
|
|
@@ -18045,11 +18033,6 @@
|
|
|
18045
18033
|
"summary": "",
|
|
18046
18034
|
"role": false
|
|
18047
18035
|
},
|
|
18048
|
-
"permittedStructures": {
|
|
18049
|
-
"summary": "",
|
|
18050
|
-
"tag": "altGlyphDef",
|
|
18051
|
-
"contents": false
|
|
18052
|
-
},
|
|
18053
18036
|
"omittion": false,
|
|
18054
18037
|
"globalAttrs": {},
|
|
18055
18038
|
"attributes": {},
|
|
@@ -18060,6 +18043,11 @@
|
|
|
18060
18043
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18061
18044
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
18062
18045
|
"categories": [],
|
|
18046
|
+
"permittedStructures": {
|
|
18047
|
+
"summary": "",
|
|
18048
|
+
"tag": "altGlyphItem",
|
|
18049
|
+
"contents": false
|
|
18050
|
+
},
|
|
18063
18051
|
"permittedRoles": {
|
|
18064
18052
|
"summary": "",
|
|
18065
18053
|
"roles": []
|
|
@@ -18068,11 +18056,6 @@
|
|
|
18068
18056
|
"summary": "",
|
|
18069
18057
|
"role": false
|
|
18070
18058
|
},
|
|
18071
|
-
"permittedStructures": {
|
|
18072
|
-
"summary": "",
|
|
18073
|
-
"tag": "altGlyphItem",
|
|
18074
|
-
"contents": false
|
|
18075
|
-
},
|
|
18076
18059
|
"omittion": false,
|
|
18077
18060
|
"globalAttrs": {},
|
|
18078
18061
|
"attributes": {},
|
|
@@ -18083,14 +18066,6 @@
|
|
|
18083
18066
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18084
18067
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animate",
|
|
18085
18068
|
"categories": [],
|
|
18086
|
-
"permittedRoles": {
|
|
18087
|
-
"summary": "WIP",
|
|
18088
|
-
"roles": []
|
|
18089
|
-
},
|
|
18090
|
-
"implicitRole": {
|
|
18091
|
-
"summary": "WIP",
|
|
18092
|
-
"role": false
|
|
18093
|
-
},
|
|
18094
18069
|
"permittedStructures": {
|
|
18095
18070
|
"summary": "",
|
|
18096
18071
|
"tag": "animate",
|
|
@@ -18100,6 +18075,14 @@
|
|
|
18100
18075
|
}
|
|
18101
18076
|
]
|
|
18102
18077
|
},
|
|
18078
|
+
"implicitRole": {
|
|
18079
|
+
"summary": "WIP",
|
|
18080
|
+
"role": false
|
|
18081
|
+
},
|
|
18082
|
+
"permittedRoles": {
|
|
18083
|
+
"summary": "WIP",
|
|
18084
|
+
"roles": []
|
|
18085
|
+
},
|
|
18103
18086
|
"omittion": false,
|
|
18104
18087
|
"globalAttrs": {
|
|
18105
18088
|
"#GlobalEventAttrs": true,
|
|
@@ -18200,6 +18183,11 @@
|
|
|
18200
18183
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18201
18184
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
18202
18185
|
"categories": [],
|
|
18186
|
+
"permittedStructures": {
|
|
18187
|
+
"summary": "",
|
|
18188
|
+
"tag": "animateColor",
|
|
18189
|
+
"contents": false
|
|
18190
|
+
},
|
|
18203
18191
|
"permittedRoles": {
|
|
18204
18192
|
"summary": "",
|
|
18205
18193
|
"roles": []
|
|
@@ -18208,11 +18196,6 @@
|
|
|
18208
18196
|
"summary": "",
|
|
18209
18197
|
"role": false
|
|
18210
18198
|
},
|
|
18211
|
-
"permittedStructures": {
|
|
18212
|
-
"summary": "",
|
|
18213
|
-
"tag": "animateColor",
|
|
18214
|
-
"contents": false
|
|
18215
|
-
},
|
|
18216
18199
|
"omittion": false,
|
|
18217
18200
|
"globalAttrs": {},
|
|
18218
18201
|
"attributes": {},
|
|
@@ -18223,14 +18206,6 @@
|
|
|
18223
18206
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18224
18207
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateMotion",
|
|
18225
18208
|
"categories": [],
|
|
18226
|
-
"permittedRoles": {
|
|
18227
|
-
"summary": "WIP",
|
|
18228
|
-
"roles": []
|
|
18229
|
-
},
|
|
18230
|
-
"implicitRole": {
|
|
18231
|
-
"summary": "WIP",
|
|
18232
|
-
"role": false
|
|
18233
|
-
},
|
|
18234
18209
|
"permittedStructures": {
|
|
18235
18210
|
"summary": "",
|
|
18236
18211
|
"tag": "animateMotion",
|
|
@@ -18257,6 +18232,14 @@
|
|
|
18257
18232
|
}
|
|
18258
18233
|
]
|
|
18259
18234
|
},
|
|
18235
|
+
"implicitRole": {
|
|
18236
|
+
"summary": "WIP",
|
|
18237
|
+
"role": false
|
|
18238
|
+
},
|
|
18239
|
+
"permittedRoles": {
|
|
18240
|
+
"summary": "WIP",
|
|
18241
|
+
"roles": []
|
|
18242
|
+
},
|
|
18260
18243
|
"omittion": false,
|
|
18261
18244
|
"globalAttrs": {
|
|
18262
18245
|
"#GlobalEventAttrs": true,
|
|
@@ -18307,14 +18290,6 @@
|
|
|
18307
18290
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18308
18291
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/animateTransform",
|
|
18309
18292
|
"categories": [],
|
|
18310
|
-
"permittedRoles": {
|
|
18311
|
-
"summary": "WIP",
|
|
18312
|
-
"roles": []
|
|
18313
|
-
},
|
|
18314
|
-
"implicitRole": {
|
|
18315
|
-
"summary": "WIP",
|
|
18316
|
-
"role": false
|
|
18317
|
-
},
|
|
18318
18293
|
"permittedStructures": {
|
|
18319
18294
|
"summary": "",
|
|
18320
18295
|
"tag": "animateTransform",
|
|
@@ -18324,6 +18299,14 @@
|
|
|
18324
18299
|
}
|
|
18325
18300
|
]
|
|
18326
18301
|
},
|
|
18302
|
+
"implicitRole": {
|
|
18303
|
+
"summary": "WIP",
|
|
18304
|
+
"role": false
|
|
18305
|
+
},
|
|
18306
|
+
"permittedRoles": {
|
|
18307
|
+
"summary": "WIP",
|
|
18308
|
+
"roles": []
|
|
18309
|
+
},
|
|
18327
18310
|
"omittion": false,
|
|
18328
18311
|
"globalAttrs": {
|
|
18329
18312
|
"#GlobalEventAttrs": true,
|
|
@@ -18362,14 +18345,6 @@
|
|
|
18362
18345
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18363
18346
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle",
|
|
18364
18347
|
"categories": ["#SVGGraphics", "#SVGShape"],
|
|
18365
|
-
"permittedRoles": {
|
|
18366
|
-
"summary": "WIP",
|
|
18367
|
-
"roles": []
|
|
18368
|
-
},
|
|
18369
|
-
"implicitRole": {
|
|
18370
|
-
"summary": "WIP",
|
|
18371
|
-
"role": false
|
|
18372
|
-
},
|
|
18373
18348
|
"permittedStructures": {
|
|
18374
18349
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
18375
18350
|
"tag": "circle",
|
|
@@ -18388,6 +18363,14 @@
|
|
|
18388
18363
|
}
|
|
18389
18364
|
]
|
|
18390
18365
|
},
|
|
18366
|
+
"implicitRole": {
|
|
18367
|
+
"summary": "WIP",
|
|
18368
|
+
"role": false
|
|
18369
|
+
},
|
|
18370
|
+
"permittedRoles": {
|
|
18371
|
+
"summary": "WIP",
|
|
18372
|
+
"roles": []
|
|
18373
|
+
},
|
|
18391
18374
|
"omittion": false,
|
|
18392
18375
|
"globalAttrs": {
|
|
18393
18376
|
"#HTMLGlobalAttrs": true,
|
|
@@ -18484,7 +18467,7 @@
|
|
|
18484
18467
|
"description": "The y-axis coordinate of the center of the circle. Value type: <length>|<percentage> ; Default value: 0; Animatable: yes"
|
|
18485
18468
|
},
|
|
18486
18469
|
"r": {
|
|
18487
|
-
"description": "The radius of the circle. A value lower or equal to zero disables rendering of the circle. Value type: <length> ; Default value: 0; Animatable: yes"
|
|
18470
|
+
"description": "The radius of the circle. A value lower or equal to zero disables rendering of the circle. Value type: <length>|<percentage> ; Default value: 0; Animatable: yes"
|
|
18488
18471
|
}
|
|
18489
18472
|
}
|
|
18490
18473
|
},
|
|
@@ -18493,14 +18476,6 @@
|
|
|
18493
18476
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18494
18477
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/clipPath",
|
|
18495
18478
|
"categories": ["#SVGNone"],
|
|
18496
|
-
"permittedRoles": {
|
|
18497
|
-
"summary": "WIP",
|
|
18498
|
-
"roles": []
|
|
18499
|
-
},
|
|
18500
|
-
"implicitRole": {
|
|
18501
|
-
"summary": "WIP",
|
|
18502
|
-
"role": false
|
|
18503
|
-
},
|
|
18504
18479
|
"permittedStructures": {
|
|
18505
18480
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elements<text>, <use>",
|
|
18506
18481
|
"tag": "clipPath",
|
|
@@ -18517,6 +18492,14 @@
|
|
|
18517
18492
|
}
|
|
18518
18493
|
]
|
|
18519
18494
|
},
|
|
18495
|
+
"implicitRole": {
|
|
18496
|
+
"summary": "WIP",
|
|
18497
|
+
"role": false
|
|
18498
|
+
},
|
|
18499
|
+
"permittedRoles": {
|
|
18500
|
+
"summary": "WIP",
|
|
18501
|
+
"roles": []
|
|
18502
|
+
},
|
|
18520
18503
|
"omittion": false,
|
|
18521
18504
|
"globalAttrs": {
|
|
18522
18505
|
"#SVGConditionalProcessingAttrs": ["requiredFeatures", "requiredExtensions", "systemLanguage"],
|
|
@@ -18611,6 +18594,11 @@
|
|
|
18611
18594
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18612
18595
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
18613
18596
|
"categories": [],
|
|
18597
|
+
"permittedStructures": {
|
|
18598
|
+
"summary": "",
|
|
18599
|
+
"tag": "cursor",
|
|
18600
|
+
"contents": false
|
|
18601
|
+
},
|
|
18614
18602
|
"permittedRoles": {
|
|
18615
18603
|
"summary": "",
|
|
18616
18604
|
"roles": []
|
|
@@ -18619,11 +18607,6 @@
|
|
|
18619
18607
|
"summary": "",
|
|
18620
18608
|
"role": false
|
|
18621
18609
|
},
|
|
18622
|
-
"permittedStructures": {
|
|
18623
|
-
"summary": "",
|
|
18624
|
-
"tag": "cursor",
|
|
18625
|
-
"contents": false
|
|
18626
|
-
},
|
|
18627
18610
|
"omittion": false,
|
|
18628
18611
|
"globalAttrs": {},
|
|
18629
18612
|
"attributes": {},
|
|
@@ -18634,14 +18617,6 @@
|
|
|
18634
18617
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18635
18618
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/defs",
|
|
18636
18619
|
"categories": ["#SVGContainer", "#SVGStructural"],
|
|
18637
|
-
"permittedRoles": {
|
|
18638
|
-
"summary": "WIP",
|
|
18639
|
-
"roles": []
|
|
18640
|
-
},
|
|
18641
|
-
"implicitRole": {
|
|
18642
|
-
"summary": "WIP",
|
|
18643
|
-
"role": false
|
|
18644
|
-
},
|
|
18645
18620
|
"permittedStructures": {
|
|
18646
18621
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
18647
18622
|
"tag": "defs",
|
|
@@ -18669,6 +18644,14 @@
|
|
|
18669
18644
|
}
|
|
18670
18645
|
]
|
|
18671
18646
|
},
|
|
18647
|
+
"implicitRole": {
|
|
18648
|
+
"summary": "WIP",
|
|
18649
|
+
"role": false
|
|
18650
|
+
},
|
|
18651
|
+
"permittedRoles": {
|
|
18652
|
+
"summary": "WIP",
|
|
18653
|
+
"roles": []
|
|
18654
|
+
},
|
|
18672
18655
|
"omittion": false,
|
|
18673
18656
|
"globalAttrs": {
|
|
18674
18657
|
"#GlobalEventAttrs": true,
|
|
@@ -18752,14 +18735,6 @@
|
|
|
18752
18735
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18753
18736
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/desc",
|
|
18754
18737
|
"categories": ["#SVGDescriptive"],
|
|
18755
|
-
"permittedRoles": {
|
|
18756
|
-
"summary": "WIP",
|
|
18757
|
-
"roles": []
|
|
18758
|
-
},
|
|
18759
|
-
"implicitRole": {
|
|
18760
|
-
"summary": "WIP",
|
|
18761
|
-
"role": false
|
|
18762
|
-
},
|
|
18763
18738
|
"permittedStructures": {
|
|
18764
18739
|
"summary": "Any elements or character data",
|
|
18765
18740
|
"tag": "desc",
|
|
@@ -18769,6 +18744,14 @@
|
|
|
18769
18744
|
}
|
|
18770
18745
|
]
|
|
18771
18746
|
},
|
|
18747
|
+
"implicitRole": {
|
|
18748
|
+
"summary": "WIP",
|
|
18749
|
+
"role": false
|
|
18750
|
+
},
|
|
18751
|
+
"permittedRoles": {
|
|
18752
|
+
"summary": "WIP",
|
|
18753
|
+
"roles": []
|
|
18754
|
+
},
|
|
18772
18755
|
"omittion": false,
|
|
18773
18756
|
"globalAttrs": {
|
|
18774
18757
|
"#GlobalEventAttrs": true,
|
|
@@ -18782,14 +18765,6 @@
|
|
|
18782
18765
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18783
18766
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/discard",
|
|
18784
18767
|
"categories": [],
|
|
18785
|
-
"permittedRoles": {
|
|
18786
|
-
"summary": "WIP",
|
|
18787
|
-
"roles": []
|
|
18788
|
-
},
|
|
18789
|
-
"implicitRole": {
|
|
18790
|
-
"summary": "WIP",
|
|
18791
|
-
"role": false
|
|
18792
|
-
},
|
|
18793
18768
|
"permittedStructures": {
|
|
18794
18769
|
"summary": "",
|
|
18795
18770
|
"tag": "discard",
|
|
@@ -18799,6 +18774,14 @@
|
|
|
18799
18774
|
}
|
|
18800
18775
|
]
|
|
18801
18776
|
},
|
|
18777
|
+
"implicitRole": {
|
|
18778
|
+
"summary": "WIP",
|
|
18779
|
+
"role": false
|
|
18780
|
+
},
|
|
18781
|
+
"permittedRoles": {
|
|
18782
|
+
"summary": "WIP",
|
|
18783
|
+
"roles": []
|
|
18784
|
+
},
|
|
18802
18785
|
"omittion": false,
|
|
18803
18786
|
"globalAttrs": {
|
|
18804
18787
|
"#ARIAAttrs": true,
|
|
@@ -18822,14 +18805,6 @@
|
|
|
18822
18805
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18823
18806
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/ellipse",
|
|
18824
18807
|
"categories": ["#SVGGraphics", "#SVGShape"],
|
|
18825
|
-
"permittedRoles": {
|
|
18826
|
-
"summary": "WIP",
|
|
18827
|
-
"roles": []
|
|
18828
|
-
},
|
|
18829
|
-
"implicitRole": {
|
|
18830
|
-
"summary": "WIP",
|
|
18831
|
-
"role": false
|
|
18832
|
-
},
|
|
18833
18808
|
"permittedStructures": {
|
|
18834
18809
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
18835
18810
|
"tag": "ellipse",
|
|
@@ -18848,6 +18823,14 @@
|
|
|
18848
18823
|
}
|
|
18849
18824
|
]
|
|
18850
18825
|
},
|
|
18826
|
+
"implicitRole": {
|
|
18827
|
+
"summary": "WIP",
|
|
18828
|
+
"role": false
|
|
18829
|
+
},
|
|
18830
|
+
"permittedRoles": {
|
|
18831
|
+
"summary": "WIP",
|
|
18832
|
+
"roles": []
|
|
18833
|
+
},
|
|
18851
18834
|
"omittion": false,
|
|
18852
18835
|
"globalAttrs": {
|
|
18853
18836
|
"#HTMLGlobalAttrs": true,
|
|
@@ -18957,14 +18940,6 @@
|
|
|
18957
18940
|
"namespace": "http://www.w3.org/2000/svg",
|
|
18958
18941
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feBlend",
|
|
18959
18942
|
"categories": [],
|
|
18960
|
-
"permittedRoles": {
|
|
18961
|
-
"summary": "WIP",
|
|
18962
|
-
"roles": []
|
|
18963
|
-
},
|
|
18964
|
-
"implicitRole": {
|
|
18965
|
-
"summary": "WIP",
|
|
18966
|
-
"role": false
|
|
18967
|
-
},
|
|
18968
18943
|
"permittedStructures": {
|
|
18969
18944
|
"summary": "",
|
|
18970
18945
|
"tag": "feBlend",
|
|
@@ -18974,6 +18949,14 @@
|
|
|
18974
18949
|
}
|
|
18975
18950
|
]
|
|
18976
18951
|
},
|
|
18952
|
+
"implicitRole": {
|
|
18953
|
+
"summary": "WIP",
|
|
18954
|
+
"role": false
|
|
18955
|
+
},
|
|
18956
|
+
"permittedRoles": {
|
|
18957
|
+
"summary": "WIP",
|
|
18958
|
+
"roles": []
|
|
18959
|
+
},
|
|
18977
18960
|
"omittion": false,
|
|
18978
18961
|
"globalAttrs": {
|
|
18979
18962
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -19081,14 +19064,6 @@
|
|
|
19081
19064
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19082
19065
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feColorMatrix",
|
|
19083
19066
|
"categories": [],
|
|
19084
|
-
"permittedRoles": {
|
|
19085
|
-
"summary": "WIP",
|
|
19086
|
-
"roles": []
|
|
19087
|
-
},
|
|
19088
|
-
"implicitRole": {
|
|
19089
|
-
"summary": "WIP",
|
|
19090
|
-
"role": false
|
|
19091
|
-
},
|
|
19092
19067
|
"permittedStructures": {
|
|
19093
19068
|
"summary": "",
|
|
19094
19069
|
"tag": "feColorMatrix",
|
|
@@ -19098,6 +19073,14 @@
|
|
|
19098
19073
|
}
|
|
19099
19074
|
]
|
|
19100
19075
|
},
|
|
19076
|
+
"implicitRole": {
|
|
19077
|
+
"summary": "WIP",
|
|
19078
|
+
"role": false
|
|
19079
|
+
},
|
|
19080
|
+
"permittedRoles": {
|
|
19081
|
+
"summary": "WIP",
|
|
19082
|
+
"roles": []
|
|
19083
|
+
},
|
|
19101
19084
|
"omittion": false,
|
|
19102
19085
|
"globalAttrs": {
|
|
19103
19086
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -19194,14 +19177,6 @@
|
|
|
19194
19177
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19195
19178
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComponentTransfer",
|
|
19196
19179
|
"categories": [],
|
|
19197
|
-
"permittedRoles": {
|
|
19198
|
-
"summary": "WIP",
|
|
19199
|
-
"roles": []
|
|
19200
|
-
},
|
|
19201
|
-
"implicitRole": {
|
|
19202
|
-
"summary": "WIP",
|
|
19203
|
-
"role": false
|
|
19204
|
-
},
|
|
19205
19180
|
"permittedStructures": {
|
|
19206
19181
|
"summary": "",
|
|
19207
19182
|
"tag": "feComponentTransfer",
|
|
@@ -19218,6 +19193,14 @@
|
|
|
19218
19193
|
}
|
|
19219
19194
|
]
|
|
19220
19195
|
},
|
|
19196
|
+
"implicitRole": {
|
|
19197
|
+
"summary": "WIP",
|
|
19198
|
+
"role": false
|
|
19199
|
+
},
|
|
19200
|
+
"permittedRoles": {
|
|
19201
|
+
"summary": "WIP",
|
|
19202
|
+
"roles": []
|
|
19203
|
+
},
|
|
19221
19204
|
"omittion": false,
|
|
19222
19205
|
"globalAttrs": {
|
|
19223
19206
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -19300,14 +19283,6 @@
|
|
|
19300
19283
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19301
19284
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feComposite",
|
|
19302
19285
|
"categories": [],
|
|
19303
|
-
"permittedRoles": {
|
|
19304
|
-
"summary": "WIP",
|
|
19305
|
-
"roles": []
|
|
19306
|
-
},
|
|
19307
|
-
"implicitRole": {
|
|
19308
|
-
"summary": "WIP",
|
|
19309
|
-
"role": false
|
|
19310
|
-
},
|
|
19311
19286
|
"permittedStructures": {
|
|
19312
19287
|
"summary": "",
|
|
19313
19288
|
"tag": "feComposite",
|
|
@@ -19317,6 +19292,14 @@
|
|
|
19317
19292
|
}
|
|
19318
19293
|
]
|
|
19319
19294
|
},
|
|
19295
|
+
"implicitRole": {
|
|
19296
|
+
"summary": "WIP",
|
|
19297
|
+
"role": false
|
|
19298
|
+
},
|
|
19299
|
+
"permittedRoles": {
|
|
19300
|
+
"summary": "WIP",
|
|
19301
|
+
"roles": []
|
|
19302
|
+
},
|
|
19320
19303
|
"omittion": false,
|
|
19321
19304
|
"globalAttrs": {
|
|
19322
19305
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -19455,14 +19438,6 @@
|
|
|
19455
19438
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19456
19439
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feConvolveMatrix",
|
|
19457
19440
|
"categories": [],
|
|
19458
|
-
"permittedRoles": {
|
|
19459
|
-
"summary": "WIP",
|
|
19460
|
-
"roles": []
|
|
19461
|
-
},
|
|
19462
|
-
"implicitRole": {
|
|
19463
|
-
"summary": "WIP",
|
|
19464
|
-
"role": false
|
|
19465
|
-
},
|
|
19466
19441
|
"permittedStructures": {
|
|
19467
19442
|
"summary": "",
|
|
19468
19443
|
"tag": "feConvolveMatrix",
|
|
@@ -19472,6 +19447,14 @@
|
|
|
19472
19447
|
}
|
|
19473
19448
|
]
|
|
19474
19449
|
},
|
|
19450
|
+
"implicitRole": {
|
|
19451
|
+
"summary": "WIP",
|
|
19452
|
+
"role": false
|
|
19453
|
+
},
|
|
19454
|
+
"permittedRoles": {
|
|
19455
|
+
"summary": "WIP",
|
|
19456
|
+
"roles": []
|
|
19457
|
+
},
|
|
19475
19458
|
"omittion": false,
|
|
19476
19459
|
"globalAttrs": {
|
|
19477
19460
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -19611,14 +19594,6 @@
|
|
|
19611
19594
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19612
19595
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDiffuseLighting",
|
|
19613
19596
|
"categories": [],
|
|
19614
|
-
"permittedRoles": {
|
|
19615
|
-
"summary": "WIP",
|
|
19616
|
-
"roles": []
|
|
19617
|
-
},
|
|
19618
|
-
"implicitRole": {
|
|
19619
|
-
"summary": "WIP",
|
|
19620
|
-
"role": false
|
|
19621
|
-
},
|
|
19622
19597
|
"permittedStructures": {
|
|
19623
19598
|
"summary": "",
|
|
19624
19599
|
"tag": "feDiffuseLighting",
|
|
@@ -19645,6 +19620,14 @@
|
|
|
19645
19620
|
}
|
|
19646
19621
|
]
|
|
19647
19622
|
},
|
|
19623
|
+
"implicitRole": {
|
|
19624
|
+
"summary": "WIP",
|
|
19625
|
+
"role": false
|
|
19626
|
+
},
|
|
19627
|
+
"permittedRoles": {
|
|
19628
|
+
"summary": "WIP",
|
|
19629
|
+
"roles": []
|
|
19630
|
+
},
|
|
19648
19631
|
"omittion": false,
|
|
19649
19632
|
"globalAttrs": {
|
|
19650
19633
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -19746,14 +19729,6 @@
|
|
|
19746
19729
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19747
19730
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDisplacementMap",
|
|
19748
19731
|
"categories": [],
|
|
19749
|
-
"permittedRoles": {
|
|
19750
|
-
"summary": "WIP",
|
|
19751
|
-
"roles": []
|
|
19752
|
-
},
|
|
19753
|
-
"implicitRole": {
|
|
19754
|
-
"summary": "WIP",
|
|
19755
|
-
"role": false
|
|
19756
|
-
},
|
|
19757
19732
|
"permittedStructures": {
|
|
19758
19733
|
"summary": "",
|
|
19759
19734
|
"tag": "feDisplacementMap",
|
|
@@ -19763,6 +19738,14 @@
|
|
|
19763
19738
|
}
|
|
19764
19739
|
]
|
|
19765
19740
|
},
|
|
19741
|
+
"implicitRole": {
|
|
19742
|
+
"summary": "WIP",
|
|
19743
|
+
"role": false
|
|
19744
|
+
},
|
|
19745
|
+
"permittedRoles": {
|
|
19746
|
+
"summary": "WIP",
|
|
19747
|
+
"roles": []
|
|
19748
|
+
},
|
|
19766
19749
|
"omittion": false,
|
|
19767
19750
|
"globalAttrs": {
|
|
19768
19751
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -19888,14 +19871,6 @@
|
|
|
19888
19871
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19889
19872
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDistantLight",
|
|
19890
19873
|
"categories": [],
|
|
19891
|
-
"permittedRoles": {
|
|
19892
|
-
"summary": "WIP",
|
|
19893
|
-
"roles": []
|
|
19894
|
-
},
|
|
19895
|
-
"implicitRole": {
|
|
19896
|
-
"summary": "WIP",
|
|
19897
|
-
"role": false
|
|
19898
|
-
},
|
|
19899
19874
|
"permittedStructures": {
|
|
19900
19875
|
"summary": "",
|
|
19901
19876
|
"tag": "feDistantLight",
|
|
@@ -19905,6 +19880,14 @@
|
|
|
19905
19880
|
}
|
|
19906
19881
|
]
|
|
19907
19882
|
},
|
|
19883
|
+
"implicitRole": {
|
|
19884
|
+
"summary": "WIP",
|
|
19885
|
+
"role": false
|
|
19886
|
+
},
|
|
19887
|
+
"permittedRoles": {
|
|
19888
|
+
"summary": "WIP",
|
|
19889
|
+
"roles": []
|
|
19890
|
+
},
|
|
19908
19891
|
"omittion": false,
|
|
19909
19892
|
"globalAttrs": {
|
|
19910
19893
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"]
|
|
@@ -19929,14 +19912,6 @@
|
|
|
19929
19912
|
"namespace": "http://www.w3.org/2000/svg",
|
|
19930
19913
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feDropShadow",
|
|
19931
19914
|
"categories": ["#SVGFilterPrimitive"],
|
|
19932
|
-
"permittedRoles": {
|
|
19933
|
-
"summary": "WIP",
|
|
19934
|
-
"roles": []
|
|
19935
|
-
},
|
|
19936
|
-
"implicitRole": {
|
|
19937
|
-
"summary": "WIP",
|
|
19938
|
-
"role": false
|
|
19939
|
-
},
|
|
19940
19915
|
"permittedStructures": {
|
|
19941
19916
|
"summary": "Any number of the following elements, in any order:<animate>, <script>, <set>",
|
|
19942
19917
|
"tag": "feDropShadow",
|
|
@@ -19946,6 +19921,14 @@
|
|
|
19946
19921
|
}
|
|
19947
19922
|
]
|
|
19948
19923
|
},
|
|
19924
|
+
"implicitRole": {
|
|
19925
|
+
"summary": "WIP",
|
|
19926
|
+
"role": false
|
|
19927
|
+
},
|
|
19928
|
+
"permittedRoles": {
|
|
19929
|
+
"summary": "WIP",
|
|
19930
|
+
"roles": []
|
|
19931
|
+
},
|
|
19949
19932
|
"omittion": false,
|
|
19950
19933
|
"globalAttrs": {
|
|
19951
19934
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -20050,14 +20033,6 @@
|
|
|
20050
20033
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20051
20034
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFlood",
|
|
20052
20035
|
"categories": [],
|
|
20053
|
-
"permittedRoles": {
|
|
20054
|
-
"summary": "WIP",
|
|
20055
|
-
"roles": []
|
|
20056
|
-
},
|
|
20057
|
-
"implicitRole": {
|
|
20058
|
-
"summary": "WIP",
|
|
20059
|
-
"role": false
|
|
20060
|
-
},
|
|
20061
20036
|
"permittedStructures": {
|
|
20062
20037
|
"summary": "",
|
|
20063
20038
|
"tag": "feDropShadow",
|
|
@@ -20067,6 +20042,14 @@
|
|
|
20067
20042
|
}
|
|
20068
20043
|
]
|
|
20069
20044
|
},
|
|
20045
|
+
"implicitRole": {
|
|
20046
|
+
"summary": "WIP",
|
|
20047
|
+
"role": false
|
|
20048
|
+
},
|
|
20049
|
+
"permittedRoles": {
|
|
20050
|
+
"summary": "WIP",
|
|
20051
|
+
"roles": []
|
|
20052
|
+
},
|
|
20070
20053
|
"omittion": false,
|
|
20071
20054
|
"globalAttrs": {
|
|
20072
20055
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -20160,14 +20143,6 @@
|
|
|
20160
20143
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20161
20144
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncA",
|
|
20162
20145
|
"categories": [],
|
|
20163
|
-
"permittedRoles": {
|
|
20164
|
-
"summary": "WIP",
|
|
20165
|
-
"roles": []
|
|
20166
|
-
},
|
|
20167
|
-
"implicitRole": {
|
|
20168
|
-
"summary": "WIP",
|
|
20169
|
-
"role": false
|
|
20170
|
-
},
|
|
20171
20146
|
"permittedStructures": {
|
|
20172
20147
|
"summary": "",
|
|
20173
20148
|
"tag": "feFuncA",
|
|
@@ -20177,6 +20152,14 @@
|
|
|
20177
20152
|
}
|
|
20178
20153
|
]
|
|
20179
20154
|
},
|
|
20155
|
+
"implicitRole": {
|
|
20156
|
+
"summary": "WIP",
|
|
20157
|
+
"role": false
|
|
20158
|
+
},
|
|
20159
|
+
"permittedRoles": {
|
|
20160
|
+
"summary": "WIP",
|
|
20161
|
+
"roles": []
|
|
20162
|
+
},
|
|
20180
20163
|
"omittion": false,
|
|
20181
20164
|
"globalAttrs": {
|
|
20182
20165
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"],
|
|
@@ -20197,14 +20180,6 @@
|
|
|
20197
20180
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20198
20181
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncB",
|
|
20199
20182
|
"categories": [],
|
|
20200
|
-
"permittedRoles": {
|
|
20201
|
-
"summary": "WIP",
|
|
20202
|
-
"roles": []
|
|
20203
|
-
},
|
|
20204
|
-
"implicitRole": {
|
|
20205
|
-
"summary": "WIP",
|
|
20206
|
-
"role": false
|
|
20207
|
-
},
|
|
20208
20183
|
"permittedStructures": {
|
|
20209
20184
|
"summary": "",
|
|
20210
20185
|
"tag": "feFuncB",
|
|
@@ -20214,6 +20189,14 @@
|
|
|
20214
20189
|
}
|
|
20215
20190
|
]
|
|
20216
20191
|
},
|
|
20192
|
+
"implicitRole": {
|
|
20193
|
+
"summary": "WIP",
|
|
20194
|
+
"role": false
|
|
20195
|
+
},
|
|
20196
|
+
"permittedRoles": {
|
|
20197
|
+
"summary": "WIP",
|
|
20198
|
+
"roles": []
|
|
20199
|
+
},
|
|
20217
20200
|
"omittion": false,
|
|
20218
20201
|
"globalAttrs": {
|
|
20219
20202
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"],
|
|
@@ -20234,14 +20217,6 @@
|
|
|
20234
20217
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20235
20218
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncG",
|
|
20236
20219
|
"categories": [],
|
|
20237
|
-
"permittedRoles": {
|
|
20238
|
-
"summary": "WIP",
|
|
20239
|
-
"roles": []
|
|
20240
|
-
},
|
|
20241
|
-
"implicitRole": {
|
|
20242
|
-
"summary": "WIP",
|
|
20243
|
-
"role": false
|
|
20244
|
-
},
|
|
20245
20220
|
"permittedStructures": {
|
|
20246
20221
|
"summary": "",
|
|
20247
20222
|
"tag": "feFuncB",
|
|
@@ -20251,6 +20226,14 @@
|
|
|
20251
20226
|
}
|
|
20252
20227
|
]
|
|
20253
20228
|
},
|
|
20229
|
+
"implicitRole": {
|
|
20230
|
+
"summary": "WIP",
|
|
20231
|
+
"role": false
|
|
20232
|
+
},
|
|
20233
|
+
"permittedRoles": {
|
|
20234
|
+
"summary": "WIP",
|
|
20235
|
+
"roles": []
|
|
20236
|
+
},
|
|
20254
20237
|
"omittion": false,
|
|
20255
20238
|
"globalAttrs": {
|
|
20256
20239
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"],
|
|
@@ -20271,14 +20254,6 @@
|
|
|
20271
20254
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20272
20255
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feFuncR",
|
|
20273
20256
|
"categories": [],
|
|
20274
|
-
"permittedRoles": {
|
|
20275
|
-
"summary": "WIP",
|
|
20276
|
-
"roles": []
|
|
20277
|
-
},
|
|
20278
|
-
"implicitRole": {
|
|
20279
|
-
"summary": "WIP",
|
|
20280
|
-
"role": false
|
|
20281
|
-
},
|
|
20282
20257
|
"permittedStructures": {
|
|
20283
20258
|
"summary": "",
|
|
20284
20259
|
"tag": "feFuncR",
|
|
@@ -20288,6 +20263,14 @@
|
|
|
20288
20263
|
}
|
|
20289
20264
|
]
|
|
20290
20265
|
},
|
|
20266
|
+
"implicitRole": {
|
|
20267
|
+
"summary": "WIP",
|
|
20268
|
+
"role": false
|
|
20269
|
+
},
|
|
20270
|
+
"permittedRoles": {
|
|
20271
|
+
"summary": "WIP",
|
|
20272
|
+
"roles": []
|
|
20273
|
+
},
|
|
20291
20274
|
"omittion": false,
|
|
20292
20275
|
"globalAttrs": {
|
|
20293
20276
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"],
|
|
@@ -20308,14 +20291,6 @@
|
|
|
20308
20291
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20309
20292
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feGaussianBlur",
|
|
20310
20293
|
"categories": [],
|
|
20311
|
-
"permittedRoles": {
|
|
20312
|
-
"summary": "WIP",
|
|
20313
|
-
"roles": []
|
|
20314
|
-
},
|
|
20315
|
-
"implicitRole": {
|
|
20316
|
-
"summary": "WIP",
|
|
20317
|
-
"role": false
|
|
20318
|
-
},
|
|
20319
20294
|
"permittedStructures": {
|
|
20320
20295
|
"summary": "",
|
|
20321
20296
|
"tag": "feGaussianBlur",
|
|
@@ -20325,6 +20300,14 @@
|
|
|
20325
20300
|
}
|
|
20326
20301
|
]
|
|
20327
20302
|
},
|
|
20303
|
+
"implicitRole": {
|
|
20304
|
+
"summary": "WIP",
|
|
20305
|
+
"role": false
|
|
20306
|
+
},
|
|
20307
|
+
"permittedRoles": {
|
|
20308
|
+
"summary": "WIP",
|
|
20309
|
+
"roles": []
|
|
20310
|
+
},
|
|
20328
20311
|
"omittion": false,
|
|
20329
20312
|
"globalAttrs": {
|
|
20330
20313
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -20422,14 +20405,6 @@
|
|
|
20422
20405
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20423
20406
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feImage",
|
|
20424
20407
|
"categories": [],
|
|
20425
|
-
"permittedRoles": {
|
|
20426
|
-
"summary": "WIP",
|
|
20427
|
-
"roles": []
|
|
20428
|
-
},
|
|
20429
|
-
"implicitRole": {
|
|
20430
|
-
"summary": "WIP",
|
|
20431
|
-
"role": false
|
|
20432
|
-
},
|
|
20433
20408
|
"permittedStructures": {
|
|
20434
20409
|
"summary": "",
|
|
20435
20410
|
"tag": "feImage",
|
|
@@ -20445,6 +20420,14 @@
|
|
|
20445
20420
|
}
|
|
20446
20421
|
]
|
|
20447
20422
|
},
|
|
20423
|
+
"implicitRole": {
|
|
20424
|
+
"summary": "WIP",
|
|
20425
|
+
"role": false
|
|
20426
|
+
},
|
|
20427
|
+
"permittedRoles": {
|
|
20428
|
+
"summary": "WIP",
|
|
20429
|
+
"roles": []
|
|
20430
|
+
},
|
|
20448
20431
|
"omittion": false,
|
|
20449
20432
|
"globalAttrs": {
|
|
20450
20433
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -20560,14 +20543,6 @@
|
|
|
20560
20543
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20561
20544
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMerge",
|
|
20562
20545
|
"categories": [],
|
|
20563
|
-
"permittedRoles": {
|
|
20564
|
-
"summary": "WIP",
|
|
20565
|
-
"roles": []
|
|
20566
|
-
},
|
|
20567
|
-
"implicitRole": {
|
|
20568
|
-
"summary": "WIP",
|
|
20569
|
-
"role": false
|
|
20570
|
-
},
|
|
20571
20546
|
"permittedStructures": {
|
|
20572
20547
|
"summary": "",
|
|
20573
20548
|
"tag": "feMerge",
|
|
@@ -20577,6 +20552,14 @@
|
|
|
20577
20552
|
}
|
|
20578
20553
|
]
|
|
20579
20554
|
},
|
|
20555
|
+
"implicitRole": {
|
|
20556
|
+
"summary": "WIP",
|
|
20557
|
+
"role": false
|
|
20558
|
+
},
|
|
20559
|
+
"permittedRoles": {
|
|
20560
|
+
"summary": "WIP",
|
|
20561
|
+
"roles": []
|
|
20562
|
+
},
|
|
20580
20563
|
"omittion": false,
|
|
20581
20564
|
"globalAttrs": {
|
|
20582
20565
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -20659,14 +20642,6 @@
|
|
|
20659
20642
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20660
20643
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMergeNode",
|
|
20661
20644
|
"categories": [],
|
|
20662
|
-
"permittedRoles": {
|
|
20663
|
-
"summary": "WIP",
|
|
20664
|
-
"roles": []
|
|
20665
|
-
},
|
|
20666
|
-
"implicitRole": {
|
|
20667
|
-
"summary": "WIP",
|
|
20668
|
-
"role": false
|
|
20669
|
-
},
|
|
20670
20645
|
"permittedStructures": {
|
|
20671
20646
|
"summary": "",
|
|
20672
20647
|
"tag": "feMergeNode",
|
|
@@ -20676,6 +20651,14 @@
|
|
|
20676
20651
|
}
|
|
20677
20652
|
]
|
|
20678
20653
|
},
|
|
20654
|
+
"implicitRole": {
|
|
20655
|
+
"summary": "WIP",
|
|
20656
|
+
"role": false
|
|
20657
|
+
},
|
|
20658
|
+
"permittedRoles": {
|
|
20659
|
+
"summary": "WIP",
|
|
20660
|
+
"roles": []
|
|
20661
|
+
},
|
|
20679
20662
|
"omittion": false,
|
|
20680
20663
|
"globalAttrs": {
|
|
20681
20664
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"],
|
|
@@ -20688,14 +20671,6 @@
|
|
|
20688
20671
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20689
20672
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feMorphology",
|
|
20690
20673
|
"categories": [],
|
|
20691
|
-
"permittedRoles": {
|
|
20692
|
-
"summary": "WIP",
|
|
20693
|
-
"roles": []
|
|
20694
|
-
},
|
|
20695
|
-
"implicitRole": {
|
|
20696
|
-
"summary": "WIP",
|
|
20697
|
-
"role": false
|
|
20698
|
-
},
|
|
20699
20674
|
"permittedStructures": {
|
|
20700
20675
|
"summary": "",
|
|
20701
20676
|
"tag": "feMorphology",
|
|
@@ -20705,6 +20680,14 @@
|
|
|
20705
20680
|
}
|
|
20706
20681
|
]
|
|
20707
20682
|
},
|
|
20683
|
+
"implicitRole": {
|
|
20684
|
+
"summary": "WIP",
|
|
20685
|
+
"role": false
|
|
20686
|
+
},
|
|
20687
|
+
"permittedRoles": {
|
|
20688
|
+
"summary": "WIP",
|
|
20689
|
+
"roles": []
|
|
20690
|
+
},
|
|
20708
20691
|
"omittion": false,
|
|
20709
20692
|
"globalAttrs": {
|
|
20710
20693
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -20803,14 +20786,6 @@
|
|
|
20803
20786
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20804
20787
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feOffset",
|
|
20805
20788
|
"categories": [],
|
|
20806
|
-
"permittedRoles": {
|
|
20807
|
-
"summary": "WIP",
|
|
20808
|
-
"roles": []
|
|
20809
|
-
},
|
|
20810
|
-
"implicitRole": {
|
|
20811
|
-
"summary": "WIP",
|
|
20812
|
-
"role": false
|
|
20813
|
-
},
|
|
20814
20789
|
"permittedStructures": {
|
|
20815
20790
|
"summary": "",
|
|
20816
20791
|
"tag": "feOffset",
|
|
@@ -20820,6 +20795,14 @@
|
|
|
20820
20795
|
}
|
|
20821
20796
|
]
|
|
20822
20797
|
},
|
|
20798
|
+
"implicitRole": {
|
|
20799
|
+
"summary": "WIP",
|
|
20800
|
+
"role": false
|
|
20801
|
+
},
|
|
20802
|
+
"permittedRoles": {
|
|
20803
|
+
"summary": "WIP",
|
|
20804
|
+
"roles": []
|
|
20805
|
+
},
|
|
20823
20806
|
"omittion": false,
|
|
20824
20807
|
"globalAttrs": {
|
|
20825
20808
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -20915,14 +20898,6 @@
|
|
|
20915
20898
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20916
20899
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/fePointLight",
|
|
20917
20900
|
"categories": [],
|
|
20918
|
-
"permittedRoles": {
|
|
20919
|
-
"summary": "WIP",
|
|
20920
|
-
"roles": []
|
|
20921
|
-
},
|
|
20922
|
-
"implicitRole": {
|
|
20923
|
-
"summary": "WIP",
|
|
20924
|
-
"role": false
|
|
20925
|
-
},
|
|
20926
20901
|
"permittedStructures": {
|
|
20927
20902
|
"summary": "",
|
|
20928
20903
|
"tag": "fePointLight",
|
|
@@ -20932,6 +20907,14 @@
|
|
|
20932
20907
|
}
|
|
20933
20908
|
]
|
|
20934
20909
|
},
|
|
20910
|
+
"implicitRole": {
|
|
20911
|
+
"summary": "WIP",
|
|
20912
|
+
"role": false
|
|
20913
|
+
},
|
|
20914
|
+
"permittedRoles": {
|
|
20915
|
+
"summary": "WIP",
|
|
20916
|
+
"roles": []
|
|
20917
|
+
},
|
|
20935
20918
|
"omittion": false,
|
|
20936
20919
|
"globalAttrs": {
|
|
20937
20920
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"]
|
|
@@ -20962,14 +20945,6 @@
|
|
|
20962
20945
|
"namespace": "http://www.w3.org/2000/svg",
|
|
20963
20946
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpecularLighting",
|
|
20964
20947
|
"categories": [],
|
|
20965
|
-
"permittedRoles": {
|
|
20966
|
-
"summary": "WIP",
|
|
20967
|
-
"roles": []
|
|
20968
|
-
},
|
|
20969
|
-
"implicitRole": {
|
|
20970
|
-
"summary": "WIP",
|
|
20971
|
-
"role": false
|
|
20972
|
-
},
|
|
20973
20948
|
"permittedStructures": {
|
|
20974
20949
|
"summary": "",
|
|
20975
20950
|
"tag": "feSpecularLighting",
|
|
@@ -20996,6 +20971,14 @@
|
|
|
20996
20971
|
}
|
|
20997
20972
|
]
|
|
20998
20973
|
},
|
|
20974
|
+
"implicitRole": {
|
|
20975
|
+
"summary": "WIP",
|
|
20976
|
+
"role": false
|
|
20977
|
+
},
|
|
20978
|
+
"permittedRoles": {
|
|
20979
|
+
"summary": "WIP",
|
|
20980
|
+
"roles": []
|
|
20981
|
+
},
|
|
20999
20982
|
"omittion": false,
|
|
21000
20983
|
"globalAttrs": {
|
|
21001
20984
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -21102,14 +21085,6 @@
|
|
|
21102
21085
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21103
21086
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feSpotLight",
|
|
21104
21087
|
"categories": [],
|
|
21105
|
-
"permittedRoles": {
|
|
21106
|
-
"summary": "WIP",
|
|
21107
|
-
"roles": []
|
|
21108
|
-
},
|
|
21109
|
-
"implicitRole": {
|
|
21110
|
-
"summary": "WIP",
|
|
21111
|
-
"role": false
|
|
21112
|
-
},
|
|
21113
21088
|
"permittedStructures": {
|
|
21114
21089
|
"summary": "",
|
|
21115
21090
|
"tag": "feSpotLight",
|
|
@@ -21119,6 +21094,14 @@
|
|
|
21119
21094
|
}
|
|
21120
21095
|
]
|
|
21121
21096
|
},
|
|
21097
|
+
"implicitRole": {
|
|
21098
|
+
"summary": "WIP",
|
|
21099
|
+
"role": false
|
|
21100
|
+
},
|
|
21101
|
+
"permittedRoles": {
|
|
21102
|
+
"summary": "WIP",
|
|
21103
|
+
"roles": []
|
|
21104
|
+
},
|
|
21122
21105
|
"omittion": false,
|
|
21123
21106
|
"globalAttrs": {
|
|
21124
21107
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space"]
|
|
@@ -21178,14 +21161,6 @@
|
|
|
21178
21161
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21179
21162
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTile",
|
|
21180
21163
|
"categories": [],
|
|
21181
|
-
"permittedRoles": {
|
|
21182
|
-
"summary": "WIP",
|
|
21183
|
-
"roles": []
|
|
21184
|
-
},
|
|
21185
|
-
"implicitRole": {
|
|
21186
|
-
"summary": "WIP",
|
|
21187
|
-
"role": false
|
|
21188
|
-
},
|
|
21189
21164
|
"permittedStructures": {
|
|
21190
21165
|
"summary": "",
|
|
21191
21166
|
"tag": "feTile",
|
|
@@ -21195,6 +21170,14 @@
|
|
|
21195
21170
|
}
|
|
21196
21171
|
]
|
|
21197
21172
|
},
|
|
21173
|
+
"implicitRole": {
|
|
21174
|
+
"summary": "WIP",
|
|
21175
|
+
"role": false
|
|
21176
|
+
},
|
|
21177
|
+
"permittedRoles": {
|
|
21178
|
+
"summary": "WIP",
|
|
21179
|
+
"roles": []
|
|
21180
|
+
},
|
|
21198
21181
|
"omittion": false,
|
|
21199
21182
|
"globalAttrs": {
|
|
21200
21183
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -21277,14 +21260,6 @@
|
|
|
21277
21260
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21278
21261
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/feTurbulence",
|
|
21279
21262
|
"categories": [],
|
|
21280
|
-
"permittedRoles": {
|
|
21281
|
-
"summary": "WIP",
|
|
21282
|
-
"roles": []
|
|
21283
|
-
},
|
|
21284
|
-
"implicitRole": {
|
|
21285
|
-
"summary": "WIP",
|
|
21286
|
-
"role": false
|
|
21287
|
-
},
|
|
21288
21263
|
"permittedStructures": {
|
|
21289
21264
|
"summary": "",
|
|
21290
21265
|
"tag": "feTurbulence",
|
|
@@ -21294,6 +21269,14 @@
|
|
|
21294
21269
|
}
|
|
21295
21270
|
]
|
|
21296
21271
|
},
|
|
21272
|
+
"implicitRole": {
|
|
21273
|
+
"summary": "WIP",
|
|
21274
|
+
"role": false
|
|
21275
|
+
},
|
|
21276
|
+
"permittedRoles": {
|
|
21277
|
+
"summary": "WIP",
|
|
21278
|
+
"roles": []
|
|
21279
|
+
},
|
|
21297
21280
|
"omittion": false,
|
|
21298
21281
|
"globalAttrs": {
|
|
21299
21282
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -21412,14 +21395,6 @@
|
|
|
21412
21395
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21413
21396
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/filter",
|
|
21414
21397
|
"categories": [],
|
|
21415
|
-
"permittedRoles": {
|
|
21416
|
-
"summary": "WIP",
|
|
21417
|
-
"roles": []
|
|
21418
|
-
},
|
|
21419
|
-
"implicitRole": {
|
|
21420
|
-
"summary": "WIP",
|
|
21421
|
-
"role": false
|
|
21422
|
-
},
|
|
21423
21398
|
"permittedStructures": {
|
|
21424
21399
|
"summary": "",
|
|
21425
21400
|
"tag": "filter",
|
|
@@ -21429,6 +21404,14 @@
|
|
|
21429
21404
|
}
|
|
21430
21405
|
]
|
|
21431
21406
|
},
|
|
21407
|
+
"implicitRole": {
|
|
21408
|
+
"summary": "WIP",
|
|
21409
|
+
"role": false
|
|
21410
|
+
},
|
|
21411
|
+
"permittedRoles": {
|
|
21412
|
+
"summary": "WIP",
|
|
21413
|
+
"roles": []
|
|
21414
|
+
},
|
|
21432
21415
|
"omittion": false,
|
|
21433
21416
|
"globalAttrs": {
|
|
21434
21417
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -21559,6 +21542,11 @@
|
|
|
21559
21542
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21560
21543
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21561
21544
|
"categories": [],
|
|
21545
|
+
"permittedStructures": {
|
|
21546
|
+
"summary": "",
|
|
21547
|
+
"tag": "font",
|
|
21548
|
+
"contents": false
|
|
21549
|
+
},
|
|
21562
21550
|
"permittedRoles": {
|
|
21563
21551
|
"summary": "",
|
|
21564
21552
|
"roles": []
|
|
@@ -21567,11 +21555,6 @@
|
|
|
21567
21555
|
"summary": "",
|
|
21568
21556
|
"role": false
|
|
21569
21557
|
},
|
|
21570
|
-
"permittedStructures": {
|
|
21571
|
-
"summary": "",
|
|
21572
|
-
"tag": "font",
|
|
21573
|
-
"contents": false
|
|
21574
|
-
},
|
|
21575
21558
|
"omittion": false,
|
|
21576
21559
|
"globalAttrs": {},
|
|
21577
21560
|
"attributes": {},
|
|
@@ -21582,6 +21565,11 @@
|
|
|
21582
21565
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21583
21566
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21584
21567
|
"categories": [],
|
|
21568
|
+
"permittedStructures": {
|
|
21569
|
+
"summary": "",
|
|
21570
|
+
"tag": "font-face",
|
|
21571
|
+
"contents": false
|
|
21572
|
+
},
|
|
21585
21573
|
"permittedRoles": {
|
|
21586
21574
|
"summary": "",
|
|
21587
21575
|
"roles": []
|
|
@@ -21590,11 +21578,6 @@
|
|
|
21590
21578
|
"summary": "",
|
|
21591
21579
|
"role": false
|
|
21592
21580
|
},
|
|
21593
|
-
"permittedStructures": {
|
|
21594
|
-
"summary": "",
|
|
21595
|
-
"tag": "font-face",
|
|
21596
|
-
"contents": false
|
|
21597
|
-
},
|
|
21598
21581
|
"omittion": false,
|
|
21599
21582
|
"globalAttrs": {},
|
|
21600
21583
|
"attributes": {},
|
|
@@ -21605,6 +21588,11 @@
|
|
|
21605
21588
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21606
21589
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21607
21590
|
"categories": [],
|
|
21591
|
+
"permittedStructures": {
|
|
21592
|
+
"summary": "",
|
|
21593
|
+
"tag": "font-face-format",
|
|
21594
|
+
"contents": false
|
|
21595
|
+
},
|
|
21608
21596
|
"permittedRoles": {
|
|
21609
21597
|
"summary": "",
|
|
21610
21598
|
"roles": []
|
|
@@ -21613,11 +21601,6 @@
|
|
|
21613
21601
|
"summary": "",
|
|
21614
21602
|
"role": false
|
|
21615
21603
|
},
|
|
21616
|
-
"permittedStructures": {
|
|
21617
|
-
"summary": "",
|
|
21618
|
-
"tag": "font-face-format",
|
|
21619
|
-
"contents": false
|
|
21620
|
-
},
|
|
21621
21604
|
"omittion": false,
|
|
21622
21605
|
"globalAttrs": {},
|
|
21623
21606
|
"attributes": {},
|
|
@@ -21628,6 +21611,11 @@
|
|
|
21628
21611
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21629
21612
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21630
21613
|
"categories": [],
|
|
21614
|
+
"permittedStructures": {
|
|
21615
|
+
"summary": "",
|
|
21616
|
+
"tag": "font-face-name",
|
|
21617
|
+
"contents": false
|
|
21618
|
+
},
|
|
21631
21619
|
"permittedRoles": {
|
|
21632
21620
|
"summary": "",
|
|
21633
21621
|
"roles": []
|
|
@@ -21636,11 +21624,6 @@
|
|
|
21636
21624
|
"summary": "",
|
|
21637
21625
|
"role": false
|
|
21638
21626
|
},
|
|
21639
|
-
"permittedStructures": {
|
|
21640
|
-
"summary": "",
|
|
21641
|
-
"tag": "font-face-name",
|
|
21642
|
-
"contents": false
|
|
21643
|
-
},
|
|
21644
21627
|
"omittion": false,
|
|
21645
21628
|
"globalAttrs": {},
|
|
21646
21629
|
"attributes": {},
|
|
@@ -21651,6 +21634,11 @@
|
|
|
21651
21634
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21652
21635
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21653
21636
|
"categories": [],
|
|
21637
|
+
"permittedStructures": {
|
|
21638
|
+
"summary": "",
|
|
21639
|
+
"tag": "font-face-src",
|
|
21640
|
+
"contents": false
|
|
21641
|
+
},
|
|
21654
21642
|
"permittedRoles": {
|
|
21655
21643
|
"summary": "",
|
|
21656
21644
|
"roles": []
|
|
@@ -21659,11 +21647,6 @@
|
|
|
21659
21647
|
"summary": "",
|
|
21660
21648
|
"role": false
|
|
21661
21649
|
},
|
|
21662
|
-
"permittedStructures": {
|
|
21663
|
-
"summary": "",
|
|
21664
|
-
"tag": "font-face-src",
|
|
21665
|
-
"contents": false
|
|
21666
|
-
},
|
|
21667
21650
|
"omittion": false,
|
|
21668
21651
|
"globalAttrs": {},
|
|
21669
21652
|
"attributes": {},
|
|
@@ -21674,6 +21657,11 @@
|
|
|
21674
21657
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21675
21658
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21676
21659
|
"categories": [],
|
|
21660
|
+
"permittedStructures": {
|
|
21661
|
+
"summary": "",
|
|
21662
|
+
"tag": "font-face-uri",
|
|
21663
|
+
"contents": false
|
|
21664
|
+
},
|
|
21677
21665
|
"permittedRoles": {
|
|
21678
21666
|
"summary": "",
|
|
21679
21667
|
"roles": []
|
|
@@ -21682,11 +21670,6 @@
|
|
|
21682
21670
|
"summary": "",
|
|
21683
21671
|
"role": false
|
|
21684
21672
|
},
|
|
21685
|
-
"permittedStructures": {
|
|
21686
|
-
"summary": "",
|
|
21687
|
-
"tag": "font-face-uri",
|
|
21688
|
-
"contents": false
|
|
21689
|
-
},
|
|
21690
21673
|
"omittion": false,
|
|
21691
21674
|
"globalAttrs": {},
|
|
21692
21675
|
"attributes": {},
|
|
@@ -21697,18 +21680,18 @@
|
|
|
21697
21680
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21698
21681
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/foreignObject",
|
|
21699
21682
|
"categories": ["#SVGNone"],
|
|
21700
|
-
"
|
|
21701
|
-
"summary": "
|
|
21702
|
-
"
|
|
21683
|
+
"permittedStructures": {
|
|
21684
|
+
"summary": "Any elements or character data",
|
|
21685
|
+
"tag": "foreignObject",
|
|
21686
|
+
"contents": true
|
|
21703
21687
|
},
|
|
21704
21688
|
"implicitRole": {
|
|
21705
21689
|
"summary": "WIP",
|
|
21706
21690
|
"role": false
|
|
21707
21691
|
},
|
|
21708
|
-
"
|
|
21709
|
-
"summary": "
|
|
21710
|
-
"
|
|
21711
|
-
"contents": true
|
|
21692
|
+
"permittedRoles": {
|
|
21693
|
+
"summary": "WIP",
|
|
21694
|
+
"roles": []
|
|
21712
21695
|
},
|
|
21713
21696
|
"omittion": false,
|
|
21714
21697
|
"globalAttrs": {
|
|
@@ -21813,14 +21796,6 @@
|
|
|
21813
21796
|
"namespace": "http://www.w3.org/2000/svg",
|
|
21814
21797
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/g",
|
|
21815
21798
|
"categories": ["#SVGContainer", "#SVGStructural"],
|
|
21816
|
-
"permittedRoles": {
|
|
21817
|
-
"summary": "WIP",
|
|
21818
|
-
"roles": []
|
|
21819
|
-
},
|
|
21820
|
-
"implicitRole": {
|
|
21821
|
-
"summary": "WIP",
|
|
21822
|
-
"role": false
|
|
21823
|
-
},
|
|
21824
21799
|
"permittedStructures": {
|
|
21825
21800
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
21826
21801
|
"tag": "g",
|
|
@@ -21848,293 +21823,22 @@
|
|
|
21848
21823
|
}
|
|
21849
21824
|
]
|
|
21850
21825
|
},
|
|
21851
|
-
"omittion": false,
|
|
21852
|
-
"globalAttrs": {
|
|
21853
|
-
"#HTMLGlobalAttrs": true,
|
|
21854
|
-
"#GlobalEventAttrs": true,
|
|
21855
|
-
"#DocumentElementEventAttrs": true,
|
|
21856
|
-
"#ARIAAttrs": true,
|
|
21857
|
-
"#SVGConditionalProcessingAttrs": ["requiredExtensions", "systemLanguage"],
|
|
21858
|
-
"#SVGCoreAttrs": ["id", "tabindex", "autofocus", "lang", "xml:space", "class", "style"],
|
|
21859
|
-
"#SVGPresentationAttrs": [
|
|
21860
|
-
"alignment-baseline",
|
|
21861
|
-
"baseline-shift",
|
|
21862
|
-
"clip",
|
|
21863
|
-
"clip-path",
|
|
21864
|
-
"clip-rule",
|
|
21865
|
-
"color",
|
|
21866
|
-
"color-interpolation",
|
|
21867
|
-
"color-interpolation-filters",
|
|
21868
|
-
"color-rendering",
|
|
21869
|
-
"cursor",
|
|
21870
|
-
"direction",
|
|
21871
|
-
"display",
|
|
21872
|
-
"dominant-baseline",
|
|
21873
|
-
"enable-background",
|
|
21874
|
-
"fill",
|
|
21875
|
-
"fill-opacity",
|
|
21876
|
-
"fill-rule",
|
|
21877
|
-
"filter",
|
|
21878
|
-
"flood-color",
|
|
21879
|
-
"flood-opacity",
|
|
21880
|
-
"font",
|
|
21881
|
-
"font-family",
|
|
21882
|
-
"font-size",
|
|
21883
|
-
"font-size-adjust",
|
|
21884
|
-
"font-stretch",
|
|
21885
|
-
"font-style",
|
|
21886
|
-
"font-variant",
|
|
21887
|
-
"font-weight",
|
|
21888
|
-
"glyph-orientation-horizontal",
|
|
21889
|
-
"glyph-orientation-vertical",
|
|
21890
|
-
"image-rendering",
|
|
21891
|
-
"isolation",
|
|
21892
|
-
"kerning",
|
|
21893
|
-
"letter-spacing",
|
|
21894
|
-
"lighting-color",
|
|
21895
|
-
"marker",
|
|
21896
|
-
"marker-end",
|
|
21897
|
-
"marker-mid",
|
|
21898
|
-
"marker-start",
|
|
21899
|
-
"mask",
|
|
21900
|
-
"mask-type",
|
|
21901
|
-
"opacity",
|
|
21902
|
-
"overflow",
|
|
21903
|
-
"paint-order",
|
|
21904
|
-
"pointer-events",
|
|
21905
|
-
"shape-rendering",
|
|
21906
|
-
"stop-color",
|
|
21907
|
-
"stop-opacity",
|
|
21908
|
-
"stroke",
|
|
21909
|
-
"stroke-dasharray",
|
|
21910
|
-
"stroke-dashoffset",
|
|
21911
|
-
"stroke-linecap",
|
|
21912
|
-
"stroke-linejoin",
|
|
21913
|
-
"stroke-miterlimit",
|
|
21914
|
-
"stroke-opacity",
|
|
21915
|
-
"stroke-width",
|
|
21916
|
-
"text-anchor",
|
|
21917
|
-
"text-decoration",
|
|
21918
|
-
"text-overflow",
|
|
21919
|
-
"text-rendering",
|
|
21920
|
-
"transform",
|
|
21921
|
-
"transform-origin",
|
|
21922
|
-
"unicode-bidi",
|
|
21923
|
-
"vector-effect",
|
|
21924
|
-
"visibility",
|
|
21925
|
-
"white-space",
|
|
21926
|
-
"word-spacing",
|
|
21927
|
-
"writing-mode"
|
|
21928
|
-
]
|
|
21929
|
-
},
|
|
21930
|
-
"attributes": {}
|
|
21931
|
-
},
|
|
21932
|
-
{
|
|
21933
|
-
"name": "svg:glyph",
|
|
21934
|
-
"namespace": "http://www.w3.org/2000/svg",
|
|
21935
|
-
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21936
|
-
"categories": [],
|
|
21937
|
-
"permittedRoles": {
|
|
21938
|
-
"summary": "",
|
|
21939
|
-
"roles": []
|
|
21940
|
-
},
|
|
21941
|
-
"implicitRole": {
|
|
21942
|
-
"summary": "",
|
|
21943
|
-
"role": false
|
|
21944
|
-
},
|
|
21945
|
-
"permittedStructures": {
|
|
21946
|
-
"summary": "",
|
|
21947
|
-
"tag": "glyph",
|
|
21948
|
-
"contents": false
|
|
21949
|
-
},
|
|
21950
|
-
"omittion": false,
|
|
21951
|
-
"globalAttrs": {},
|
|
21952
|
-
"attributes": {},
|
|
21953
|
-
"deprecated": true
|
|
21954
|
-
},
|
|
21955
|
-
{
|
|
21956
|
-
"name": "svg:glyphRef",
|
|
21957
|
-
"namespace": "http://www.w3.org/2000/svg",
|
|
21958
|
-
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21959
|
-
"categories": [],
|
|
21960
|
-
"permittedRoles": {
|
|
21961
|
-
"summary": "",
|
|
21962
|
-
"roles": []
|
|
21963
|
-
},
|
|
21964
|
-
"implicitRole": {
|
|
21965
|
-
"summary": "",
|
|
21966
|
-
"role": false
|
|
21967
|
-
},
|
|
21968
|
-
"permittedStructures": {
|
|
21969
|
-
"summary": "",
|
|
21970
|
-
"tag": "glyphRef",
|
|
21971
|
-
"contents": false
|
|
21972
|
-
},
|
|
21973
|
-
"omittion": false,
|
|
21974
|
-
"globalAttrs": {},
|
|
21975
|
-
"attributes": {},
|
|
21976
|
-
"deprecated": true
|
|
21977
|
-
},
|
|
21978
|
-
{
|
|
21979
|
-
"name": "svg:hatch",
|
|
21980
|
-
"namespace": "http://www.w3.org/2000/svg",
|
|
21981
|
-
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch",
|
|
21982
|
-
"categories": [],
|
|
21983
|
-
"permittedRoles": {
|
|
21984
|
-
"summary": "WIP",
|
|
21985
|
-
"roles": []
|
|
21986
|
-
},
|
|
21987
21826
|
"implicitRole": {
|
|
21988
21827
|
"summary": "WIP",
|
|
21989
21828
|
"role": false
|
|
21990
21829
|
},
|
|
21991
|
-
"permittedStructures": {
|
|
21992
|
-
"summary": "",
|
|
21993
|
-
"tag": "hatch",
|
|
21994
|
-
"contents": [
|
|
21995
|
-
{
|
|
21996
|
-
"zeroOrMore": ["#SVGAnimation", "#SVGDescriptive", "svg:hatchpath", "svg:script", "svg:style"]
|
|
21997
|
-
}
|
|
21998
|
-
]
|
|
21999
|
-
},
|
|
22000
|
-
"omittion": false,
|
|
22001
|
-
"globalAttrs": {
|
|
22002
|
-
"#SVGCoreAttrs": ["id", "lang", "tabindex", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
22003
|
-
"#GlobalEventAttrs": true,
|
|
22004
|
-
"#SVGPresentationAttrs": [
|
|
22005
|
-
"alignment-baseline",
|
|
22006
|
-
"baseline-shift",
|
|
22007
|
-
"clip",
|
|
22008
|
-
"clip-path",
|
|
22009
|
-
"clip-rule",
|
|
22010
|
-
"color",
|
|
22011
|
-
"color-interpolation",
|
|
22012
|
-
"color-interpolation-filters",
|
|
22013
|
-
"color-profile",
|
|
22014
|
-
"color-rendering",
|
|
22015
|
-
"cursor",
|
|
22016
|
-
"direction",
|
|
22017
|
-
"display",
|
|
22018
|
-
"dominant-baseline",
|
|
22019
|
-
"enable-background",
|
|
22020
|
-
"fill",
|
|
22021
|
-
"fill-opacity",
|
|
22022
|
-
"fill-rule",
|
|
22023
|
-
"filter",
|
|
22024
|
-
"flood-color",
|
|
22025
|
-
"flood-opacity",
|
|
22026
|
-
"font-family",
|
|
22027
|
-
"font-size",
|
|
22028
|
-
"font-size-adjust",
|
|
22029
|
-
"font-stretch",
|
|
22030
|
-
"font-style",
|
|
22031
|
-
"font-variant",
|
|
22032
|
-
"font-weight",
|
|
22033
|
-
"glyph-orientation-horizontal",
|
|
22034
|
-
"glyph-orientation-vertical",
|
|
22035
|
-
"image-rendering",
|
|
22036
|
-
"kerning",
|
|
22037
|
-
"letter-spacing",
|
|
22038
|
-
"lighting-color",
|
|
22039
|
-
"marker-end",
|
|
22040
|
-
"marker-mid",
|
|
22041
|
-
"marker-start",
|
|
22042
|
-
"mask",
|
|
22043
|
-
"opacity",
|
|
22044
|
-
"overflow",
|
|
22045
|
-
"pointer-events",
|
|
22046
|
-
"shape-rendering",
|
|
22047
|
-
"stop-color",
|
|
22048
|
-
"stop-opacity",
|
|
22049
|
-
"stroke",
|
|
22050
|
-
"stroke-dasharray",
|
|
22051
|
-
"stroke-dashoffset",
|
|
22052
|
-
"stroke-linecap",
|
|
22053
|
-
"stroke-linejoin",
|
|
22054
|
-
"stroke-miterlimit",
|
|
22055
|
-
"stroke-opacity",
|
|
22056
|
-
"stroke-width",
|
|
22057
|
-
"text-anchor",
|
|
22058
|
-
"text-decoration",
|
|
22059
|
-
"text-rendering",
|
|
22060
|
-
"transform",
|
|
22061
|
-
"transform-origin",
|
|
22062
|
-
"unicode-bidi",
|
|
22063
|
-
"vector-effect",
|
|
22064
|
-
"visibility",
|
|
22065
|
-
"word-spacing",
|
|
22066
|
-
"writing-mode"
|
|
22067
|
-
]
|
|
22068
|
-
},
|
|
22069
|
-
"attributes": {
|
|
22070
|
-
"x": {
|
|
22071
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22072
|
-
"type": "Any",
|
|
22073
|
-
"_TODO_": "It's an experimental technology"
|
|
22074
|
-
},
|
|
22075
|
-
"y": {
|
|
22076
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22077
|
-
"type": "Any",
|
|
22078
|
-
"_TODO_": "It's an experimental technology"
|
|
22079
|
-
},
|
|
22080
|
-
"pitch": {
|
|
22081
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22082
|
-
"type": "Any",
|
|
22083
|
-
"_TODO_": "It's an experimental technology"
|
|
22084
|
-
},
|
|
22085
|
-
"rotate": {
|
|
22086
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22087
|
-
"type": "Any",
|
|
22088
|
-
"_TODO_": "It's an experimental technology"
|
|
22089
|
-
},
|
|
22090
|
-
"hatchUnits": {
|
|
22091
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22092
|
-
"type": "Any",
|
|
22093
|
-
"_TODO_": "It's an experimental technology"
|
|
22094
|
-
},
|
|
22095
|
-
"hatchContentUnits": {
|
|
22096
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22097
|
-
"type": "Any",
|
|
22098
|
-
"_TODO_": "It's an experimental technology"
|
|
22099
|
-
},
|
|
22100
|
-
"transform": {
|
|
22101
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22102
|
-
"type": "Any",
|
|
22103
|
-
"_TODO_": "It's an experimental technology"
|
|
22104
|
-
},
|
|
22105
|
-
"href": {
|
|
22106
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatch#specific_attributes",
|
|
22107
|
-
"type": "Any",
|
|
22108
|
-
"_TODO_": "It's an experimental technology"
|
|
22109
|
-
}
|
|
22110
|
-
}
|
|
22111
|
-
},
|
|
22112
|
-
{
|
|
22113
|
-
"name": "svg:hatchpath",
|
|
22114
|
-
"namespace": "http://www.w3.org/2000/svg",
|
|
22115
|
-
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath",
|
|
22116
|
-
"categories": [],
|
|
22117
21830
|
"permittedRoles": {
|
|
22118
21831
|
"summary": "WIP",
|
|
22119
21832
|
"roles": []
|
|
22120
21833
|
},
|
|
22121
|
-
"implicitRole": {
|
|
22122
|
-
"summary": "WIP",
|
|
22123
|
-
"role": false
|
|
22124
|
-
},
|
|
22125
|
-
"permittedStructures": {
|
|
22126
|
-
"summary": "",
|
|
22127
|
-
"tag": "hatch",
|
|
22128
|
-
"contents": [
|
|
22129
|
-
{
|
|
22130
|
-
"zeroOrMore": ["#SVGAnimation", "#SVGDescriptive", "svg:script", "svg:style"]
|
|
22131
|
-
}
|
|
22132
|
-
]
|
|
22133
|
-
},
|
|
22134
21834
|
"omittion": false,
|
|
22135
21835
|
"globalAttrs": {
|
|
22136
|
-
"#
|
|
21836
|
+
"#HTMLGlobalAttrs": true,
|
|
22137
21837
|
"#GlobalEventAttrs": true,
|
|
21838
|
+
"#DocumentElementEventAttrs": true,
|
|
21839
|
+
"#ARIAAttrs": true,
|
|
21840
|
+
"#SVGConditionalProcessingAttrs": ["requiredExtensions", "systemLanguage"],
|
|
21841
|
+
"#SVGCoreAttrs": ["id", "tabindex", "autofocus", "lang", "xml:space", "class", "style"],
|
|
22138
21842
|
"#SVGPresentationAttrs": [
|
|
22139
21843
|
"alignment-baseline",
|
|
22140
21844
|
"baseline-shift",
|
|
@@ -22144,7 +21848,6 @@
|
|
|
22144
21848
|
"color",
|
|
22145
21849
|
"color-interpolation",
|
|
22146
21850
|
"color-interpolation-filters",
|
|
22147
|
-
"color-profile",
|
|
22148
21851
|
"color-rendering",
|
|
22149
21852
|
"cursor",
|
|
22150
21853
|
"direction",
|
|
@@ -22157,6 +21860,7 @@
|
|
|
22157
21860
|
"filter",
|
|
22158
21861
|
"flood-color",
|
|
22159
21862
|
"flood-opacity",
|
|
21863
|
+
"font",
|
|
22160
21864
|
"font-family",
|
|
22161
21865
|
"font-size",
|
|
22162
21866
|
"font-size-adjust",
|
|
@@ -22167,15 +21871,19 @@
|
|
|
22167
21871
|
"glyph-orientation-horizontal",
|
|
22168
21872
|
"glyph-orientation-vertical",
|
|
22169
21873
|
"image-rendering",
|
|
21874
|
+
"isolation",
|
|
22170
21875
|
"kerning",
|
|
22171
21876
|
"letter-spacing",
|
|
22172
21877
|
"lighting-color",
|
|
21878
|
+
"marker",
|
|
22173
21879
|
"marker-end",
|
|
22174
21880
|
"marker-mid",
|
|
22175
21881
|
"marker-start",
|
|
22176
21882
|
"mask",
|
|
21883
|
+
"mask-type",
|
|
22177
21884
|
"opacity",
|
|
22178
21885
|
"overflow",
|
|
21886
|
+
"paint-order",
|
|
22179
21887
|
"pointer-events",
|
|
22180
21888
|
"shape-rendering",
|
|
22181
21889
|
"stop-color",
|
|
@@ -22190,34 +21898,30 @@
|
|
|
22190
21898
|
"stroke-width",
|
|
22191
21899
|
"text-anchor",
|
|
22192
21900
|
"text-decoration",
|
|
21901
|
+
"text-overflow",
|
|
22193
21902
|
"text-rendering",
|
|
22194
21903
|
"transform",
|
|
22195
21904
|
"transform-origin",
|
|
22196
21905
|
"unicode-bidi",
|
|
22197
21906
|
"vector-effect",
|
|
22198
21907
|
"visibility",
|
|
21908
|
+
"white-space",
|
|
22199
21909
|
"word-spacing",
|
|
22200
21910
|
"writing-mode"
|
|
22201
21911
|
]
|
|
22202
21912
|
},
|
|
22203
|
-
"attributes": {
|
|
22204
|
-
"d": {
|
|
22205
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath#specific_attributes",
|
|
22206
|
-
"type": "Any",
|
|
22207
|
-
"_TODO_": "It's an experimental technology"
|
|
22208
|
-
},
|
|
22209
|
-
"offset": {
|
|
22210
|
-
"ref": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/hatchpath#specific_attributes",
|
|
22211
|
-
"type": "Any",
|
|
22212
|
-
"_TODO_": "It's an experimental technology"
|
|
22213
|
-
}
|
|
22214
|
-
}
|
|
21913
|
+
"attributes": {}
|
|
22215
21914
|
},
|
|
22216
21915
|
{
|
|
22217
|
-
"name": "svg:
|
|
21916
|
+
"name": "svg:glyph",
|
|
22218
21917
|
"namespace": "http://www.w3.org/2000/svg",
|
|
22219
21918
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
22220
21919
|
"categories": [],
|
|
21920
|
+
"permittedStructures": {
|
|
21921
|
+
"summary": "",
|
|
21922
|
+
"tag": "glyph",
|
|
21923
|
+
"contents": false
|
|
21924
|
+
},
|
|
22221
21925
|
"permittedRoles": {
|
|
22222
21926
|
"summary": "",
|
|
22223
21927
|
"roles": []
|
|
@@ -22226,29 +21930,62 @@
|
|
|
22226
21930
|
"summary": "",
|
|
22227
21931
|
"role": false
|
|
22228
21932
|
},
|
|
21933
|
+
"omittion": false,
|
|
21934
|
+
"globalAttrs": {},
|
|
21935
|
+
"attributes": {},
|
|
21936
|
+
"deprecated": true
|
|
21937
|
+
},
|
|
21938
|
+
{
|
|
21939
|
+
"name": "svg:glyphRef",
|
|
21940
|
+
"namespace": "http://www.w3.org/2000/svg",
|
|
21941
|
+
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
21942
|
+
"categories": [],
|
|
22229
21943
|
"permittedStructures": {
|
|
22230
21944
|
"summary": "",
|
|
22231
|
-
"tag": "
|
|
21945
|
+
"tag": "glyphRef",
|
|
22232
21946
|
"contents": false
|
|
22233
21947
|
},
|
|
21948
|
+
"permittedRoles": {
|
|
21949
|
+
"summary": "",
|
|
21950
|
+
"roles": []
|
|
21951
|
+
},
|
|
21952
|
+
"implicitRole": {
|
|
21953
|
+
"summary": "",
|
|
21954
|
+
"role": false
|
|
21955
|
+
},
|
|
22234
21956
|
"omittion": false,
|
|
22235
21957
|
"globalAttrs": {},
|
|
22236
21958
|
"attributes": {},
|
|
22237
21959
|
"deprecated": true
|
|
22238
21960
|
},
|
|
22239
21961
|
{
|
|
22240
|
-
"name": "svg:
|
|
21962
|
+
"name": "svg:hkern",
|
|
22241
21963
|
"namespace": "http://www.w3.org/2000/svg",
|
|
22242
|
-
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element
|
|
21964
|
+
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
22243
21965
|
"categories": [],
|
|
21966
|
+
"permittedStructures": {
|
|
21967
|
+
"summary": "",
|
|
21968
|
+
"tag": "hkern",
|
|
21969
|
+
"contents": false
|
|
21970
|
+
},
|
|
22244
21971
|
"permittedRoles": {
|
|
22245
|
-
"summary": "
|
|
21972
|
+
"summary": "",
|
|
22246
21973
|
"roles": []
|
|
22247
21974
|
},
|
|
22248
21975
|
"implicitRole": {
|
|
22249
|
-
"summary": "
|
|
21976
|
+
"summary": "",
|
|
22250
21977
|
"role": false
|
|
22251
21978
|
},
|
|
21979
|
+
"omittion": false,
|
|
21980
|
+
"globalAttrs": {},
|
|
21981
|
+
"attributes": {},
|
|
21982
|
+
"deprecated": true
|
|
21983
|
+
},
|
|
21984
|
+
{
|
|
21985
|
+
"name": "svg:image",
|
|
21986
|
+
"namespace": "http://www.w3.org/2000/svg",
|
|
21987
|
+
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/image",
|
|
21988
|
+
"categories": [],
|
|
22252
21989
|
"permittedStructures": {
|
|
22253
21990
|
"summary": "",
|
|
22254
21991
|
"tag": "image",
|
|
@@ -22265,6 +22002,14 @@
|
|
|
22265
22002
|
}
|
|
22266
22003
|
]
|
|
22267
22004
|
},
|
|
22005
|
+
"implicitRole": {
|
|
22006
|
+
"summary": "WIP",
|
|
22007
|
+
"role": false
|
|
22008
|
+
},
|
|
22009
|
+
"permittedRoles": {
|
|
22010
|
+
"summary": "WIP",
|
|
22011
|
+
"roles": []
|
|
22012
|
+
},
|
|
22268
22013
|
"omittion": false,
|
|
22269
22014
|
"globalAttrs": {
|
|
22270
22015
|
"#HTMLGlobalAttrs": true,
|
|
@@ -22375,14 +22120,6 @@
|
|
|
22375
22120
|
"namespace": "http://www.w3.org/2000/svg",
|
|
22376
22121
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/line",
|
|
22377
22122
|
"categories": ["#SVGGraphics", "#SVGShape"],
|
|
22378
|
-
"permittedRoles": {
|
|
22379
|
-
"summary": "WIP",
|
|
22380
|
-
"roles": []
|
|
22381
|
-
},
|
|
22382
|
-
"implicitRole": {
|
|
22383
|
-
"summary": "WIP",
|
|
22384
|
-
"role": false
|
|
22385
|
-
},
|
|
22386
22123
|
"permittedStructures": {
|
|
22387
22124
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
22388
22125
|
"tag": "line",
|
|
@@ -22401,6 +22138,14 @@
|
|
|
22401
22138
|
}
|
|
22402
22139
|
]
|
|
22403
22140
|
},
|
|
22141
|
+
"implicitRole": {
|
|
22142
|
+
"summary": "WIP",
|
|
22143
|
+
"role": false
|
|
22144
|
+
},
|
|
22145
|
+
"permittedRoles": {
|
|
22146
|
+
"summary": "WIP",
|
|
22147
|
+
"roles": []
|
|
22148
|
+
},
|
|
22404
22149
|
"omittion": false,
|
|
22405
22150
|
"globalAttrs": {
|
|
22406
22151
|
"#HTMLGlobalAttrs": true,
|
|
@@ -22522,14 +22267,6 @@
|
|
|
22522
22267
|
"namespace": "http://www.w3.org/2000/svg",
|
|
22523
22268
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/linearGradient",
|
|
22524
22269
|
"categories": ["#SVGGradient"],
|
|
22525
|
-
"permittedRoles": {
|
|
22526
|
-
"summary": "WIP",
|
|
22527
|
-
"roles": []
|
|
22528
|
-
},
|
|
22529
|
-
"implicitRole": {
|
|
22530
|
-
"summary": "WIP",
|
|
22531
|
-
"role": false
|
|
22532
|
-
},
|
|
22533
22270
|
"permittedStructures": {
|
|
22534
22271
|
"summary": "Any number of the following elements, in any order:Descriptive elements<animate>, <animateTransform>, <set>, <stop>",
|
|
22535
22272
|
"tag": "linearGradient",
|
|
@@ -22547,6 +22284,14 @@
|
|
|
22547
22284
|
}
|
|
22548
22285
|
]
|
|
22549
22286
|
},
|
|
22287
|
+
"implicitRole": {
|
|
22288
|
+
"summary": "WIP",
|
|
22289
|
+
"role": false
|
|
22290
|
+
},
|
|
22291
|
+
"permittedRoles": {
|
|
22292
|
+
"summary": "WIP",
|
|
22293
|
+
"roles": []
|
|
22294
|
+
},
|
|
22550
22295
|
"omittion": false,
|
|
22551
22296
|
"globalAttrs": {
|
|
22552
22297
|
"#GlobalEventAttrs": true,
|
|
@@ -22694,14 +22439,6 @@
|
|
|
22694
22439
|
"namespace": "http://www.w3.org/2000/svg",
|
|
22695
22440
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/marker",
|
|
22696
22441
|
"categories": ["#SVGContainer"],
|
|
22697
|
-
"permittedRoles": {
|
|
22698
|
-
"summary": "WIP",
|
|
22699
|
-
"roles": []
|
|
22700
|
-
},
|
|
22701
|
-
"implicitRole": {
|
|
22702
|
-
"summary": "WIP",
|
|
22703
|
-
"role": false
|
|
22704
|
-
},
|
|
22705
22442
|
"permittedStructures": {
|
|
22706
22443
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
22707
22444
|
"tag": "marker",
|
|
@@ -22729,6 +22466,14 @@
|
|
|
22729
22466
|
}
|
|
22730
22467
|
]
|
|
22731
22468
|
},
|
|
22469
|
+
"implicitRole": {
|
|
22470
|
+
"summary": "WIP",
|
|
22471
|
+
"role": false
|
|
22472
|
+
},
|
|
22473
|
+
"permittedRoles": {
|
|
22474
|
+
"summary": "WIP",
|
|
22475
|
+
"roles": []
|
|
22476
|
+
},
|
|
22732
22477
|
"omittion": false,
|
|
22733
22478
|
"globalAttrs": {
|
|
22734
22479
|
"#GlobalEventAttrs": true,
|
|
@@ -22891,14 +22636,6 @@
|
|
|
22891
22636
|
"namespace": "http://www.w3.org/2000/svg",
|
|
22892
22637
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mask",
|
|
22893
22638
|
"categories": ["#SVGContainer"],
|
|
22894
|
-
"permittedRoles": {
|
|
22895
|
-
"summary": "WIP",
|
|
22896
|
-
"roles": []
|
|
22897
|
-
},
|
|
22898
|
-
"implicitRole": {
|
|
22899
|
-
"summary": "WIP",
|
|
22900
|
-
"role": false
|
|
22901
|
-
},
|
|
22902
22639
|
"permittedStructures": {
|
|
22903
22640
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
22904
22641
|
"tag": "marker",
|
|
@@ -22932,6 +22669,14 @@
|
|
|
22932
22669
|
}
|
|
22933
22670
|
]
|
|
22934
22671
|
},
|
|
22672
|
+
"implicitRole": {
|
|
22673
|
+
"summary": "WIP",
|
|
22674
|
+
"role": false
|
|
22675
|
+
},
|
|
22676
|
+
"permittedRoles": {
|
|
22677
|
+
"summary": "WIP",
|
|
22678
|
+
"roles": []
|
|
22679
|
+
},
|
|
22935
22680
|
"omittion": false,
|
|
22936
22681
|
"globalAttrs": {
|
|
22937
22682
|
"#SVGCoreAttrs": ["id", "xml:base", "xml:lang", "xml:space", "class", "style"],
|
|
@@ -23040,14 +22785,6 @@
|
|
|
23040
22785
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23041
22786
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/metadata",
|
|
23042
22787
|
"categories": [],
|
|
23043
|
-
"permittedRoles": {
|
|
23044
|
-
"summary": "WIP",
|
|
23045
|
-
"roles": []
|
|
23046
|
-
},
|
|
23047
|
-
"implicitRole": {
|
|
23048
|
-
"summary": "WIP",
|
|
23049
|
-
"role": false
|
|
23050
|
-
},
|
|
23051
22788
|
"permittedStructures": {
|
|
23052
22789
|
"summary": "",
|
|
23053
22790
|
"tag": "metadata",
|
|
@@ -23057,6 +22794,14 @@
|
|
|
23057
22794
|
}
|
|
23058
22795
|
]
|
|
23059
22796
|
},
|
|
22797
|
+
"implicitRole": {
|
|
22798
|
+
"summary": "WIP",
|
|
22799
|
+
"role": false
|
|
22800
|
+
},
|
|
22801
|
+
"permittedRoles": {
|
|
22802
|
+
"summary": "WIP",
|
|
22803
|
+
"roles": []
|
|
22804
|
+
},
|
|
23060
22805
|
"omittion": false,
|
|
23061
22806
|
"globalAttrs": {
|
|
23062
22807
|
"#GlobalEventAttrs": true,
|
|
@@ -23070,6 +22815,11 @@
|
|
|
23070
22815
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23071
22816
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
23072
22817
|
"categories": [],
|
|
22818
|
+
"permittedStructures": {
|
|
22819
|
+
"summary": "",
|
|
22820
|
+
"tag": "missing-glyph",
|
|
22821
|
+
"contents": false
|
|
22822
|
+
},
|
|
23073
22823
|
"permittedRoles": {
|
|
23074
22824
|
"summary": "",
|
|
23075
22825
|
"roles": []
|
|
@@ -23078,11 +22828,6 @@
|
|
|
23078
22828
|
"summary": "",
|
|
23079
22829
|
"role": false
|
|
23080
22830
|
},
|
|
23081
|
-
"permittedStructures": {
|
|
23082
|
-
"summary": "",
|
|
23083
|
-
"tag": "missing-glyph",
|
|
23084
|
-
"contents": false
|
|
23085
|
-
},
|
|
23086
22831
|
"omittion": false,
|
|
23087
22832
|
"globalAttrs": {},
|
|
23088
22833
|
"attributes": {},
|
|
@@ -23093,14 +22838,6 @@
|
|
|
23093
22838
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23094
22839
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/mpath",
|
|
23095
22840
|
"categories": [],
|
|
23096
|
-
"permittedRoles": {
|
|
23097
|
-
"summary": "WIP",
|
|
23098
|
-
"roles": []
|
|
23099
|
-
},
|
|
23100
|
-
"implicitRole": {
|
|
23101
|
-
"summary": "WIP",
|
|
23102
|
-
"role": false
|
|
23103
|
-
},
|
|
23104
22841
|
"permittedStructures": {
|
|
23105
22842
|
"summary": "",
|
|
23106
22843
|
"tag": "mpath",
|
|
@@ -23110,6 +22847,14 @@
|
|
|
23110
22847
|
}
|
|
23111
22848
|
]
|
|
23112
22849
|
},
|
|
22850
|
+
"implicitRole": {
|
|
22851
|
+
"summary": "WIP",
|
|
22852
|
+
"role": false
|
|
22853
|
+
},
|
|
22854
|
+
"permittedRoles": {
|
|
22855
|
+
"summary": "WIP",
|
|
22856
|
+
"roles": []
|
|
22857
|
+
},
|
|
23113
22858
|
"omittion": false,
|
|
23114
22859
|
"globalAttrs": {
|
|
23115
22860
|
"#SVGCoreAttrs": ["id", "tabindex", "autofocus", "lang", "xml:space", "class", "style"],
|
|
@@ -23128,14 +22873,6 @@
|
|
|
23128
22873
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23129
22874
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/path",
|
|
23130
22875
|
"categories": ["#SVGGraphics", "#SVGShape"],
|
|
23131
|
-
"permittedRoles": {
|
|
23132
|
-
"summary": "WIP",
|
|
23133
|
-
"roles": []
|
|
23134
|
-
},
|
|
23135
|
-
"implicitRole": {
|
|
23136
|
-
"summary": "WIP",
|
|
23137
|
-
"role": false
|
|
23138
|
-
},
|
|
23139
22876
|
"permittedStructures": {
|
|
23140
22877
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
23141
22878
|
"tag": "path",
|
|
@@ -23154,6 +22891,14 @@
|
|
|
23154
22891
|
}
|
|
23155
22892
|
]
|
|
23156
22893
|
},
|
|
22894
|
+
"implicitRole": {
|
|
22895
|
+
"summary": "WIP",
|
|
22896
|
+
"role": false
|
|
22897
|
+
},
|
|
22898
|
+
"permittedRoles": {
|
|
22899
|
+
"summary": "WIP",
|
|
22900
|
+
"roles": []
|
|
22901
|
+
},
|
|
23157
22902
|
"omittion": false,
|
|
23158
22903
|
"globalAttrs": {
|
|
23159
22904
|
"#HTMLGlobalAttrs": true,
|
|
@@ -23252,14 +22997,6 @@
|
|
|
23252
22997
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23253
22998
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/pattern",
|
|
23254
22999
|
"categories": ["#SVGContainer"],
|
|
23255
|
-
"permittedRoles": {
|
|
23256
|
-
"summary": "WIP",
|
|
23257
|
-
"roles": []
|
|
23258
|
-
},
|
|
23259
|
-
"implicitRole": {
|
|
23260
|
-
"summary": "WIP",
|
|
23261
|
-
"role": false
|
|
23262
|
-
},
|
|
23263
23000
|
"permittedStructures": {
|
|
23264
23001
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
23265
23002
|
"tag": "pattern",
|
|
@@ -23287,6 +23024,14 @@
|
|
|
23287
23024
|
}
|
|
23288
23025
|
]
|
|
23289
23026
|
},
|
|
23027
|
+
"implicitRole": {
|
|
23028
|
+
"summary": "WIP",
|
|
23029
|
+
"role": false
|
|
23030
|
+
},
|
|
23031
|
+
"permittedRoles": {
|
|
23032
|
+
"summary": "WIP",
|
|
23033
|
+
"roles": []
|
|
23034
|
+
},
|
|
23290
23035
|
"omittion": false,
|
|
23291
23036
|
"globalAttrs": {
|
|
23292
23037
|
"#GlobalEventAttrs": true,
|
|
@@ -23431,14 +23176,6 @@
|
|
|
23431
23176
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23432
23177
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polygon",
|
|
23433
23178
|
"categories": ["#SVGGraphics", "#SVGShape"],
|
|
23434
|
-
"permittedRoles": {
|
|
23435
|
-
"summary": "WIP",
|
|
23436
|
-
"roles": []
|
|
23437
|
-
},
|
|
23438
|
-
"implicitRole": {
|
|
23439
|
-
"summary": "WIP",
|
|
23440
|
-
"role": false
|
|
23441
|
-
},
|
|
23442
23179
|
"permittedStructures": {
|
|
23443
23180
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
23444
23181
|
"tag": "polygon",
|
|
@@ -23457,6 +23194,14 @@
|
|
|
23457
23194
|
}
|
|
23458
23195
|
]
|
|
23459
23196
|
},
|
|
23197
|
+
"implicitRole": {
|
|
23198
|
+
"summary": "WIP",
|
|
23199
|
+
"role": false
|
|
23200
|
+
},
|
|
23201
|
+
"permittedRoles": {
|
|
23202
|
+
"summary": "WIP",
|
|
23203
|
+
"roles": []
|
|
23204
|
+
},
|
|
23460
23205
|
"omittion": false,
|
|
23461
23206
|
"globalAttrs": {
|
|
23462
23207
|
"#HTMLGlobalAttrs": true,
|
|
@@ -23556,14 +23301,6 @@
|
|
|
23556
23301
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23557
23302
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline",
|
|
23558
23303
|
"categories": ["#SVGGraphics", "#SVGShape"],
|
|
23559
|
-
"permittedRoles": {
|
|
23560
|
-
"summary": "WIP",
|
|
23561
|
-
"roles": []
|
|
23562
|
-
},
|
|
23563
|
-
"implicitRole": {
|
|
23564
|
-
"summary": "WIP",
|
|
23565
|
-
"role": false
|
|
23566
|
-
},
|
|
23567
23304
|
"permittedStructures": {
|
|
23568
23305
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
23569
23306
|
"tag": "polyline",
|
|
@@ -23582,6 +23319,14 @@
|
|
|
23582
23319
|
}
|
|
23583
23320
|
]
|
|
23584
23321
|
},
|
|
23322
|
+
"implicitRole": {
|
|
23323
|
+
"summary": "WIP",
|
|
23324
|
+
"role": false
|
|
23325
|
+
},
|
|
23326
|
+
"permittedRoles": {
|
|
23327
|
+
"summary": "WIP",
|
|
23328
|
+
"roles": []
|
|
23329
|
+
},
|
|
23585
23330
|
"omittion": false,
|
|
23586
23331
|
"globalAttrs": {
|
|
23587
23332
|
"#HTMLGlobalAttrs": true,
|
|
@@ -23677,18 +23422,10 @@
|
|
|
23677
23422
|
}
|
|
23678
23423
|
},
|
|
23679
23424
|
{
|
|
23680
|
-
"name": "svg:radialGradient",
|
|
23681
|
-
"namespace": "http://www.w3.org/2000/svg",
|
|
23682
|
-
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient",
|
|
23683
|
-
"categories": ["#SVGGradient"],
|
|
23684
|
-
"permittedRoles": {
|
|
23685
|
-
"summary": "WIP",
|
|
23686
|
-
"roles": []
|
|
23687
|
-
},
|
|
23688
|
-
"implicitRole": {
|
|
23689
|
-
"summary": "WIP",
|
|
23690
|
-
"role": false
|
|
23691
|
-
},
|
|
23425
|
+
"name": "svg:radialGradient",
|
|
23426
|
+
"namespace": "http://www.w3.org/2000/svg",
|
|
23427
|
+
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/radialGradient",
|
|
23428
|
+
"categories": ["#SVGGradient"],
|
|
23692
23429
|
"permittedStructures": {
|
|
23693
23430
|
"summary": "Any number of the following elements, in any order:Descriptive elements<animate>, <animateTransform>, <set>, <stop>",
|
|
23694
23431
|
"tag": "radialGradient",
|
|
@@ -23706,6 +23443,14 @@
|
|
|
23706
23443
|
}
|
|
23707
23444
|
]
|
|
23708
23445
|
},
|
|
23446
|
+
"implicitRole": {
|
|
23447
|
+
"summary": "WIP",
|
|
23448
|
+
"role": false
|
|
23449
|
+
},
|
|
23450
|
+
"permittedRoles": {
|
|
23451
|
+
"summary": "WIP",
|
|
23452
|
+
"roles": []
|
|
23453
|
+
},
|
|
23709
23454
|
"omittion": false,
|
|
23710
23455
|
"globalAttrs": {
|
|
23711
23456
|
"#GlobalEventAttrs": true,
|
|
@@ -23865,14 +23610,6 @@
|
|
|
23865
23610
|
"namespace": "http://www.w3.org/2000/svg",
|
|
23866
23611
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/rect",
|
|
23867
23612
|
"categories": ["#SVGGraphics", "#SVGShape"],
|
|
23868
|
-
"permittedRoles": {
|
|
23869
|
-
"summary": "WIP",
|
|
23870
|
-
"roles": []
|
|
23871
|
-
},
|
|
23872
|
-
"implicitRole": {
|
|
23873
|
-
"summary": "WIP",
|
|
23874
|
-
"role": false
|
|
23875
|
-
},
|
|
23876
23613
|
"permittedStructures": {
|
|
23877
23614
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
23878
23615
|
"tag": "rect",
|
|
@@ -23891,6 +23628,14 @@
|
|
|
23891
23628
|
}
|
|
23892
23629
|
]
|
|
23893
23630
|
},
|
|
23631
|
+
"implicitRole": {
|
|
23632
|
+
"summary": "WIP",
|
|
23633
|
+
"role": false
|
|
23634
|
+
},
|
|
23635
|
+
"permittedRoles": {
|
|
23636
|
+
"summary": "WIP",
|
|
23637
|
+
"roles": []
|
|
23638
|
+
},
|
|
23894
23639
|
"omittion": false,
|
|
23895
23640
|
"globalAttrs": {
|
|
23896
23641
|
"#HTMLGlobalAttrs": true,
|
|
@@ -24008,14 +23753,6 @@
|
|
|
24008
23753
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24009
23754
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/script",
|
|
24010
23755
|
"categories": ["#SVGNone"],
|
|
24011
|
-
"permittedRoles": {
|
|
24012
|
-
"summary": "WIP",
|
|
24013
|
-
"roles": []
|
|
24014
|
-
},
|
|
24015
|
-
"implicitRole": {
|
|
24016
|
-
"summary": "WIP",
|
|
24017
|
-
"role": false
|
|
24018
|
-
},
|
|
24019
23756
|
"permittedStructures": {
|
|
24020
23757
|
"summary": "Any elements or character data",
|
|
24021
23758
|
"tag": "script",
|
|
@@ -24025,6 +23762,14 @@
|
|
|
24025
23762
|
}
|
|
24026
23763
|
]
|
|
24027
23764
|
},
|
|
23765
|
+
"implicitRole": {
|
|
23766
|
+
"summary": "WIP",
|
|
23767
|
+
"role": false
|
|
23768
|
+
},
|
|
23769
|
+
"permittedRoles": {
|
|
23770
|
+
"summary": "WIP",
|
|
23771
|
+
"roles": []
|
|
23772
|
+
},
|
|
24028
23773
|
"omittion": false,
|
|
24029
23774
|
"globalAttrs": {
|
|
24030
23775
|
"#GlobalEventAttrs": true,
|
|
@@ -24063,14 +23808,6 @@
|
|
|
24063
23808
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24064
23809
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/set",
|
|
24065
23810
|
"categories": ["#SVGAnimation"],
|
|
24066
|
-
"permittedRoles": {
|
|
24067
|
-
"summary": "WIP",
|
|
24068
|
-
"roles": []
|
|
24069
|
-
},
|
|
24070
|
-
"implicitRole": {
|
|
24071
|
-
"summary": "WIP",
|
|
24072
|
-
"role": false
|
|
24073
|
-
},
|
|
24074
23811
|
"permittedStructures": {
|
|
24075
23812
|
"summary": "Any number of the following elements, in any order:Descriptive elements",
|
|
24076
23813
|
"tag": "set",
|
|
@@ -24080,6 +23817,14 @@
|
|
|
24080
23817
|
}
|
|
24081
23818
|
]
|
|
24082
23819
|
},
|
|
23820
|
+
"implicitRole": {
|
|
23821
|
+
"summary": "WIP",
|
|
23822
|
+
"role": false
|
|
23823
|
+
},
|
|
23824
|
+
"permittedRoles": {
|
|
23825
|
+
"summary": "WIP",
|
|
23826
|
+
"roles": []
|
|
23827
|
+
},
|
|
24083
23828
|
"omittion": false,
|
|
24084
23829
|
"globalAttrs": {
|
|
24085
23830
|
"#GlobalEventAttrs": true,
|
|
@@ -24115,14 +23860,6 @@
|
|
|
24115
23860
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24116
23861
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/stop",
|
|
24117
23862
|
"categories": ["#SVGGradient"],
|
|
24118
|
-
"permittedRoles": {
|
|
24119
|
-
"summary": "WIP",
|
|
24120
|
-
"roles": []
|
|
24121
|
-
},
|
|
24122
|
-
"implicitRole": {
|
|
24123
|
-
"summary": "WIP",
|
|
24124
|
-
"role": false
|
|
24125
|
-
},
|
|
24126
23863
|
"permittedStructures": {
|
|
24127
23864
|
"summary": "Any number of the following elements, in any order:<animate>, <animateColor>, <set>",
|
|
24128
23865
|
"tag": "stop",
|
|
@@ -24132,6 +23869,14 @@
|
|
|
24132
23869
|
}
|
|
24133
23870
|
]
|
|
24134
23871
|
},
|
|
23872
|
+
"implicitRole": {
|
|
23873
|
+
"summary": "WIP",
|
|
23874
|
+
"role": false
|
|
23875
|
+
},
|
|
23876
|
+
"permittedRoles": {
|
|
23877
|
+
"summary": "WIP",
|
|
23878
|
+
"roles": []
|
|
23879
|
+
},
|
|
24135
23880
|
"omittion": false,
|
|
24136
23881
|
"globalAttrs": {
|
|
24137
23882
|
"#GlobalEventAttrs": true,
|
|
@@ -24237,14 +23982,6 @@
|
|
|
24237
23982
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24238
23983
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/style",
|
|
24239
23984
|
"categories": ["#SVGNone"],
|
|
24240
|
-
"permittedRoles": {
|
|
24241
|
-
"summary": "WIP",
|
|
24242
|
-
"roles": []
|
|
24243
|
-
},
|
|
24244
|
-
"implicitRole": {
|
|
24245
|
-
"summary": "WIP",
|
|
24246
|
-
"role": false
|
|
24247
|
-
},
|
|
24248
23985
|
"permittedStructures": {
|
|
24249
23986
|
"summary": "Any elements or character data",
|
|
24250
23987
|
"tag": "style",
|
|
@@ -24254,6 +23991,14 @@
|
|
|
24254
23991
|
}
|
|
24255
23992
|
]
|
|
24256
23993
|
},
|
|
23994
|
+
"implicitRole": {
|
|
23995
|
+
"summary": "WIP",
|
|
23996
|
+
"role": false
|
|
23997
|
+
},
|
|
23998
|
+
"permittedRoles": {
|
|
23999
|
+
"summary": "WIP",
|
|
24000
|
+
"roles": []
|
|
24001
|
+
},
|
|
24257
24002
|
"omittion": false,
|
|
24258
24003
|
"globalAttrs": {
|
|
24259
24004
|
"#GlobalEventAttrs": true,
|
|
@@ -24285,14 +24030,6 @@
|
|
|
24285
24030
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24286
24031
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/svg",
|
|
24287
24032
|
"categories": ["#SVGContainer", "#SVGStructural"],
|
|
24288
|
-
"permittedRoles": {
|
|
24289
|
-
"summary": "WIP",
|
|
24290
|
-
"roles": []
|
|
24291
|
-
},
|
|
24292
|
-
"implicitRole": {
|
|
24293
|
-
"summary": "WIP",
|
|
24294
|
-
"role": false
|
|
24295
|
-
},
|
|
24296
24033
|
"permittedStructures": {
|
|
24297
24034
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
24298
24035
|
"tag": "svg",
|
|
@@ -24324,6 +24061,14 @@
|
|
|
24324
24061
|
}
|
|
24325
24062
|
]
|
|
24326
24063
|
},
|
|
24064
|
+
"implicitRole": {
|
|
24065
|
+
"summary": "WIP",
|
|
24066
|
+
"role": false
|
|
24067
|
+
},
|
|
24068
|
+
"permittedRoles": {
|
|
24069
|
+
"summary": "WIP",
|
|
24070
|
+
"roles": []
|
|
24071
|
+
},
|
|
24327
24072
|
"omittion": false,
|
|
24328
24073
|
"globalAttrs": {
|
|
24329
24074
|
"#HTMLGlobalAttrs": true,
|
|
@@ -24471,14 +24216,6 @@
|
|
|
24471
24216
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24472
24217
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/switch",
|
|
24473
24218
|
"categories": [],
|
|
24474
|
-
"permittedRoles": {
|
|
24475
|
-
"summary": "WIP",
|
|
24476
|
-
"roles": []
|
|
24477
|
-
},
|
|
24478
|
-
"implicitRole": {
|
|
24479
|
-
"summary": "WIP",
|
|
24480
|
-
"role": false
|
|
24481
|
-
},
|
|
24482
24219
|
"permittedStructures": {
|
|
24483
24220
|
"summary": "",
|
|
24484
24221
|
"tag": "switch",
|
|
@@ -24499,6 +24236,14 @@
|
|
|
24499
24236
|
}
|
|
24500
24237
|
]
|
|
24501
24238
|
},
|
|
24239
|
+
"implicitRole": {
|
|
24240
|
+
"summary": "WIP",
|
|
24241
|
+
"role": false
|
|
24242
|
+
},
|
|
24243
|
+
"permittedRoles": {
|
|
24244
|
+
"summary": "WIP",
|
|
24245
|
+
"roles": []
|
|
24246
|
+
},
|
|
24502
24247
|
"omittion": false,
|
|
24503
24248
|
"globalAttrs": {
|
|
24504
24249
|
"#HTMLGlobalAttrs": true,
|
|
@@ -24585,14 +24330,6 @@
|
|
|
24585
24330
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24586
24331
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/symbol",
|
|
24587
24332
|
"categories": ["#SVGContainer", "#SVGStructural"],
|
|
24588
|
-
"permittedRoles": {
|
|
24589
|
-
"summary": "WIP",
|
|
24590
|
-
"roles": []
|
|
24591
|
-
},
|
|
24592
|
-
"implicitRole": {
|
|
24593
|
-
"summary": "WIP",
|
|
24594
|
-
"role": false
|
|
24595
|
-
},
|
|
24596
24333
|
"permittedStructures": {
|
|
24597
24334
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elementsShape elementsStructural elementsGradient elements<a>, <altGlyphDef>, <clipPath>, <color-profile>, <cursor>, <filter>, <font>, <font-face>, <foreignObject>, <image>, <marker>, <mask>, <pattern>, <script>, <style>, <switch>, <text>, <view>",
|
|
24598
24335
|
"tag": "symbol",
|
|
@@ -24620,6 +24357,14 @@
|
|
|
24620
24357
|
}
|
|
24621
24358
|
]
|
|
24622
24359
|
},
|
|
24360
|
+
"implicitRole": {
|
|
24361
|
+
"summary": "WIP",
|
|
24362
|
+
"role": false
|
|
24363
|
+
},
|
|
24364
|
+
"permittedRoles": {
|
|
24365
|
+
"summary": "WIP",
|
|
24366
|
+
"roles": []
|
|
24367
|
+
},
|
|
24623
24368
|
"omittion": false,
|
|
24624
24369
|
"globalAttrs": {
|
|
24625
24370
|
"#HTMLGlobalAttrs": true,
|
|
@@ -24684,14 +24429,6 @@
|
|
|
24684
24429
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24685
24430
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text",
|
|
24686
24431
|
"categories": ["#SVGGraphics", "#SVGTextContent"],
|
|
24687
|
-
"permittedRoles": {
|
|
24688
|
-
"summary": "WIP",
|
|
24689
|
-
"roles": []
|
|
24690
|
-
},
|
|
24691
|
-
"implicitRole": {
|
|
24692
|
-
"summary": "WIP",
|
|
24693
|
-
"role": false
|
|
24694
|
-
},
|
|
24695
24432
|
"permittedStructures": {
|
|
24696
24433
|
"summary": "Character data and any number of the following elements, in any order:Animation elementsDescriptive elementsText content child elements<a>",
|
|
24697
24434
|
"tag": "text",
|
|
@@ -24713,6 +24450,14 @@
|
|
|
24713
24450
|
}
|
|
24714
24451
|
]
|
|
24715
24452
|
},
|
|
24453
|
+
"implicitRole": {
|
|
24454
|
+
"summary": "WIP",
|
|
24455
|
+
"role": false
|
|
24456
|
+
},
|
|
24457
|
+
"permittedRoles": {
|
|
24458
|
+
"summary": "WIP",
|
|
24459
|
+
"roles": []
|
|
24460
|
+
},
|
|
24716
24461
|
"omittion": false,
|
|
24717
24462
|
"globalAttrs": {
|
|
24718
24463
|
"#HTMLGlobalAttrs": true,
|
|
@@ -24848,14 +24593,6 @@
|
|
|
24848
24593
|
"namespace": "http://www.w3.org/2000/svg",
|
|
24849
24594
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/textPath",
|
|
24850
24595
|
"categories": ["#SVGTextContent", "#SVGTextContentChild"],
|
|
24851
|
-
"permittedRoles": {
|
|
24852
|
-
"summary": "WIP",
|
|
24853
|
-
"roles": []
|
|
24854
|
-
},
|
|
24855
|
-
"implicitRole": {
|
|
24856
|
-
"summary": "WIP",
|
|
24857
|
-
"role": false
|
|
24858
|
-
},
|
|
24859
24596
|
"permittedStructures": {
|
|
24860
24597
|
"summary": "Character data and any number of the following elements, in any order:Descriptive elements<a>, <altGlyph>, <animate>, <animateColor>, <set>, <tref>, <tspan>",
|
|
24861
24598
|
"tag": "textPath",
|
|
@@ -24878,6 +24615,14 @@
|
|
|
24878
24615
|
}
|
|
24879
24616
|
]
|
|
24880
24617
|
},
|
|
24618
|
+
"implicitRole": {
|
|
24619
|
+
"summary": "WIP",
|
|
24620
|
+
"role": false
|
|
24621
|
+
},
|
|
24622
|
+
"permittedRoles": {
|
|
24623
|
+
"summary": "WIP",
|
|
24624
|
+
"roles": []
|
|
24625
|
+
},
|
|
24881
24626
|
"omittion": false,
|
|
24882
24627
|
"globalAttrs": {
|
|
24883
24628
|
"#HTMLGlobalAttrs": true,
|
|
@@ -25030,14 +24775,6 @@
|
|
|
25030
24775
|
"namespace": "http://www.w3.org/2000/svg",
|
|
25031
24776
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/title",
|
|
25032
24777
|
"categories": ["#SVGDescriptive"],
|
|
25033
|
-
"permittedRoles": {
|
|
25034
|
-
"summary": "WIP",
|
|
25035
|
-
"roles": []
|
|
25036
|
-
},
|
|
25037
|
-
"implicitRole": {
|
|
25038
|
-
"summary": "WIP",
|
|
25039
|
-
"role": false
|
|
25040
|
-
},
|
|
25041
24778
|
"permittedStructures": {
|
|
25042
24779
|
"summary": "Any elements or character data",
|
|
25043
24780
|
"tag": "title",
|
|
@@ -25047,6 +24784,14 @@
|
|
|
25047
24784
|
}
|
|
25048
24785
|
]
|
|
25049
24786
|
},
|
|
24787
|
+
"implicitRole": {
|
|
24788
|
+
"summary": "WIP",
|
|
24789
|
+
"role": false
|
|
24790
|
+
},
|
|
24791
|
+
"permittedRoles": {
|
|
24792
|
+
"summary": "WIP",
|
|
24793
|
+
"roles": []
|
|
24794
|
+
},
|
|
25050
24795
|
"omittion": false,
|
|
25051
24796
|
"globalAttrs": {
|
|
25052
24797
|
"#GlobalEventAttrs": true,
|
|
@@ -25060,6 +24805,11 @@
|
|
|
25060
24805
|
"namespace": "http://www.w3.org/2000/svg",
|
|
25061
24806
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
25062
24807
|
"categories": [],
|
|
24808
|
+
"permittedStructures": {
|
|
24809
|
+
"summary": "",
|
|
24810
|
+
"tag": "tref",
|
|
24811
|
+
"contents": false
|
|
24812
|
+
},
|
|
25063
24813
|
"permittedRoles": {
|
|
25064
24814
|
"summary": "",
|
|
25065
24815
|
"roles": []
|
|
@@ -25068,11 +24818,6 @@
|
|
|
25068
24818
|
"summary": "",
|
|
25069
24819
|
"role": false
|
|
25070
24820
|
},
|
|
25071
|
-
"permittedStructures": {
|
|
25072
|
-
"summary": "",
|
|
25073
|
-
"tag": "tref",
|
|
25074
|
-
"contents": false
|
|
25075
|
-
},
|
|
25076
24821
|
"omittion": false,
|
|
25077
24822
|
"globalAttrs": {},
|
|
25078
24823
|
"attributes": {},
|
|
@@ -25083,14 +24828,6 @@
|
|
|
25083
24828
|
"namespace": "http://www.w3.org/2000/svg",
|
|
25084
24829
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/tspan",
|
|
25085
24830
|
"categories": ["#SVGTextContent", "#SVGTextContentChild"],
|
|
25086
|
-
"permittedRoles": {
|
|
25087
|
-
"summary": "WIP",
|
|
25088
|
-
"roles": []
|
|
25089
|
-
},
|
|
25090
|
-
"implicitRole": {
|
|
25091
|
-
"summary": "WIP",
|
|
25092
|
-
"role": false
|
|
25093
|
-
},
|
|
25094
24831
|
"permittedStructures": {
|
|
25095
24832
|
"summary": "Character data and any number of the following elements, in any order:Descriptive elements<a>, <altGlyph>, <animate>, <animateColor>, <set>, <tref>, <tspan>",
|
|
25096
24833
|
"tag": "tspan",
|
|
@@ -25109,6 +24846,14 @@
|
|
|
25109
24846
|
}
|
|
25110
24847
|
]
|
|
25111
24848
|
},
|
|
24849
|
+
"implicitRole": {
|
|
24850
|
+
"summary": "WIP",
|
|
24851
|
+
"role": false
|
|
24852
|
+
},
|
|
24853
|
+
"permittedRoles": {
|
|
24854
|
+
"summary": "WIP",
|
|
24855
|
+
"roles": []
|
|
24856
|
+
},
|
|
25112
24857
|
"omittion": false,
|
|
25113
24858
|
"globalAttrs": {
|
|
25114
24859
|
"#HTMLGlobalAttrs": true,
|
|
@@ -25242,14 +24987,6 @@
|
|
|
25242
24987
|
"namespace": "http://www.w3.org/2000/svg",
|
|
25243
24988
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use",
|
|
25244
24989
|
"categories": ["#SVGGraphics", "#SVGGraphicsReferencing", "#SVGStructural"],
|
|
25245
|
-
"permittedRoles": {
|
|
25246
|
-
"summary": "WIP",
|
|
25247
|
-
"roles": []
|
|
25248
|
-
},
|
|
25249
|
-
"implicitRole": {
|
|
25250
|
-
"summary": "WIP",
|
|
25251
|
-
"role": false
|
|
25252
|
-
},
|
|
25253
24990
|
"permittedStructures": {
|
|
25254
24991
|
"summary": "Any number of the following elements, in any order:Animation elementsDescriptive elements",
|
|
25255
24992
|
"tag": "use",
|
|
@@ -25266,6 +25003,14 @@
|
|
|
25266
25003
|
}
|
|
25267
25004
|
]
|
|
25268
25005
|
},
|
|
25006
|
+
"implicitRole": {
|
|
25007
|
+
"summary": "WIP",
|
|
25008
|
+
"role": false
|
|
25009
|
+
},
|
|
25010
|
+
"permittedRoles": {
|
|
25011
|
+
"summary": "WIP",
|
|
25012
|
+
"roles": []
|
|
25013
|
+
},
|
|
25269
25014
|
"omittion": false,
|
|
25270
25015
|
"globalAttrs": {
|
|
25271
25016
|
"#HTMLGlobalAttrs": true,
|
|
@@ -25378,14 +25123,6 @@
|
|
|
25378
25123
|
"namespace": "http://www.w3.org/2000/svg",
|
|
25379
25124
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element/view",
|
|
25380
25125
|
"categories": [],
|
|
25381
|
-
"permittedRoles": {
|
|
25382
|
-
"summary": "WIP",
|
|
25383
|
-
"roles": []
|
|
25384
|
-
},
|
|
25385
|
-
"implicitRole": {
|
|
25386
|
-
"summary": "WIP",
|
|
25387
|
-
"role": false
|
|
25388
|
-
},
|
|
25389
25126
|
"permittedStructures": {
|
|
25390
25127
|
"summary": "",
|
|
25391
25128
|
"tag": "view",
|
|
@@ -25395,6 +25132,14 @@
|
|
|
25395
25132
|
}
|
|
25396
25133
|
]
|
|
25397
25134
|
},
|
|
25135
|
+
"implicitRole": {
|
|
25136
|
+
"summary": "WIP",
|
|
25137
|
+
"role": false
|
|
25138
|
+
},
|
|
25139
|
+
"permittedRoles": {
|
|
25140
|
+
"summary": "WIP",
|
|
25141
|
+
"roles": []
|
|
25142
|
+
},
|
|
25398
25143
|
"omittion": false,
|
|
25399
25144
|
"globalAttrs": {
|
|
25400
25145
|
"#HTMLGlobalAttrs": true,
|
|
@@ -25432,6 +25177,11 @@
|
|
|
25432
25177
|
"namespace": "http://www.w3.org/2000/svg",
|
|
25433
25178
|
"cite": "https://developer.mozilla.org/en-US/docs/Web/SVG/Element#obsolete_and_deprecated_elements",
|
|
25434
25179
|
"categories": [],
|
|
25180
|
+
"permittedStructures": {
|
|
25181
|
+
"summary": "",
|
|
25182
|
+
"tag": "vkern",
|
|
25183
|
+
"contents": false
|
|
25184
|
+
},
|
|
25435
25185
|
"permittedRoles": {
|
|
25436
25186
|
"summary": "",
|
|
25437
25187
|
"roles": []
|
|
@@ -25440,11 +25190,6 @@
|
|
|
25440
25190
|
"summary": "",
|
|
25441
25191
|
"role": false
|
|
25442
25192
|
},
|
|
25443
|
-
"permittedStructures": {
|
|
25444
|
-
"summary": "",
|
|
25445
|
-
"tag": "vkern",
|
|
25446
|
-
"contents": false
|
|
25447
|
-
},
|
|
25448
25193
|
"omittion": false,
|
|
25449
25194
|
"globalAttrs": {},
|
|
25450
25195
|
"attributes": {},
|