From 9947a621f43a3fd91cb25c93df1525b2bdb86a89 Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Thu, 2 Mar 2017 17:05:37 +0200 Subject: [PATCH 01/11] Move convertor to tools --- Makefile | 4 +++- README.md | 4 ++-- {convertor => tools/convertor}/.gitignore | 0 {convertor => tools/convertor}/convert-yaml-to-ac-html.js | 0 {convertor => tools/convertor}/lib/merger.js | 0 {convertor => tools/convertor}/package.json | 0 6 files changed, 5 insertions(+), 3 deletions(-) rename {convertor => tools/convertor}/.gitignore (100%) rename {convertor => tools/convertor}/convert-yaml-to-ac-html.js (100%) rename {convertor => tools/convertor}/lib/merger.js (100%) rename {convertor => tools/convertor}/package.json (100%) diff --git a/Makefile b/Makefile index b14e3a3..d47187d 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,7 @@ SOURCES = \ ./src/attribute-values.yaml all: - node ./convertor/convert-yaml-to-ac-html.js --out ./html-stuff/ ${SOURCES} + node ./tools/convertor/convert-yaml-to-ac-html.js --out ./html-stuff/ ${SOURCES} +setup: + (cd ./tools/convertor/ && npm install) diff --git a/README.md b/README.md index 59036b7..92b33fe 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ and located in `src/` directory. Edit them, but not `html-stuff/` files, they ar You should have nodejs installed in your system to make convertor work. ```bash -# Install dependencies for convertor -(cd convertor/ && npm install) +# Install dependencies for convertor (node.js dependencies) +make setup # Convert make ``` diff --git a/convertor/.gitignore b/tools/convertor/.gitignore similarity index 100% rename from convertor/.gitignore rename to tools/convertor/.gitignore diff --git a/convertor/convert-yaml-to-ac-html.js b/tools/convertor/convert-yaml-to-ac-html.js similarity index 100% rename from convertor/convert-yaml-to-ac-html.js rename to tools/convertor/convert-yaml-to-ac-html.js diff --git a/convertor/lib/merger.js b/tools/convertor/lib/merger.js similarity index 100% rename from convertor/lib/merger.js rename to tools/convertor/lib/merger.js diff --git a/convertor/package.json b/tools/convertor/package.json similarity index 100% rename from convertor/package.json rename to tools/convertor/package.json From e3656ab391bc85bc5e3a41c60fa9ee178536e66a Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Thu, 2 Mar 2017 18:05:41 +0200 Subject: [PATCH 02/11] Add svg converter script --- Makefile | 8 +- tools/convertor/convert-yaml-to-ac-html.js | 18 +- tools/convertor/lib/merger.js | 9 +- tools/svg/Proposals-AttributeWhitespace.wiki | 798 +++++++++++++++++++ tools/svg/wiki2yaml.pl | 91 +++ 5 files changed, 916 insertions(+), 8 deletions(-) create mode 100644 tools/svg/Proposals-AttributeWhitespace.wiki create mode 100755 tools/svg/wiki2yaml.pl diff --git a/Makefile b/Makefile index d47187d..6cd4ba0 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,17 @@ SOURCES = \ + ./src/svg.yaml \ ./src/tags.yaml \ ./src/events.yaml \ ./src/attributes.yaml \ ./src/attribute-values.yaml +IGNORE_TAG_ATTRS = ./src/ignore-warn-list all: - node ./tools/convertor/convert-yaml-to-ac-html.js --out ./html-stuff/ ${SOURCES} + node ./tools/convertor/convert-yaml-to-ac-html.js --ignore ${IGNORE_TAG_ATTRS} --out ./html-stuff/ ${SOURCES} setup: (cd ./tools/convertor/ && npm install) + +# some dev tool +svg-from-wiki: + ./tools/svg/wiki2yaml.pl ./tools/svg/Proposals-AttributeWhitespace.wiki > ./src/svg.yaml diff --git a/tools/convertor/convert-yaml-to-ac-html.js b/tools/convertor/convert-yaml-to-ac-html.js index ad583bc..c60f02b 100755 --- a/tools/convertor/convert-yaml-to-ac-html.js +++ b/tools/convertor/convert-yaml-to-ac-html.js @@ -12,7 +12,7 @@ var mergeYamls = require('./lib/merger.js'), var MAX_DOC_SIZE = 250; // Size of documentation. If greater than create separate doc file if (! argv._.length || !argv.out) { - console.log('Usage: build.js --out file1.yaml ...'); + console.log('Usage: build.js [--ignore ] --out file1.yaml ...'); process.exit(0); } @@ -21,10 +21,22 @@ var FILE_TAG_LIST = 'html-tag-list', DIR_ATTRIBUTES_VALUES = 'html-attributes-complete', DIR_ATTRIBUTES = 'html-attributes-list', DIR_ATTRIBUTES_LARGE_DOC = 'html-attributes-short-docs'; - + function main(argv) { var yamls = _.map(argv._, loadYAML); - var data = mergeYamls(yamls); + + var ignoreTagAtrr = argv.ignore ? fs.readFileSync(argv.ignore, 'utf-8') + .split('\n') + .map(function(it) { + return it.replace(/^\s*/, '').replace(/\s*$/, ''); + }) + .reduce(function convertArrToHash(map, v) { + map[v] = true; + return map; + }, {}) + : []; + var data = mergeYamls(yamls, ignoreTagAtrr); + createStuffFiles(data, argv.out); diff --git a/tools/convertor/lib/merger.js b/tools/convertor/lib/merger.js index 88d5aa0..1eb46ca 100644 --- a/tools/convertor/lib/merger.js +++ b/tools/convertor/lib/merger.js @@ -13,13 +13,14 @@ var T_ERROR = colors.red( '[ERROR] '), * @param {Object} yamls[] * @param {String} yamls[].filename - filename of yaml file * @param {Object} yamls[].data - content of yaml file - * + * @param {String} ignoreTagAtrr{} - Obj where keys is element-attribute that not cause warning + * * @returns {Object} o * @returns {Object} o.tags - docs for tags * @returns {Object} o.attributes - docs for tag-attribute * @returns {Object} o.values - docs for attribute values */ -function mergeYamls(yamls) { +function mergeYamls(yamls, ignoreTagAtrr) { var resAttributes = {}, resTags = {}, resValues = {}; @@ -59,7 +60,7 @@ function mergeYamls(yamls) { // funcs function processTagProps(doc, tagName) { - if (resTags[tagName]) { + if (resTags[tagName] && !ignoreTagAtrr[tagName]) { warning('Duplicate documentation for tag "' + colors.magenta(tagName) + '", overriding doc! Maybe you should place doc in one place?'); console.log('Old documentation: ' + colors.red(resTags[tagName])); console.log('New documentation: ' + colors.green(doc)); @@ -112,7 +113,7 @@ function mergeYamls(yamls) { if (!resAttributes[tagName]) { resAttributes[tagName] = {}; } - if (resAttributes[tagName][attributeName]) { + if (resAttributes[tagName][attributeName] && !ignoreTagAtrr[key]) { warning('Duplicate documentation for tag\'s attribute "' + colors.magenta(key) + '", overriding doc! Maybe you should place doc in one place?'); console.log('Old documentation: ' + colors.red(resAttributes[tagName][attributeName])); console.log('New documentation: ' + colors.green(doc)); diff --git a/tools/svg/Proposals-AttributeWhitespace.wiki b/tools/svg/Proposals-AttributeWhitespace.wiki new file mode 100644 index 0000000..22992ff --- /dev/null +++ b/tools/svg/Proposals-AttributeWhitespace.wiki @@ -0,0 +1,798 @@ +https://www.w3.org/Graphics/SVG/WG/wiki/index.php?title=Proposals/AttributeWhitespace&action=editThis is for [http://www.w3.org/Graphics/SVG/WG/track/issues/2447 ISSUE-2447]. + +Based on [https://svgwg.org/svg2-draft/attindex.html SVG2 attribute appendix] (snapshot @ Feb 27, 2014). + +For reference, [http://www.w3.org/TR/html5/index.html#attributes-1 HTML5 attributes]. + +In the tables below, lightgreen row background means that leading and trailing whitespace is allowed. + +Note: the attributes corresponding to the removed custom shaders in Filter Effects have been omitted. + +== Float values, type: [https://svgwg.org/svg2-draft/types.html#Number ] == + +'''Proposal:''' +* For consumer UAs (browsers, viewers): strip leading whitespace and ignore trailing garbage, DOM getters must normalize the values to valid values. +* For producer UAs (validators, editors): leading and trailing whitespace (and garbage) is invalid. + +HTML testcase: [http://jsfiddle.net/wxJa9/] (drag the slider, first one being the reference. FF, Chrome, Opera(Presto): not allowed. IE: allowed) Note: html has just a few float attributes. + +SVG testcase: [http://jsfiddle.net/hxz46/] (FF: not allowed. Chrome: not allowed. IE: allowed, except for garbage. Opera(Presto): allowed. + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| accent-height || font-face || +|- +| alphabetic || font-face || +|- +| amplitude || feFuncA, feFuncB, feFuncG, feFuncR || +|- +| aria-valuemax || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || +|- +| aria-valuemin || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || +|- +| aria-valuenow || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || +|- +| ascent || font-face || +|- +| azimuth || feDistantLight || +|- +| baseFrequency || feTurbulence || +|- +| bias || feConvolveMatrix || +|- +| cap-height || font-face || +|- +| descent || font-face || +|- +| diffuseConstant || feDiffuseLighting || +|- +| divisor || feConvolveMatrix || +|- +| elevation || feDistantLight || +|- +| exponent || feFuncA, feFuncB, feFuncG, feFuncR || +|- +| filterRes || filter || +|- +| hanging || font-face || +|- +| horiz-adv-x || font, glyph, missing-glyph || +|- +| horiz-origin-x || font || +|- +| horiz-origin-y || font || +|- +| ideographic || font-face || +|- +| intercept || feFuncA, feFuncB, feFuncG, feFuncR || +|- +| k || hkern, vkern || +|- +| k1 || feComposite || +|- +| k2 || feComposite || +|- +| k3 || feComposite || +|- +| k4 || feComposite || +|- +| kernelMatrix || feConvolveMatrix || +|- +| kernelUnitLength || feConvolveMatrix, feDiffuseLighting, feSpecularLighting || +|- +| keyPoints || animateMotion || +|- +| keySplines || animate, animateMotion, animateTransform || (doesn't say of what except in prose, but are 4 control points per spline, so essentially ) +|- +| keyTimes || animate, animateMotion, animateTransform || (essentially with additional restrictions on the number of items in the list and the number range) +|- +| limitingConeAngle || feSpotLight || +|- +| mathematical || font-face || +|- +| offset || feFuncA, feFuncB, feFuncG, feFuncR || +|- +| offset || stop || | +|- +| order || feConvolveMatrix || +|- +| overline-position || font-face || +|- +| overline-thickness || font-face || +|- +| pathLength || path || +|- +| pointsAtX || feSpotLight || +|- +| pointsAtY || feSpotLight || +|- +| pointsAtZ || feSpotLight || +|- +| radius || feMorphology || +|- +| repeatCount || animate, animateMotion, animateTransform, set || | indefinite +|- +| rotate || altGlyph, text, tspan, tref || +|- +| rotate || animateMotion || | auto | auto-reverse +|- +| scale || feDisplacementMap || +|- +| seed || feTurbulence || +|- +| slope || feFuncA, feFuncB, feFuncG, feFuncR, font-face || +|- +| specularConstant || feSpecularLighting || +|- +| specularExponent || feSpecularLighting, feSpotLight || +|- +| stdDeviation || feDropShadow, feGaussianBlur || +|- +| stemh || font-face || +|- +| stemv || font-face || +|- +| strikethrough-position || font-face || +|- +| strikethrough-thickness || font-face || +|- +| surfaceScale || feDiffuseLighting, feSpecularLighting || +|- +| tabindex || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, source, svg, switch, symbol, text, textPath, track, tref, tspan, use, video, view || (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +|- +| tableValues || feFuncA, feFuncB, feFuncG, feFuncR || +|- +| underline-position || font-face || +|- +| underline-thickness || font-face || +|- +| units-per-em || font-face || +|- +| v-alphabetic || font-face || +|- +| v-hanging || font-face || +|- +| v-ideographic || font-face || +|- +| v-mathematical || font-face || +|- +| values || feColorMatrix || +|- +| version || svg || +|- +| vert-adv-y || font, glyph, missing-glyph || +|- +| vert-origin-x || font, glyph, missing-glyph || +|- +| vert-origin-y || font, glyph, missing-glyph || +|- +| viewBox || marker, pattern, svg, symbol, view || a list of four numbers , , and , separated by whitespace and/or a comma +|- +| x || fePointLight, feSpotLight, glyphRef || +|- +| x-height || font-face || +|- +| y || fePointLight, feSpotLight, glyphRef || +|- +| z || fePointLight, feSpotLight || +|} + +== Angle values == + +'''Proposal:''' Treat the same as the values. + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| rotate || hatch || +|} + +== Integer values, type: [https://svgwg.org/svg2-draft/types.html#Integer ] == + +'''Proposal:''' +* For consumer UAs (browsers, viewers): strip leading whitespace and ignore trailing garbage, DOM getters must normalize the values to valid values. +* For producer UAs (validators, editors): leading and trailing whitespace (and garbage) is invalid. + +HTML testcase: [http://jsfiddle.net/6BQGF/] (All: allowed, garbage is ignored) + +SVG testcase: [http://jsfiddle.net/Gaw2P/] (FF: not allowed. IE: allowed, except for garbage => default. Chrome: allowed, except for garbage => no output) + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| aria-level || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || integer +|- +| aria-posinset || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || integer +|- +| aria-setsize || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || integer +|- +| numOctaves || feTurbulence || +|- +| panose-1 || font-face || []{10} +|- +| targetX || feConvolveMatrix || +|- +| targetY || feConvolveMatrix || +|} + +== Length values, type: [https://svgwg.org/svg2-draft/types.html#DataTypeLength ] == + +'''Proposal:''' +* For consumer UAs (browsers, viewers): strip leading whitespace and ignore trailing garbage, DOM getters must normalize the values to valid values. +* For producer UAs (validators, editors): leading and trailing whitespace (and garbage) is invalid. + +SVG testcase: [http://jsfiddle.net/hY3tP/] (FF, Chrome: not allowed. Opera(Presto), IE: allowed, except garbage.) + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| canvasHeight || canvas || +|- +| canvasWidth || canvas || +|- +| cx || circle, ellipse, radialGradient || +|- +| cy || circle, ellipse, radialGradient || +|- +| dx || feDropShadow, feOffset || +|- +| dx || altGlyph, glyphRef, text, tref, tspan || [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +|- +| dy || feDropShadow, feOffset || +|- +| dy || altGlyph, glyphRef, text, tref, tspan || [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +|- +| fr || radialGradient || +|- +| frameHeight || iframe || +|- +| frameWidth || iframe || +|- +| fx || radialGradient || +|- +| fy || radialGradient || +|- +| height || canvas, iframe, image, video || | auto +|- +| height || feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter, foreignObject, pattern, rect, text, use || +|- +| height || mask, svg || | (Presumably related to the issue about percentages in [https://svgwg.org/svg2-draft/types.html#DataTypeLength]) +|- +| markerHeight || marker || +|- +| markerWidth || marker || +|- +| offset || hatchPath || +|- +| pitch || hatchPath || currently undefined (but should probably be either or ) +|- +| position || marker || | +|- +| r || circle, radialGradient || +|- +| refX || marker || +|- +| refY || marker || +|- +| rx || ellipse, rect || +|- +| ry || ellipse, rect || +|- +| startOffset || textPath || +|- +| textLength || text, textPath, tref, tspan || +|- +| width || canvas, iframe, image, video || | auto +|- +| width || foreignObject, rect, pattern, text, use, filter, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence || +|- +| width || mask, svg || | +|- +| x || altGlyph, text, tref, tspan || (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) +|- +| x || audio, canvas, cursor, foreignObject, hatch, iframe, image, pattern, rect, svg, use, video || +|- +| x || filter, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence || +|- +| x || mask || | +|- +| x || meshGradient || ISSUE: currently undefined (but should probably be ) +|- +| x1 || line, linearGradient || +|- +| x2 || line, linearGradient || +|- +| y || altGlyph, text, tref, tspan || (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) +|- +| y || audio, canvas, cursor, foreignObject, hatch, iframe, image, pattern, rect, svg, use, video || +|- +| y || filter, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence || +|- +| y || mask || | +|- +| y || meshGradient || ISSUE: currently undefined (but should probably be ) +|- +| y1 || line, linearGradient || +|- +| y2 || line, linearGradient || +|} + +== Enumerated values == + +Proposal: Don't allow leading or trailing whitespace. + +HTML testcase: [http://jsfiddle.net/eT7jz/] (all: not allowed) + +SVG testcase: [http://jsfiddle.net/54pz5/] (tweak the clipPathUnits attribute, all: not allowed) + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| accumulate || animate, animateMotion, animateTransform || none | sum +|- +| additive || animate, animateMotion, animateTransform || replace | sum +|- +| arabic-form || glyph || initial | medial | terminal | isolated +|- +| aria-atomic || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-autocomplete || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || inline | list | both | none +|- +| aria-busy || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-checked || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false | mixed | undefined +|- +| aria-disabled || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-dropeffect || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || copy | move | link | execute | popup | none +|- +| aria-expanded || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false | undefined +|- +| aria-grabbed || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false | undefined +|- +| aria-haspopup || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-hidden || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-invalid || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false | grammar | spelling +|- +| aria-live || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || off | polite | assertive +|- +| aria-multiline || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-multiselectable || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-orientation || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || horizontal | vertical +|- +| aria-pressed || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false | mixed | undefined +|- +| aria-readonly || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-relevant || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || additions | removals | text | all +|- +| aria-required || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false +|- +| aria-selected || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || true | false | undefined +|- +| aria-sort || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || ascending | descending | none | other +|- +| attributeType || animate, animateTransform, set || CSS | XML | auto +|- +| calcMode || animate, animateMotion, animateTransform || discrete | linear | paced | spline +|- +| clipPathUnits || clipPath || userSpaceOnUse | objectBoundingBox +|- +| crossorigin || audio, video || anonymous | use-credentials (Note, in html5 this is a [http://www.w3.org/TR/html5/infrastructure.html#cors-settings-attribute CORS settings attribute]) +|- +| edgeMode || feConvolveMatrix || duplicate | wrap | none +|- +| fill || animate, animateMotion, animateTransform, set || freeze | remove +|- +| filterUnits || filter || userSpaceOnUse | objectBoundingBox +|- +| font-stretch || font-face || all | [ normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded] [, [ normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded] ]* +|- +| font-style || font-face || all | [ normal | italic | oblique] [, [normal | italic | oblique]]* +|- +| font-variant || font-face || [normal | small-caps] [,[normal | small-caps]]* +|- +| font-weight || font-face || all | [normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900] [, [normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900]]* +|- +| gradientUnits || linearGradient, meshGradient, radialGradient || userSpaceOnUse | objectBoundingBox +|- +| hatchContentUnits || hatch || userSpaceOnUse | objectBoundingBox +|- +| hatchUnits || hatch || userSpaceOnUse | objectBoundingBox +|- +| kind || track || subtitles | captions | descriptions | chapters | metadata +|- +| lengthAdjust || text, textPath, tref, tspan || spacing | spacingAndGlyphs +|- +| markerUnits || marker || strokeWidth | userSpaceOnUse +|- +| maskContentUnits || mask || userSpaceOnUse | objectBoundingBox +|- +| maskUnits || mask || userSpaceOnUse | objectBoundingBox +|- +| method || textPath || align | stretch +|- +| mode || feBlend || normal | multiply | screen | darken | lighten +|- +| operator || feComposite || over | in | out | atop | xor | arithmetic +|- +| operator || feMorphology || erode | dilate +|- +| orientation || glyph || h | v +|- +| origin || animateMotion || default (the attribute "has no effect in SVG" according to spec, do we need to keep it at all?) +|- +| patternContentUnits || pattern || userSpaceOnUse | objectBoundingBox +|- +| patternUnits || pattern || userSpaceOnUse | objectBoundingBox +|- +| playbackOrder || svg || forwardOnly | all +|- +| preload || audio, video || none | metadata | auto +|- +| preserveAlpha || feConvolveMatrix || true | false +|- +| preserveAspectRatio || canvas, feImage, iframe, image, marker, pattern, svg, symbol, video, view || [defer] [] +|- +| primitiveUnits || filter || userSpaceOnUse | objectBoundingBox +|- +| requiredFeatures || a, altGlyph, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, discard, ellipse, foreignObject, g, iframe, image, line, mask, path, polygon, polyline, rect, set, svg, switch, text, textPath, tref, tspan, use, video (should be any element) || list-of-features (whitespace separated feature strings) +|- +| restart || animate, animateMotion, animateTransform, set || always | whenNotActive | never +|- +| role || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +|- +| spacing || textPath || auto | exact +|- +| spreadMethod || linearGradient, radialGradient || pad | reflect | repeat +|- +| stitchTiles || feTurbulence || stitch | noStitch +|- +| timelineBegin || svg || onLoad | onStart +|- +| type || animateTransform || translate | scale | rotate | skewX | skewY +|- +| type || feColorMatrix || matrix | saturate | hueRotate | luminanceToAlpha +|- +| type || feFuncA, feFuncB, feFuncG, feFuncR || identity | table | discrete | linear | gamma +|- +| type || feTurbulence || fractalNoise | turbulence +|- +| xChannelSelector || feDisplacementMap || R | G | B | A +|- +| xlink:actuate || a || onRequest +|- +| xlink:show || a, altGlyph, animate, animateMotion, animateTransform, cursor, feImage, filter, font-face-uri, glyphRef, hatch, image, linearGradient, meshGradient, mpath, pattern, radialGradient, script, set, textPath, tref, use || new | replace | embed | other | none +|- +| xlink:type || a, altGlyph, animate, animateMotion, animateTransform, cursor, feImage, filter, font-face-uri, glyphRef, hatch, image, linearGradient, meshGradient, mpath, pattern, radialGradient, script, set, textPath, tref, use || simple +|- +| xml:space || a, altGlyph, altGlyphDef, altGlyphItem, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, cursor, defs, desc, discard, ellipse, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDistantLight, feDropShadow, feFlood, feFuncA, feFuncB, feFuncG, feFuncR, feGaussianBlur, feImage, feMerge, feMergeNode, feMorphology, feOffset, fePointLight, feSpecularLighting, feSpotLight, feTile, feTurbulence, filter, font, font-face, font-face-format, font-face-name, font-face-src, font-face-uri, foreignObject, g, glyph, glyphRef, hatch, hatchPath, hkern, iframe, image, line, linearGradient, marker, mask, meshGradient, meshPatch, meshRow, metadata, missing-glyph, mpath, path, pattern, polygon, polyline, radialGradient, rect, script, set, solidColor, source, stop, style, svg, switch, symbol, text, textPath, title, track, tref, tspan, use, video, view, vkern || default | preserve +|- +| yChannelSelector || feDisplacementMap || R | G | B | A +|- +| zoomAndPan || svg, view || disable | magnify +|} + +== Boolean values == + +[http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#boolean-attribute Boolean attributes] in HTML5 are empty, or have the attribute name as the value. Whitespace is not allowed. Neither are the values "true" and "false". + +HTML testcase: [http://jsfiddle.net/Jyp9S/] (all: not allowed) + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| autoplay || audio, video || +|- +| controls || audio, video || +|- +| default || track || +|- +| loop || audio, video || +|- +| muted || audio, video || +|- +| seamless || iframe || +|} + +== ID values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| aria-activedescendant || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || ID +|- +| aria-controls || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || list of whitespace separated IDs +|- +| aria-describedby || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || list of whitespace separated IDs +|- +| aria-flowto || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || list of whitespace separated IDs +|- +| aria-labelledby || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || list of whitespace separated IDs +|- +| aria-owns || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || list of whitespace separated IDs +|- +| id || all elements || name (Issue in spec to define the term 'name' [https://svgwg.org/svg2-draft/struct.html#IDAttribute]) +|} + +== Text values == + +HTML/SVG testcase: [http://jsfiddle.net/VWE4b/] (all: allowed) + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- style="background-color: #cfc;" +| aria-label || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || string +|- style="background-color: #cfc;" +| aria-valuetext || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || string +|- +| attributeName || animate, animateTransform, set || +|- style="background-color: #cfc;" +| baseProfile || svg || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- style="background-color: #cfc;" +| bbox || font-face || +|- style="background-color: yellow;" +| by || animate, animateMotion, animateTransform || [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +|- +| class || a, altGlyph, audio, canvas, circle, clipPath, defs, desc, ellipse, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter, font, foreignObject, g, glyph, glyphRef, hatch, hatchPath, iframe, image, line, linearGradient, marker, mask, meshGradient, meshPatch, meshRow, missing-glyph, path, pattern, polygon, polyline, radialGradient, rect, solidColor, source, stop, svg, switch, symbol, text, textPath, title, track, tref, tspan, use, video || whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +|- style="background-color: #cfc;" +| font-family || font-face || +|- style="background-color: #cfc;" +| font-size || font-face || +|- style="background-color: #cfc;" +| format || altGlyph, glyphRef || +|- style="background-color: yellow;" +| from || animate, animateMotion, animateTransform || [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +|- +| g1 || hkern, vkern || [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +|- +| g2 || hkern, vkern || [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +|- +| glyph-name || hkern, vkern || [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +|- style="background-color: #cfc;" +| glyphRef || altGlyph, glyphRef || +|- +| in || feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feGaussianBlur, feMorphology, feOffset, feSpecularLighting, feTile || SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +|- +| in2 || feBlend, feComposite, feDisplacementMap || SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +|- style="background-color: #cfc;" +| label || track || [http://www.w3.org/TR/html5/dom.html#attribute-text Text] ([http://www.w3.org/TR/html5/embedded-content-0.html#attr-track-label cannot be the empty string]) +|- style="background-color: #cfc;" +| mediagroup || audio, video || [http://www.w3.org/TR/html5/dom.html#attribute-text Text] +|- style="background-color: #cfc;" +| name || font-face-name || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| result || eBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence || (unclear if leading & trailing whitespace is stripped or not) +|- style="background-color: #cfc;" +| sandbox || iframe || [http://www.w3.org/TR/html5/infrastructure.html#unordered-set-of-unique-space-separated-tokens Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of "allow-forms", "allow-pointer-lock", "allow-popups", "allow-same-origin", "allow-scripts and "allow-top-navigation"] +|- style="background-color: #cfc;" +| string || font-face-name || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| target || a || _replace | _self | _parent | _top | _blank | +|- style="background-color: #cfc;" +| title || audio, iframe, track, video || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] (in html5: Text) +|- +| title || style || [https://svgwg.org/svg2-draft/styling.html#StyleElementTitleAttribute advisory-title] (in html5: Text) +|- style="background-color: yellow;" +| to || animate, animateMotion, animateTransform || [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +|- +| to || set || (svg doesn't state that leading and trailing whitespace is ignored) +|- +| type || script, style || content-type (in HTML5: [http://www.w3.org/TR/html5/infrastructure.html#valid-mime-type valid MIME type]) +|- +| type || source || [http://www.w3.org/TR/html5/infrastructure.html#valid-mime-type valid MIME type] +|- +| u1 || hkern, vkern || [ | ] [, [ | ] ]* +|- +| u2 || hkern, vkern || [ | ] [, [ | ] ]* +|- +| unicode || glyph || +|- +| unicode-range || font-face || [, ]* +|- style="background-color: yellow;" +| values || animate, animateMotion, animateTransform || [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#ValuesAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +|- +| viewTarget || view || +|- +| widths || font-face || +|- +| xlink:title || a, altGlyph, animate, animateMotion, animateTransform, cursor, feImage, filter, font-face-uri, glyphRef, hatch, image, linearGradient, meshGradient, mpath, pattern, radialGradient, script, set, textPath, tref, use || +|- +| xlink:title || source || +|} + +== Event handler content attribute values == + +The event attributes should be defined to be [http://www.w3.org/TR/html5/webappapis.html#event-handler-content-attributes event handler content attributes] to match html. + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| onabort || svg || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onbegin || animate, animateMotion, animateTransform, set || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onclick || a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onend || animate, animateMotion, animateTransform, set || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onerror || svg (should be any element, or alternatively the 'structurally external' elements) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onfocusin || , altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onfocusout || , altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onload || animate, animateMotion, animateTransform, set, a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element, or alternatively the 'structurally external' elements) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onmousedown || a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onmousemove || a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onmouseout || a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onmouseover || a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onmouseup || a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video (should be any element) || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onrepeat || animate, animateMotion, animateTransform, set || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onresize || svg || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onscroll || svg || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onunload || svg || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|- +| onzoom || svg || [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +|} + +== Lang values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| lang || desc, glyph, title || %LanguageCodes; ([https://svgwg.org/svg2-draft/fonts.html#GlyphElementLangAttribute a comma-separated list of language codes], [http://www.w3.org/TR/html5/dom.html#attr-lang in html it's a single language code or empty]) +|- +| srclang || track || [http://www.w3.org/TR/html5/embedded-content-0.html#attr-track-srclang Valid BCP 47 language tag] +|- +| systemLanguage || a, altGlyph, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, discard, ellipse, foreignObject, g, iframe, image, line, mask, path, polygon, polyline, rect, set, svg, switch, text, textPath, tref, tspan, use, video || a comma-separated list of language names as defined in BCP 47 +|- +| xml:lang || a, altGlyph, altGlyphDef, altGlyphItem, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, cursor, defs, desc, discard, ellipse, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDistantLight, feDropShadow, feFlood, feFuncA, feFuncB, feFuncG, feFuncR, feGaussianBlur, feImage, feMerge, feMergeNode, feMorphology, feOffset, fePointLight, feSpecularLighting, feSpotLight, feTile, feTurbulence, filter, font, font-face, font-face-format, font-face-name, font-face-src, font-face-uri, foreignObject, g, glyph, glyphRef, hatch, hatchPath, hkern, iframe, image, line, linearGradient, marker, mask, meshGradient, meshPatch, meshRow, metadata, missing-glyph, mpath, path, pattern, polygon, polyline, radialGradient, rect, script, set, solidColor, source, stop, style, svg, switch, symbol, text, textPath, title, track, tref, tspan, use, video, view, vkern || languageID (undefined what it means) +|} + +== Valid browsing context values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| name || iframe || [http://www.w3.org/TR/html5/browsers.html#valid-browsing-context-name A valid browsing context name or keyword] +|} + +== Media query values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- style="background-color: #cfc;" +| media || source || [http://www.w3.org/TR/html5/infrastructure.html#valid-media-query A valid media query] (in other words: leading and trailing WS allowed) +|- +| media || style || media (ISSUE: should be the same as for the source element, and the style element in html5) +|} + +== URL values == + +'''Proposal:''' Reference the html5 definition "Valid non-empty URL potentially surrounded by spaces" and use that instead of , same for validators and viewers, but perhaps with a recommendation to not add leading and trailing whitespace. + +SVG testcase: [http://jsfiddle.net/HErE6/] (all: allowed, stripped away. IE: also allows unprefixed href) + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| aria-describedat || a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view || URI +|- style="background-color: #cfc;" +| poster || video || [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +|- +| requiredExtensions || a, altGlyph, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, discard, ellipse, foreignObject, g, iframe, image, line, mask, path, polygon, polyline, rect, set, svg, switch, text, textPath, tref, tspan, use, video (should be any element) || list-of-extensions (whitespace separated IRIs) +|- style="background-color: #cfc;" +| src || audio, video, iframe, source, track || [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +|- +| xlink:href || a, altGlyph, animate, animateMotion, animateTransform, cursor, feImage, filter, font-face-uri, glyphRef, hatch, image, linearGradient, mpath, pattern, radialGradient, script, set, textPath, tref, use || (doesn't allow leading or trailing whitespace) +|- +| xlink:href || meshGradient || ISSUE: currently undefined +|- +| xlink:role || a, altGlyph, animate, animateMotion, animateTransform, cursor, feImage, filter, font-face-uri, glyphRef, hatch, image, linearGradient, meshGradient, mpath, pattern, radialGradient, script, set, textPath, tref, use || +|- +| xml:base || a, altGlyph, altGlyphDef, altGlyphItem, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, cursor, defs, desc, discard, ellipse, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDistantLight, feDropShadow, feFlood, feFuncA, feFuncB, feFuncG, feFuncR, feGaussianBlur, feImage, feMerge, feMergeNode, feMorphology, feOffset, fePointLight, feSpecularLighting, feSpotLight, feTile, feTurbulence, filter, font, font-face, font-face-format, font-face-name, font-face-src, font-face-uri, foreignObject, g, glyph, glyphRef, hatch, hatchPath, hkern, iframe, image, line, linearGradient, marker, mask, meshGradient, meshPatch, meshRow, metadata, missing-glyph, mpath, path, pattern, polygon, polyline, radialGradient, rect, script, set, solidColor, source, stop, style, svg, switch, symbol, text, textPath, title, track, tref, tspan, use, video, view, vkern || +|} + +== The source of an iframe srcdoc document == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| srcdoc || iframe || [http://www.w3.org/TR/html5/embedded-content-0.html#an-iframe-srcdoc-document The source of an iframe srcdoc document*] (allows whitespace in html, in xml it depends on the xml spec) +|} + +== Path data values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- style="background-color: #cfc;" +| d || glyph, missing-glyph, hatchPath, path, textPath || (grammar allows leading and trailing whitespace) +|- style="background-color: #cfc;" +| path || animateMotion || +|- +| path || stop || "mesh path data" (undefined term, but if the normal path data allows whitespace this probably should too) +|} + +== Points values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- style="background-color: #cfc;" +| points || polyline, polygon || [https://svgwg.org/svg2-draft/shapes.html#PointsBNF ] (allows leading and trailing whitespace) +|} + +== Style values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- style="background-color: #cfc;" +| style || a, altGlyph, audio, canvas, circle, clipPath, defs, desc, ellipse, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter, font, foreignObject, g, glyph, glyphRef, hatch, hatchPath, iframe, image, line, linearGradient, marker, mask, meshGradient, meshPatch, meshRow, missing-glyph, path, pattern, polygon, polyline, radialGradient, rect, solidColor, source, stop, svg, switch, symbol, text, textPath, title, track, tref, tspan, use, video (should be any element) || style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +|} + +== Transform list values == + +SVG testcase: [http://jsfiddle.net/98P7X/] (Opera(Presto): allowed, garbage ignored. IE, FF, Chrome: allowed, except for garbage. + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| gradientTransform || linearGradient, meshGradient, radialGradient || (which is equivalent to "list of ". Should this reference http://www.w3.org/TR/css3-transforms/#svg-syntax? It's not clear if leading and trailing whitespace is allowed.) +|- +| hatchTransform || hatch || +|- +| patternTransform || pattern || +|} + +== "It's complicated" values == + +{| class="wikitable sortable" +|- +! Attribute !! On elements !! Value +|- +| begin || animate, animateMotion, animateTransform, set, discard || (allows whitespace in some but not all cases) +|- +| dur || animate, animateMotion, animateTransform, set || | media | indefinite (allows whitespace for the clockvalue) +|- +| end || animate, animateMotion, animateTransform, set || (allows whitespace in some but not all cases) +|- +| max || animate, animateMotion, animateTransform, set || | media (allows whitespace for the clockvalue) +|- +| min || animate, animateMotion, animateTransform, set || | media (allows whitespace for the clockvalue) +|- +| orient || marker || auto | auto-start-reverse | | +|- +| repeatDur || animate, animateMotion, animateTransform, set || | indefinite (allows whitespace for the clockvalue) +|} diff --git a/tools/svg/wiki2yaml.pl b/tools/svg/wiki2yaml.pl new file mode 100755 index 0000000..a107ad2 --- /dev/null +++ b/tools/svg/wiki2yaml.pl @@ -0,0 +1,91 @@ +#!/usr/bin/perl +use strict; +use warnings; +use Data::Dumper; + + +my $filename = $ARGV[0]; + +my %tags; +my %attributes; + +if (open(my $fh, '<:encoding(UTF-8)', $filename)) { + print <) { + chomp $row; + my ($attr, $elemsStr, $values) = $row =~m /^ + \|\s*(\w+)\s* + \|\|\s*(.*?)\s* + \|\|\s*(.*)/x; + + if (defined $attr && defined $elemsStr) { + my @elements; + $elemsStr=~s|\(.*?\)||g; + + foreach my $el (sort split /,/, $elemsStr) { + $el =~s/^\s*//; + $el =~s/\s*$//; + next if $el eq ''; + + $tags{$el}{'doc'} = $values; + push @{$attributes{$attr}{'elements'}}, $el; + push @{$attributes{$attr}{'doc'}}, $values; + push @elements, $el; + } + my $elStr = join(', ', sort @elements); + + my $docStr = $values; + $docStr =~s /"/\\"/g; + $docStr =~s///; + $docStr =~s|||; + + # list of values + my @valuesArr; + $values =~s/.*?//; + $values =~s|.*||; + + foreach my $val (split /\|/, $values) { + $val =~s/^\s*//; + $val =~s/\s*$//; + next if $val eq ''; + next if $val =~m/ Date: Thu, 2 Mar 2017 18:30:14 +0200 Subject: [PATCH 03/11] Add svg.yaml --- src/svg.yaml | 1318 ++++++++++++++++++++++++++++++++++++++++ tools/svg/wiki2yaml.pl | 9 +- 2 files changed, 1324 insertions(+), 3 deletions(-) create mode 100644 src/svg.yaml diff --git a/src/svg.yaml b/src/svg.yaml new file mode 100644 index 0000000..38466db --- /dev/null +++ b/src/svg.yaml @@ -0,0 +1,1318 @@ +#SVG attributes +# Source from https://www.w3.org/Graphics/SVG/WG/wiki/Proposals/AttributeWhitespace +attributes: + + - alphabetic: + t: [ font-face ] + d: "" + v: [ ] + + - amplitude: + t: [ feFuncA, feFuncB, feFuncG, feFuncR ] + d: "" + v: [ ] + + - ascent: + t: [ font-face ] + d: "" + v: [ ] + + - azimuth: + t: [ feDistantLight ] + d: "" + v: [ ] + + - baseFrequency: + t: [ feTurbulence ] + d: "" + v: [ ] + + - bias: + t: [ feConvolveMatrix ] + d: "" + v: [ ] + + - descent: + t: [ font-face ] + d: "" + v: [ ] + + - diffuseConstant: + t: [ feDiffuseLighting ] + d: "" + v: [ ] + + - divisor: + t: [ feConvolveMatrix ] + d: "" + v: [ ] + + - elevation: + t: [ feDistantLight ] + d: "" + v: [ ] + + - exponent: + t: [ feFuncA, feFuncB, feFuncG, feFuncR ] + d: "" + v: [ ] + + - filterRes: + t: [ filter ] + d: "" + v: [ ] + + - hanging: + t: [ font-face ] + d: "" + v: [ ] + + - ideographic: + t: [ font-face ] + d: "" + v: [ ] + + - intercept: + t: [ feFuncA, feFuncB, feFuncG, feFuncR ] + d: "" + v: [ ] + + - k: + t: [ hkern, vkern ] + d: "" + v: [ ] + + - k1: + t: [ feComposite ] + d: "" + v: [ ] + + - k2: + t: [ feComposite ] + d: "" + v: [ ] + + - k3: + t: [ feComposite ] + d: "" + v: [ ] + + - k4: + t: [ feComposite ] + d: "" + v: [ ] + + - kernelMatrix: + t: [ feConvolveMatrix ] + d: "" + v: [ ] + + - kernelUnitLength: + t: [ feConvolveMatrix, feDiffuseLighting, feSpecularLighting ] + d: "" + v: [ ] + + - keyPoints: + t: [ animateMotion ] + d: "" + v: [ ] + + - keySplines: + t: [ animate, animateMotion, animateTransform ] + d: " (doesn't say of what except in prose, but are 4 control points per spline, so essentially )" + v: [ ] + + - keyTimes: + t: [ animate, animateMotion, animateTransform ] + d: " (essentially with additional restrictions on the number of items in the list and the number range)" + v: [ ] + + - limitingConeAngle: + t: [ feSpotLight ] + d: "" + v: [ ] + + - mathematical: + t: [ font-face ] + d: "" + v: [ ] + + - offset: + t: [ feFuncA, feFuncB, feFuncG, feFuncR ] + d: "" + v: [ ] + + - offset: + t: [ stop ] + d: " | " + v: [ ] + + - order: + t: [ feConvolveMatrix ] + d: "" + v: [ ] + + - pathLength: + t: [ path ] + d: "" + v: [ ] + + - pointsAtX: + t: [ feSpotLight ] + d: "" + v: [ ] + + - pointsAtY: + t: [ feSpotLight ] + d: "" + v: [ ] + + - pointsAtZ: + t: [ feSpotLight ] + d: "" + v: [ ] + + - radius: + t: [ feMorphology ] + d: "" + v: [ ] + + - repeatCount: + t: [ animate, animateMotion, animateTransform, set ] + d: " | indefinite" + v: [ indefinite ] + + - rotate: + t: [ altGlyph, text, tref, tspan ] + d: "" + v: [ ] + + - rotate: + t: [ animateMotion ] + d: " | auto | auto-reverse" + v: [ auto, auto-reverse ] + + - scale: + t: [ feDisplacementMap ] + d: "" + v: [ ] + + - seed: + t: [ feTurbulence ] + d: "" + v: [ ] + + - slope: + t: [ feFuncA, feFuncB, feFuncG, feFuncR, font-face ] + d: "" + v: [ ] + + - specularConstant: + t: [ feSpecularLighting ] + d: "" + v: [ ] + + - specularExponent: + t: [ feSpecularLighting, feSpotLight ] + d: "" + v: [ ] + + - stdDeviation: + t: [ feDropShadow, feGaussianBlur ] + d: "" + v: [ ] + + - stemh: + t: [ font-face ] + d: "" + v: [ ] + + - stemv: + t: [ font-face ] + d: "" + v: [ ] + + - surfaceScale: + t: [ feDiffuseLighting, feSpecularLighting ] + d: "" + v: [ ] + + - tabindex: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, source, svg, switch, symbol, text, textPath, track, tref, tspan, use, video, view ] + d: " (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS)" + v: [ ] + + - tableValues: + t: [ feFuncA, feFuncB, feFuncG, feFuncR ] + d: "" + v: [ ] + + - values: + t: [ feColorMatrix ] + d: "" + v: [ ] + + - version: + t: [ svg ] + d: "" + v: [ ] + + - viewBox: + t: [ marker, pattern, svg, symbol, view ] + d: "a list of four numbers , , and , separated by whitespace and/or a comma" + v: [ ] + + - x: + t: [ fePointLight, feSpotLight, glyphRef ] + d: "" + v: [ ] + + - y: + t: [ fePointLight, feSpotLight, glyphRef ] + d: "" + v: [ ] + + - z: + t: [ fePointLight, feSpotLight ] + d: "" + v: [ ] + + - rotate: + t: [ hatch ] + d: "" + v: [ ] + + - numOctaves: + t: [ feTurbulence ] + d: "" + v: [ ] + + - targetX: + t: [ feConvolveMatrix ] + d: "" + v: [ ] + + - targetY: + t: [ feConvolveMatrix ] + d: "" + v: [ ] + + - canvasHeight: + t: [ canvas ] + d: "" + v: [ ] + + - canvasWidth: + t: [ canvas ] + d: "" + v: [ ] + + - cx: + t: [ circle, ellipse, radialGradient ] + d: "" + v: [ ] + + - cy: + t: [ circle, ellipse, radialGradient ] + d: "" + v: [ ] + + - dx: + t: [ feDropShadow, feOffset ] + d: "" + v: [ ] + + - dx: + t: [ altGlyph, glyphRef, text, tref, tspan ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeLengths ]" + v: [ ] + + - dy: + t: [ feDropShadow, feOffset ] + d: "" + v: [ ] + + - dy: + t: [ altGlyph, glyphRef, text, tref, tspan ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeLengths ]" + v: [ ] + + - fr: + t: [ radialGradient ] + d: "" + v: [ ] + + - frameHeight: + t: [ iframe ] + d: "" + v: [ ] + + - frameWidth: + t: [ iframe ] + d: "" + v: [ ] + + - fx: + t: [ radialGradient ] + d: "" + v: [ ] + + - fy: + t: [ radialGradient ] + d: "" + v: [ ] + + - height: + t: [ canvas, iframe, image, video ] + d: " | auto" + v: [ auto ] + + - height: + t: [ feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter, foreignObject, pattern, rect, text, use ] + d: "" + v: [ ] + + - height: + t: [ mask, svg ] + d: " | (Presumably related to the issue about percentages in [https://svgwg.org/svg2-draft/types.html#DataTypeLength])" + v: [ ] + + - markerHeight: + t: [ marker ] + d: "" + v: [ ] + + - markerWidth: + t: [ marker ] + d: "" + v: [ ] + + - offset: + t: [ hatchPath ] + d: "" + v: [ ] + + - pitch: + t: [ hatchPath ] + d: "currently undefined (but should probably be either or )" + v: [ ] + + - position: + t: [ marker ] + d: " | " + v: [ ] + + - r: + t: [ circle, radialGradient ] + d: "" + v: [ ] + + - refX: + t: [ marker ] + d: "" + v: [ ] + + - refY: + t: [ marker ] + d: "" + v: [ ] + + - rx: + t: [ ellipse, rect ] + d: "" + v: [ ] + + - ry: + t: [ ellipse, rect ] + d: "" + v: [ ] + + - startOffset: + t: [ textPath ] + d: "" + v: [ ] + + - textLength: + t: [ text, textPath, tref, tspan ] + d: "" + v: [ ] + + - width: + t: [ canvas, iframe, image, video ] + d: " | auto" + v: [ auto ] + + - width: + t: [ feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter, foreignObject, pattern, rect, text, use ] + d: "" + v: [ ] + + - width: + t: [ mask, svg ] + d: " | " + v: [ ] + + - x: + t: [ altGlyph, text, tref, tspan ] + d: " (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as )" + v: [ ] + + - x: + t: [ audio, canvas, cursor, foreignObject, hatch, iframe, image, pattern, rect, svg, use, video ] + d: "" + v: [ ] + + - x: + t: [ feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter ] + d: "" + v: [ ] + + - x: + t: [ mask ] + d: " | " + v: [ ] + + - x: + t: [ meshGradient ] + d: "ISSUE: currently undefined (but should probably be )" + v: [ ] + + - x1: + t: [ line, linearGradient ] + d: "" + v: [ ] + + - x2: + t: [ line, linearGradient ] + d: "" + v: [ ] + + - y: + t: [ altGlyph, text, tref, tspan ] + d: " (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as )" + v: [ ] + + - y: + t: [ audio, canvas, cursor, foreignObject, hatch, iframe, image, pattern, rect, svg, use, video ] + d: " " + v: [ ] + + - y: + t: [ feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter ] + d: "" + v: [ ] + + - y: + t: [ mask ] + d: " | " + v: [ ] + + - y: + t: [ meshGradient ] + d: "ISSUE: currently undefined (but should probably be )" + v: [ ] + + - y1: + t: [ line, linearGradient ] + d: "" + v: [ ] + + - y2: + t: [ line, linearGradient ] + d: "" + v: [ ] + + - accumulate: + t: [ animate, animateMotion, animateTransform ] + d: "none | sum" + v: [ none, sum ] + + - additive: + t: [ animate, animateMotion, animateTransform ] + d: "replace | sum" + v: [ replace, sum ] + + - attributeType: + t: [ animate, animateTransform, set ] + d: "CSS | XML | auto" + v: [ CSS, XML, auto ] + + - calcMode: + t: [ animate, animateMotion, animateTransform ] + d: "discrete | linear | paced | spline" + v: [ discrete, linear, paced, spline ] + + - clipPathUnits: + t: [ clipPath ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - crossorigin: + t: [ audio, video ] + d: "anonymous | use-credentials (Note, in html5 this is a [http://www.w3.org/TR/html5/infrastructure.html#cors-settings-attribute CORS settings attribute])" + v: [ anonymous, use-credentials ] + + - edgeMode: + t: [ feConvolveMatrix ] + d: "duplicate | wrap | none" + v: [ duplicate, none, wrap ] + + - fill: + t: [ animate, animateMotion, animateTransform, set ] + d: "freeze | remove" + v: [ freeze, remove ] + + - filterUnits: + t: [ filter ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - gradientUnits: + t: [ linearGradient, meshGradient, radialGradient ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - hatchContentUnits: + t: [ hatch ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - hatchUnits: + t: [ hatch ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - kind: + t: [ track ] + d: "subtitles | captions | descriptions | chapters | metadata" + v: [ captions, chapters, descriptions, metadata, subtitles ] + + - lengthAdjust: + t: [ text, textPath, tref, tspan ] + d: "spacing | spacingAndGlyphs" + v: [ spacing, spacingAndGlyphs ] + + - markerUnits: + t: [ marker ] + d: "strokeWidth | userSpaceOnUse" + v: [ strokeWidth, userSpaceOnUse ] + + - maskContentUnits: + t: [ mask ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - maskUnits: + t: [ mask ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - method: + t: [ textPath ] + d: "align | stretch" + v: [ align, stretch ] + + - mode: + t: [ feBlend ] + d: "normal | multiply | screen | darken | lighten" + v: [ darken, lighten, multiply, normal, screen ] + + - operator: + t: [ feComposite ] + d: "over | in | out | atop | xor | arithmetic" + v: [ arithmetic, atop, in, out, over, xor ] + + - operator: + t: [ feMorphology ] + d: "erode | dilate" + v: [ dilate, erode ] + + - orientation: + t: [ glyph ] + d: "h | v" + v: [ h, v ] + + - origin: + t: [ animateMotion ] + d: "default (the attribute \"has no effect in SVG\" according to spec, do we need to keep it at all?)" + v: [ default ] + + - patternContentUnits: + t: [ pattern ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - patternUnits: + t: [ pattern ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - playbackOrder: + t: [ svg ] + d: "forwardOnly | all" + v: [ all, forwardOnly ] + + - preload: + t: [ audio, video ] + d: "none | metadata | auto" + v: [ auto, metadata, none ] + + - preserveAlpha: + t: [ feConvolveMatrix ] + d: "true | false" + v: [ false, true ] + + - preserveAspectRatio: + t: [ canvas, feImage, iframe, image, marker, pattern, svg, symbol, video, view ] + d: "[defer] []" + v: [ ] + + - primitiveUnits: + t: [ filter ] + d: "userSpaceOnUse | objectBoundingBox" + v: [ objectBoundingBox, userSpaceOnUse ] + + - requiredFeatures: + t: [ a, altGlyph, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, discard, ellipse, foreignObject, g, iframe, image, line, mask, path, polygon, polyline, rect, set, svg, switch, text, textPath, tref, tspan, use, video ] + d: "list-of-features (whitespace separated feature strings)" + v: [ ] + + - restart: + t: [ animate, animateMotion, animateTransform, set ] + d: "always | whenNotActive | never" + v: [ always, never, whenNotActive ] + + - role: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "[https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)]" + v: [ ] + + - spacing: + t: [ textPath ] + d: "auto | exact" + v: [ auto, exact ] + + - spreadMethod: + t: [ linearGradient, radialGradient ] + d: "pad | reflect | repeat" + v: [ pad, reflect, repeat ] + + - stitchTiles: + t: [ feTurbulence ] + d: "stitch | noStitch" + v: [ noStitch, stitch ] + + - timelineBegin: + t: [ svg ] + d: "onLoad | onStart" + v: [ onLoad, onStart ] + + - type: + t: [ animateTransform ] + d: "translate | scale | rotate | skewX | skewY" + v: [ rotate, scale, skewX, skewY, translate ] + + - type: + t: [ feColorMatrix ] + d: "matrix | saturate | hueRotate | luminanceToAlpha" + v: [ hueRotate, luminanceToAlpha, matrix, saturate ] + + - type: + t: [ feFuncA, feFuncB, feFuncG, feFuncR ] + d: "identity | table | discrete | linear | gamma" + v: [ discrete, gamma, identity, linear, table ] + + - type: + t: [ feTurbulence ] + d: "fractalNoise | turbulence" + v: [ fractalNoise, turbulence ] + + - xChannelSelector: + t: [ feDisplacementMap ] + d: "R | G | B | A" + v: [ A, B, G, R ] + + - yChannelSelector: + t: [ feDisplacementMap ] + d: "R | G | B | A" + v: [ A, B, G, R ] + + - zoomAndPan: + t: [ svg, view ] + d: "disable | magnify" + v: [ disable, magnify ] + + - autoplay: + t: [ audio, video ] + d: "" + v: [ ] + + - controls: + t: [ audio, video ] + d: "" + v: [ ] + + - default: + t: [ track ] + d: "" + v: [ ] + + - loop: + t: [ audio, video ] + d: "" + v: [ ] + + - muted: + t: [ audio, video ] + d: "" + v: [ ] + + - seamless: + t: [ iframe ] + d: "" + v: [ ] + + - attributeName: + t: [ animate, animateTransform, set ] + d: "" + v: [ ] + + - baseProfile: + t: [ svg ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - bbox: + t: [ font-face ] + d: "" + v: [ ] + + - by: + t: [ animate, animateMotion, animateTransform ] + d: "[http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in)" + v: [ ] + + - class: + t: [ a, altGlyph, audio, canvas, circle, clipPath, defs, desc, ellipse, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter, font, foreignObject, g, glyph, glyphRef, hatch, hatchPath, iframe, image, line, linearGradient, marker, mask, meshGradient, meshPatch, meshRow, missing-glyph, path, pattern, polygon, polyline, radialGradient, rect, solidColor, source, stop, svg, switch, symbol, text, textPath, title, track, tref, tspan, use, video ] + d: "whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]." + v: [ ] + + - format: + t: [ altGlyph, glyphRef ] + d: "" + v: [ ] + + - from: + t: [ animate, animateMotion, animateTransform ] + d: "[http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in)" + v: [ ] + + - g1: + t: [ hkern, vkern ] + d: " [, ]* (Note, is undefined, and doesn't link to anywhere in the spec)" + v: [ ] + + - g2: + t: [ hkern, vkern ] + d: " [, ]* (Note, is undefined, and doesn't link to anywhere in the spec)" + v: [ ] + + - glyphRef: + t: [ altGlyph, glyphRef ] + d: "" + v: [ ] + + - in: + t: [ feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feGaussianBlur, feMorphology, feOffset, feSpecularLighting, feTile ] + d: "SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string)" + v: [ BackgroundAlpha, BackgroundImage, FillPaint, SourceAlpha, SourceGraphic, StrokePaint ] + + - in2: + t: [ feBlend, feComposite, feDisplacementMap ] + d: "SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string)" + v: [ BackgroundAlpha, BackgroundImage, FillPaint, SourceAlpha, SourceGraphic, StrokePaint ] + + - label: + t: [ track ] + d: "[http://www.w3.org/TR/html5/dom.html#attribute-text Text] ([http://www.w3.org/TR/html5/embedded-content-0.html#attr-track-label cannot be the empty string])" + v: [ ] + + - mediagroup: + t: [ audio, video ] + d: "[http://www.w3.org/TR/html5/dom.html#attribute-text Text]" + v: [ ] + + - name: + t: [ font-face-name ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - result: + t: [ eBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence ] + d: " (unclear if leading & trailing whitespace is stripped or not)" + v: [ ] + + - sandbox: + t: [ iframe ] + d: "[http://www.w3.org/TR/html5/infrastructure.html#unordered-set-of-unique-space-separated-tokens Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of \"allow-forms\", \"allow-pointer-lock\", \"allow-popups\", \"allow-same-origin\", \"allow-scripts and \"allow-top-navigation\"]" + v: [ ] + + - string: + t: [ font-face-name ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - target: + t: [ a ] + d: "_replace | _self | _parent | _top | _blank | " + v: [ _blank, _parent, _replace, _self, _top ] + + - title: + t: [ audio, iframe, track, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] (in html5: Text)" + v: [ ] + + - title: + t: [ style ] + d: "[https://svgwg.org/svg2-draft/styling.html#StyleElementTitleAttribute advisory-title] (in html5: Text)" + v: [ ] + + - to: + t: [ animate, animateMotion, animateTransform ] + d: "[http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in)" + v: [ ] + + - to: + t: [ set ] + d: " (svg doesn't state that leading and trailing whitespace is ignored)" + v: [ ] + + - type: + t: [ script, style ] + d: "content-type (in HTML5: [http://www.w3.org/TR/html5/infrastructure.html#valid-mime-type valid MIME type])" + v: [ ] + + - type: + t: [ source ] + d: "[http://www.w3.org/TR/html5/infrastructure.html#valid-mime-type valid MIME type]" + v: [ ] + + - u1: + t: [ hkern, vkern ] + d: "[ | ] [, [ | ] ]*" + v: [ ] + + - u2: + t: [ hkern, vkern ] + d: "[ | ] [, [ | ] ]*" + v: [ ] + + - unicode: + t: [ glyph ] + d: "" + v: [ ] + + - values: + t: [ animate, animateMotion, animateTransform ] + d: "[http://www.w3.org/TR/2001/REC-smil-animation-20010904/#ValuesAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in)" + v: [ ] + + - viewTarget: + t: [ view ] + d: "" + v: [ ] + + - widths: + t: [ font-face ] + d: "" + v: [ ] + + - onabort: + t: [ svg ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onbegin: + t: [ animate, animateMotion, animateTransform, set ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onclick: + t: [ a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onend: + t: [ animate, animateMotion, animateTransform, set ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onerror: + t: [ svg ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onfocusin: + t: [ altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onfocusout: + t: [ altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onload: + t: [ a, altGlyph, animate, animateMotion, animateTransform, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, set, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onmousedown: + t: [ a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onmousemove: + t: [ a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onmouseout: + t: [ a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onmouseover: + t: [ a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onmouseup: + t: [ a, altGlyph, audio, canvas, circle, defs, ellipse, foreignObject, g, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onrepeat: + t: [ animate, animateMotion, animateTransform, set ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onresize: + t: [ svg ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onscroll: + t: [ svg ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onunload: + t: [ svg ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - onzoom: + t: [ svg ] + d: "[https://svgwg.org/svg2-draft/types.html#DataTypeAnything ]" + v: [ ] + + - lang: + t: [ desc, glyph, title ] + d: "%LanguageCodes; ([https://svgwg.org/svg2-draft/fonts.html#GlyphElementLangAttribute a comma-separated list of language codes], [http://www.w3.org/TR/html5/dom.html#attr-lang in html it's a single language code or empty])" + v: [ ] + + - srclang: + t: [ track ] + d: "[http://www.w3.org/TR/html5/embedded-content-0.html#attr-track-srclang Valid BCP 47 language tag]" + v: [ ] + + - systemLanguage: + t: [ a, altGlyph, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, discard, ellipse, foreignObject, g, iframe, image, line, mask, path, polygon, polyline, rect, set, svg, switch, text, textPath, tref, tspan, use, video ] + d: "a comma-separated list of language names as defined in BCP 47" + v: [ ] + + - name: + t: [ iframe ] + d: "[http://www.w3.org/TR/html5/browsers.html#valid-browsing-context-name A valid browsing context name or keyword]" + v: [ ] + + - media: + t: [ source ] + d: "[http://www.w3.org/TR/html5/infrastructure.html#valid-media-query A valid media query] (in other words: leading and trailing WS allowed) " + v: [ ] + + - media: + t: [ style ] + d: "media (ISSUE: should be the same as for the source element, and the style element in html5) " + v: [ ] + + - poster: + t: [ video ] + d: "[http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces]" + v: [ ] + + - requiredExtensions: + t: [ a, altGlyph, animate, animateMotion, animateTransform, audio, canvas, circle, clipPath, discard, ellipse, foreignObject, g, iframe, image, line, mask, path, polygon, polyline, rect, set, svg, switch, text, textPath, tref, tspan, use, video ] + d: "list-of-extensions (whitespace separated IRIs)" + v: [ ] + + - src: + t: [ audio, iframe, source, track, video ] + d: "[http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces]" + v: [ ] + + - srcdoc: + t: [ iframe ] + d: "[http://www.w3.org/TR/html5/embedded-content-0.html#an-iframe-srcdoc-document The source of an iframe srcdoc document*] (allows whitespace in html, in xml it depends on the xml spec)" + v: [ ] + + - d: + t: [ glyph, hatchPath, missing-glyph, path, textPath ] + d: " (grammar allows leading and trailing whitespace)" + v: [ ] + + - path: + t: [ animateMotion ] + d: "" + v: [ ] + + - path: + t: [ stop ] + d: "\"mesh path data\" (undefined term, but if the normal path data allows whitespace this probably should too)" + v: [ ] + + - points: + t: [ polygon, polyline ] + d: "[https://svgwg.org/svg2-draft/shapes.html#PointsBNF ] (allows leading and trailing whitespace)" + v: [ ] + + - style: + t: [ a, altGlyph, audio, canvas, circle, clipPath, defs, desc, ellipse, feBlend, feColorMatrix, feComponentTransfer, feComposite, feConvolveMatrix, feCustom, feDiffuseLighting, feDisplacementMap, feDropShadow, feFlood, feGaussianBlur, feImage, feMerge, feMorphology, feOffset, feSpecularLighting, feTile, feTurbulence, filter, font, foreignObject, g, glyph, glyphRef, hatch, hatchPath, iframe, image, line, linearGradient, marker, mask, meshGradient, meshPatch, meshRow, missing-glyph, path, pattern, polygon, polyline, radialGradient, rect, solidColor, source, stop, svg, switch, symbol, text, textPath, title, track, tref, tspan, use, video ] + d: "style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace)" + v: [ ] + + - gradientTransform: + t: [ linearGradient, meshGradient, radialGradient ] + d: " (which is equivalent to \"list of \". Should this reference http://www.w3.org/TR/css3-transforms/#svg-syntax? It's not clear if leading and trailing whitespace is allowed.)" + v: [ ] + + - hatchTransform: + t: [ hatch ] + d: "" + v: [ ] + + - patternTransform: + t: [ pattern ] + d: "" + v: [ ] + + - begin: + t: [ animate, animateMotion, animateTransform, discard, set ] + d: " (allows whitespace in some but not all cases)" + v: [ ] + + - dur: + t: [ animate, animateMotion, animateTransform, set ] + d: " | media | indefinite (allows whitespace for the clockvalue)" + v: [ indefinite, media ] + + - end: + t: [ animate, animateMotion, animateTransform, set ] + d: " (allows whitespace in some but not all cases)" + v: [ ] + + - max: + t: [ animate, animateMotion, animateTransform, set ] + d: " | media (allows whitespace for the clockvalue)" + v: [ media ] + + - min: + t: [ animate, animateMotion, animateTransform, set ] + d: " | media (allows whitespace for the clockvalue)" + v: [ media ] + + - orient: + t: [ marker ] + d: "auto | auto-start-reverse | | " + v: [ auto, auto-start-reverse ] + + - repeatDur: + t: [ animate, animateMotion, animateTransform, set ] + d: " | indefinite (allows whitespace for the clockvalue)" + v: [ indefinite ] + +# SVG elements +tags: + altGlyph: SVG + + altGlyphItem: SVG + + animate: SVG + + animateMotion: SVG + + animateTransform: SVG + + audio: SVG + + canvas: SVG + + circle: SVG + + clipPath: SVG + + cursor: SVG + + defs: SVG + + desc: SVG + + discard: SVG + + eBlend: SVG + + ellipse: SVG + + feBlend: SVG + + feColorMatrix: SVG + + feComponentTransfer: SVG + + feComposite: SVG + + feConvolveMatrix: SVG + + feCustom: SVG + + feDiffuseLighting: SVG + + feDisplacementMap: SVG + + feDistantLight: SVG + + feDropShadow: SVG + + feFlood: SVG + + feFuncA: SVG + + feFuncB: SVG + + feFuncG: SVG + + feFuncR: SVG + + feGaussianBlur: SVG + + feImage: SVG + + feMerge: SVG + + feMorphology: SVG + + feOffset: SVG + + fePointLight: SVG + + feSpecularLighting: SVG + + feSpotLight: SVG + + feTile: SVG + + feTurbulence: SVG + + filter: SVG + + font: SVG + + font-face: SVG + + font-face-name: SVG + + foreignObject: SVG + + g: SVG + + glyph: SVG + + glyphRef: SVG + + hatch: SVG + + hatchPath: SVG + + hkern: SVG + + iframe: SVG + + image: SVG + + line: SVG + + linearGradient: SVG + + marker: SVG + + mask: SVG + + meshGradient: SVG + + meshPatch: SVG + + meshRow: SVG + + missing-glyph: SVG + + path: SVG + + pattern: SVG + + polygon: SVG + + polyline: SVG + + radialGradient: SVG + + rect: SVG + + script: SVG + + set: SVG + + solidColor: SVG + + source: SVG + + stop: SVG + + style: SVG + + svg: SVG + + switch: SVG + + symbol: SVG + + text: SVG + + textPath: SVG + + title: SVG + + track: SVG + + tref: SVG + + tspan: SVG + + use: SVG + + video: SVG + + view: SVG + + vkern: SVG + diff --git a/tools/svg/wiki2yaml.pl b/tools/svg/wiki2yaml.pl index a107ad2..82b8446 100755 --- a/tools/svg/wiki2yaml.pl +++ b/tools/svg/wiki2yaml.pl @@ -45,10 +45,13 @@ # list of values my @valuesArr; - $values =~s/.*?//; - $values =~s|.*||; + my $sanitizedValues = ''; - foreach my $val (split /\|/, $values) { + if ($values =~m |(.*?)|) { + $sanitizedValues = $1; + } + + foreach my $val (split /\|/, $sanitizedValues) { $val =~s/^\s*//; $val =~s/\s*$//; next if $val eq ''; From 79dbda315555fec7301a7f6296240e4c3d8b05fb Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Thu, 2 Mar 2017 18:35:22 +0200 Subject: [PATCH 04/11] Add ignore list and change svg tag doc --- src/ignore-warn-list | 28 +++++++ src/svg.yaml | 174 ++++++++++++++++++++++--------------------- 2 files changed, 116 insertions(+), 86 deletions(-) create mode 100644 src/ignore-warn-list diff --git a/src/ignore-warn-list b/src/ignore-warn-list new file mode 100644 index 0000000..f0b1f92 --- /dev/null +++ b/src/ignore-warn-list @@ -0,0 +1,28 @@ +video-crossorigin +canvas-height +iframe-height +video-height +track-kind +track-label +source-media +style-media +iframe-name +video-poster +audio-preload +video-preload +iframe-sandbox +audio-src +iframe-src +source-src +track-src +video-src +iframe-srcdoc +track-srclang +a-target +style-title +script-type +source-type +style-type +canvas-width +iframe-width +video-width diff --git a/src/svg.yaml b/src/svg.yaml index 38466db..76fcf06 100644 --- a/src/svg.yaml +++ b/src/svg.yaml @@ -1143,176 +1143,178 @@ attributes: v: [ indefinite ] # SVG elements +docs: + svgdoc: &SVGDOC SVG element tags: - altGlyph: SVG + altGlyph: *SVGDOC - altGlyphItem: SVG + altGlyphItem: *SVGDOC - animate: SVG + animate: *SVGDOC - animateMotion: SVG + animateMotion: *SVGDOC - animateTransform: SVG + animateTransform: *SVGDOC - audio: SVG + audio: *SVGDOC - canvas: SVG + canvas: *SVGDOC - circle: SVG + circle: *SVGDOC - clipPath: SVG + clipPath: *SVGDOC - cursor: SVG + cursor: *SVGDOC - defs: SVG + defs: *SVGDOC - desc: SVG + desc: *SVGDOC - discard: SVG + discard: *SVGDOC - eBlend: SVG + eBlend: *SVGDOC - ellipse: SVG + ellipse: *SVGDOC - feBlend: SVG + feBlend: *SVGDOC - feColorMatrix: SVG + feColorMatrix: *SVGDOC - feComponentTransfer: SVG + feComponentTransfer: *SVGDOC - feComposite: SVG + feComposite: *SVGDOC - feConvolveMatrix: SVG + feConvolveMatrix: *SVGDOC - feCustom: SVG + feCustom: *SVGDOC - feDiffuseLighting: SVG + feDiffuseLighting: *SVGDOC - feDisplacementMap: SVG + feDisplacementMap: *SVGDOC - feDistantLight: SVG + feDistantLight: *SVGDOC - feDropShadow: SVG + feDropShadow: *SVGDOC - feFlood: SVG + feFlood: *SVGDOC - feFuncA: SVG + feFuncA: *SVGDOC - feFuncB: SVG + feFuncB: *SVGDOC - feFuncG: SVG + feFuncG: *SVGDOC - feFuncR: SVG + feFuncR: *SVGDOC - feGaussianBlur: SVG + feGaussianBlur: *SVGDOC - feImage: SVG + feImage: *SVGDOC - feMerge: SVG + feMerge: *SVGDOC - feMorphology: SVG + feMorphology: *SVGDOC - feOffset: SVG + feOffset: *SVGDOC - fePointLight: SVG + fePointLight: *SVGDOC - feSpecularLighting: SVG + feSpecularLighting: *SVGDOC - feSpotLight: SVG + feSpotLight: *SVGDOC - feTile: SVG + feTile: *SVGDOC - feTurbulence: SVG + feTurbulence: *SVGDOC - filter: SVG + filter: *SVGDOC - font: SVG + font: *SVGDOC - font-face: SVG + font-face: *SVGDOC - font-face-name: SVG + font-face-name: *SVGDOC - foreignObject: SVG + foreignObject: *SVGDOC - g: SVG + g: *SVGDOC - glyph: SVG + glyph: *SVGDOC - glyphRef: SVG + glyphRef: *SVGDOC - hatch: SVG + hatch: *SVGDOC - hatchPath: SVG + hatchPath: *SVGDOC - hkern: SVG + hkern: *SVGDOC - iframe: SVG + iframe: *SVGDOC - image: SVG + image: *SVGDOC - line: SVG + line: *SVGDOC - linearGradient: SVG + linearGradient: *SVGDOC - marker: SVG + marker: *SVGDOC - mask: SVG + mask: *SVGDOC - meshGradient: SVG + meshGradient: *SVGDOC - meshPatch: SVG + meshPatch: *SVGDOC - meshRow: SVG + meshRow: *SVGDOC - missing-glyph: SVG + missing-glyph: *SVGDOC - path: SVG + path: *SVGDOC - pattern: SVG + pattern: *SVGDOC - polygon: SVG + polygon: *SVGDOC - polyline: SVG + polyline: *SVGDOC - radialGradient: SVG + radialGradient: *SVGDOC - rect: SVG + rect: *SVGDOC - script: SVG + script: *SVGDOC - set: SVG + set: *SVGDOC - solidColor: SVG + solidColor: *SVGDOC - source: SVG + source: *SVGDOC - stop: SVG + stop: *SVGDOC - style: SVG + style: *SVGDOC - svg: SVG + svg: *SVGDOC - switch: SVG + switch: *SVGDOC - symbol: SVG + symbol: *SVGDOC - text: SVG + text: *SVGDOC - textPath: SVG + textPath: *SVGDOC - title: SVG + title: *SVGDOC - track: SVG + track: *SVGDOC - tref: SVG + tref: *SVGDOC - tspan: SVG + tspan: *SVGDOC - use: SVG + use: *SVGDOC - video: SVG + video: *SVGDOC - view: SVG + view: *SVGDOC - vkern: SVG + vkern: *SVGDOC From 6d78a0725a9ac8cbb02e92db937f3dc007b8f495 Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Thu, 2 Mar 2017 18:53:00 +0200 Subject: [PATCH 05/11] Generate svg to separate stuff directory --- Makefile | 15 +++++++++++---- src/svg.yaml | 5 +++-- tools/svg/wiki2yaml.pl | 5 +++-- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 6cd4ba0..e1a3e3a 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,20 @@ -SOURCES = \ - ./src/svg.yaml \ +SOURCES_SVG = \ + ./src/svg.yaml + +SOURCES_HTML = \ ./src/tags.yaml \ ./src/events.yaml \ ./src/attributes.yaml \ ./src/attribute-values.yaml IGNORE_TAG_ATTRS = ./src/ignore-warn-list -all: - node ./tools/convertor/convert-yaml-to-ac-html.js --ignore ${IGNORE_TAG_ATTRS} --out ./html-stuff/ ${SOURCES} +all: html svg + +svg: + node ./tools/convertor/convert-yaml-to-ac-html.js --ignore ${IGNORE_TAG_ATTRS} --out ./html-stuff-svg/ ${SOURCES_SVG} + +html: + node ./tools/convertor/convert-yaml-to-ac-html.js --ignore ${IGNORE_TAG_ATTRS} --out ./html-stuff/ ${SOURCES_HTML} setup: (cd ./tools/convertor/ && npm install) diff --git a/src/svg.yaml b/src/svg.yaml index 76fcf06..a500601 100644 --- a/src/svg.yaml +++ b/src/svg.yaml @@ -1141,11 +1141,12 @@ attributes: t: [ animate, animateMotion, animateTransform, set ] d: " | indefinite (allows whitespace for the clockvalue)" v: [ indefinite ] - -# SVG elements docs: svgdoc: &SVGDOC SVG element +# SVG elements tags: + a: *SVGDOC + altGlyph: *SVGDOC altGlyphItem: *SVGDOC diff --git a/tools/svg/wiki2yaml.pl b/tools/svg/wiki2yaml.pl index 82b8446..d96eb6c 100755 --- a/tools/svg/wiki2yaml.pl +++ b/tools/svg/wiki2yaml.pl @@ -75,13 +75,14 @@ } print < Date: Thu, 2 Mar 2017 18:58:32 +0200 Subject: [PATCH 06/11] Add svg stuff --- .../html-attributes-complete/a-target | 5 ++ .../animate-accumulate | 2 + .../html-attributes-complete/animate-additive | 2 + .../animate-attributeType | 3 + .../html-attributes-complete/animate-calcMode | 4 + .../html-attributes-complete/animate-dur | 2 + .../html-attributes-complete/animate-fill | 2 + .../html-attributes-complete/animate-max | 1 + .../html-attributes-complete/animate-min | 1 + .../animate-repeatCount | 1 + .../animate-repeatDur | 1 + .../html-attributes-complete/animate-restart | 3 + .../animateMotion-accumulate | 2 + .../animateMotion-additive | 2 + .../animateMotion-calcMode | 4 + .../animateMotion-dur | 2 + .../animateMotion-fill | 2 + .../animateMotion-max | 1 + .../animateMotion-min | 1 + .../animateMotion-origin | 1 + .../animateMotion-repeatCount | 1 + .../animateMotion-repeatDur | 1 + .../animateMotion-restart | 3 + .../animateMotion-rotate | 2 + .../animateTransform-accumulate | 2 + .../animateTransform-additive | 2 + .../animateTransform-attributeType | 3 + .../animateTransform-calcMode | 4 + .../animateTransform-dur | 2 + .../animateTransform-fill | 2 + .../animateTransform-max | 1 + .../animateTransform-min | 1 + .../animateTransform-repeatCount | 1 + .../animateTransform-repeatDur | 1 + .../animateTransform-restart | 3 + .../animateTransform-type | 5 ++ .../audio-crossorigin | 2 + .../html-attributes-complete/audio-preload | 3 + .../html-attributes-complete/canvas-height | 1 + .../html-attributes-complete/canvas-width | 1 + .../clipPath-clipPathUnits | 2 + .../html-attributes-complete/feBlend-in | 6 ++ .../html-attributes-complete/feBlend-in2 | 6 ++ .../html-attributes-complete/feBlend-mode | 5 ++ .../html-attributes-complete/feColorMatrix-in | 6 ++ .../feColorMatrix-type | 4 + .../feComponentTransfer-in | 6 ++ .../html-attributes-complete/feComposite-in | 6 ++ .../html-attributes-complete/feComposite-in2 | 6 ++ .../feComposite-operator | 6 ++ .../feConvolveMatrix-edgeMode | 3 + .../feConvolveMatrix-in | 6 ++ .../feConvolveMatrix-preserveAlpha | 2 + .../html-attributes-complete/feCustom-in | 6 ++ .../feDiffuseLighting-in | 6 ++ .../feDisplacementMap-in | 6 ++ .../feDisplacementMap-in2 | 6 ++ .../feDisplacementMap-xChannelSelector | 4 + .../feDisplacementMap-yChannelSelector | 4 + .../html-attributes-complete/feDropShadow-in | 6 ++ .../html-attributes-complete/feFuncA-type | 5 ++ .../html-attributes-complete/feFuncB-type | 5 ++ .../html-attributes-complete/feFuncG-type | 5 ++ .../html-attributes-complete/feFuncR-type | 5 ++ .../feGaussianBlur-in | 6 ++ .../html-attributes-complete/feMorphology-in | 6 ++ .../feMorphology-operator | 2 + .../html-attributes-complete/feOffset-in | 6 ++ .../feSpecularLighting-in | 6 ++ .../html-attributes-complete/feTile-in | 6 ++ .../feTurbulence-stitchTiles | 2 + .../feTurbulence-type | 2 + .../filter-filterUnits | 2 + .../filter-primitiveUnits | 2 + .../glyph-orientation | 2 + .../hatch-hatchContentUnits | 2 + .../html-attributes-complete/hatch-hatchUnits | 2 + .../html-attributes-complete/iframe-height | 1 + .../html-attributes-complete/iframe-width | 1 + .../html-attributes-complete/image-height | 1 + .../html-attributes-complete/image-width | 1 + .../linearGradient-gradientUnits | 2 + .../linearGradient-spreadMethod | 3 + .../marker-markerUnits | 2 + .../html-attributes-complete/marker-orient | 2 + .../mask-maskContentUnits | 2 + .../html-attributes-complete/mask-maskUnits | 2 + .../meshGradient-gradientUnits | 2 + .../pattern-patternContentUnits | 2 + .../pattern-patternUnits | 2 + .../radialGradient-gradientUnits | 2 + .../radialGradient-spreadMethod | 3 + .../set-attributeType | 3 + .../html-attributes-complete/set-dur | 2 + .../html-attributes-complete/set-fill | 2 + .../html-attributes-complete/set-max | 1 + .../html-attributes-complete/set-min | 1 + .../html-attributes-complete/set-repeatCount | 1 + .../html-attributes-complete/set-repeatDur | 1 + .../html-attributes-complete/set-restart | 3 + .../svg-playbackOrder | 2 + .../svg-timelineBegin | 2 + .../html-attributes-complete/svg-zoomAndPan | 2 + .../text-lengthAdjust | 2 + .../textPath-lengthAdjust | 2 + .../html-attributes-complete/textPath-method | 2 + .../html-attributes-complete/textPath-spacing | 2 + .../html-attributes-complete/track-kind | 5 ++ .../tref-lengthAdjust | 2 + .../tspan-lengthAdjust | 2 + .../video-crossorigin | 2 + .../html-attributes-complete/video-height | 1 + .../html-attributes-complete/video-preload | 3 + .../html-attributes-complete/video-width | 1 + .../html-attributes-complete/view-zoomAndPan | 2 + html-stuff-svg/html-attributes-list/a | 15 ++++ .../html-attributes-list/all elements | 1 + html-stuff-svg/html-attributes-list/altGlyph | 23 +++++ .../html-attributes-list/altGlyphItem | 2 + html-stuff-svg/html-attributes-list/animate | 27 ++++++ .../html-attributes-list/animateMotion | 29 +++++++ .../html-attributes-list/animateTransform | 28 ++++++ html-stuff-svg/html-attributes-list/audio | 27 ++++++ html-stuff-svg/html-attributes-list/canvas | 23 +++++ html-stuff-svg/html-attributes-list/circle | 19 ++++ html-stuff-svg/html-attributes-list/clipPath | 6 ++ html-stuff-svg/html-attributes-list/cursor | 4 + html-stuff-svg/html-attributes-list/defs | 11 +++ html-stuff-svg/html-attributes-list/desc | 3 + html-stuff-svg/html-attributes-list/discard | 6 ++ html-stuff-svg/html-attributes-list/eBlend | 1 + html-stuff-svg/html-attributes-list/ellipse | 20 +++++ html-stuff-svg/html-attributes-list/feBlend | 9 ++ .../html-attributes-list/feColorMatrix | 10 +++ .../html-attributes-list/feComponentTransfer | 8 ++ .../html-attributes-list/feComposite | 14 +++ .../html-attributes-list/feConvolveMatrix | 17 ++++ html-stuff-svg/html-attributes-list/feCustom | 8 ++ .../html-attributes-list/feDiffuseLighting | 11 +++ .../html-attributes-list/feDisplacementMap | 12 +++ .../html-attributes-list/feDistantLight | 2 + .../html-attributes-list/feDropShadow | 11 +++ html-stuff-svg/html-attributes-list/feFlood | 7 ++ html-stuff-svg/html-attributes-list/feFuncA | 7 ++ html-stuff-svg/html-attributes-list/feFuncB | 7 ++ html-stuff-svg/html-attributes-list/feFuncG | 7 ++ html-stuff-svg/html-attributes-list/feFuncR | 7 ++ .../html-attributes-list/feGaussianBlur | 9 ++ html-stuff-svg/html-attributes-list/feImage | 8 ++ html-stuff-svg/html-attributes-list/feMerge | 7 ++ .../html-attributes-list/feMorphology | 10 +++ html-stuff-svg/html-attributes-list/feOffset | 10 +++ .../html-attributes-list/fePointLight | 3 + .../html-attributes-list/feSpecularLighting | 12 +++ .../html-attributes-list/feSpotLight | 8 ++ html-stuff-svg/html-attributes-list/feTile | 8 ++ .../html-attributes-list/feTurbulence | 12 +++ html-stuff-svg/html-attributes-list/filter | 9 ++ html-stuff-svg/html-attributes-list/font | 2 + html-stuff-svg/html-attributes-list/font-face | 11 +++ .../html-attributes-list/font-face-name | 2 + .../html-attributes-list/foreignObject | 20 +++++ html-stuff-svg/html-attributes-list/g | 16 ++++ html-stuff-svg/html-attributes-list/glyph | 6 ++ html-stuff-svg/html-attributes-list/glyphRef | 8 ++ html-stuff-svg/html-attributes-list/hatch | 8 ++ html-stuff-svg/html-attributes-list/hatchPath | 5 ++ html-stuff-svg/html-attributes-list/hkern | 7 ++ html-stuff-svg/html-attributes-list/iframe | 29 +++++++ html-stuff-svg/html-attributes-list/image | 21 +++++ html-stuff-svg/html-attributes-list/line | 20 +++++ .../html-attributes-list/linearGradient | 9 ++ html-stuff-svg/html-attributes-list/marker | 11 +++ html-stuff-svg/html-attributes-list/mask | 11 +++ .../html-attributes-list/meshGradient | 6 ++ html-stuff-svg/html-attributes-list/meshPatch | 2 + html-stuff-svg/html-attributes-list/meshRow | 2 + .../html-attributes-list/missing-glyph | 3 + html-stuff-svg/html-attributes-list/path | 18 ++++ html-stuff-svg/html-attributes-list/pattern | 11 +++ html-stuff-svg/html-attributes-list/polygon | 17 ++++ html-stuff-svg/html-attributes-list/polyline | 17 ++++ .../html-attributes-list/radialGradient | 11 +++ html-stuff-svg/html-attributes-list/rect | 22 +++++ html-stuff-svg/html-attributes-list/script | 1 + html-stuff-svg/html-attributes-list/set | 19 ++++ .../html-attributes-list/solidColor | 2 + html-stuff-svg/html-attributes-list/source | 6 ++ html-stuff-svg/html-attributes-list/stop | 4 + html-stuff-svg/html-attributes-list/style | 3 + html-stuff-svg/html-attributes-list/svg | 33 +++++++ html-stuff-svg/html-attributes-list/switch | 16 ++++ html-stuff-svg/html-attributes-list/symbol | 15 ++++ html-stuff-svg/html-attributes-list/text | 25 ++++++ html-stuff-svg/html-attributes-list/textPath | 22 +++++ html-stuff-svg/html-attributes-list/title | 3 + html-stuff-svg/html-attributes-list/track | 9 ++ html-stuff-svg/html-attributes-list/tref | 23 +++++ html-stuff-svg/html-attributes-list/tspan | 23 +++++ html-stuff-svg/html-attributes-list/use | 20 +++++ html-stuff-svg/html-attributes-list/video | 31 +++++++ html-stuff-svg/html-attributes-list/view | 6 ++ html-stuff-svg/html-attributes-list/vkern | 5 ++ .../html-attributes-short-docs/iframe-sandbox | 1 + html-stuff-svg/html-tag-list | 87 +++++++++++++++++++ html-stuff-svg/html-tag-short-docs/a | 1 + .../html-tag-short-docs/all elements | 1 + html-stuff-svg/html-tag-short-docs/altGlyph | 1 + .../html-tag-short-docs/altGlyphItem | 1 + html-stuff-svg/html-tag-short-docs/animate | 1 + .../html-tag-short-docs/animateMotion | 1 + .../html-tag-short-docs/animateTransform | 1 + html-stuff-svg/html-tag-short-docs/audio | 1 + html-stuff-svg/html-tag-short-docs/canvas | 1 + html-stuff-svg/html-tag-short-docs/circle | 1 + html-stuff-svg/html-tag-short-docs/clipPath | 1 + html-stuff-svg/html-tag-short-docs/cursor | 1 + html-stuff-svg/html-tag-short-docs/defs | 1 + html-stuff-svg/html-tag-short-docs/desc | 1 + html-stuff-svg/html-tag-short-docs/discard | 1 + html-stuff-svg/html-tag-short-docs/eBlend | 1 + html-stuff-svg/html-tag-short-docs/ellipse | 1 + html-stuff-svg/html-tag-short-docs/feBlend | 1 + .../html-tag-short-docs/feColorMatrix | 1 + .../html-tag-short-docs/feComponentTransfer | 1 + .../html-tag-short-docs/feComposite | 1 + .../html-tag-short-docs/feConvolveMatrix | 1 + html-stuff-svg/html-tag-short-docs/feCustom | 1 + .../html-tag-short-docs/feDiffuseLighting | 1 + .../html-tag-short-docs/feDisplacementMap | 1 + .../html-tag-short-docs/feDistantLight | 1 + .../html-tag-short-docs/feDropShadow | 1 + html-stuff-svg/html-tag-short-docs/feFlood | 1 + html-stuff-svg/html-tag-short-docs/feFuncA | 1 + html-stuff-svg/html-tag-short-docs/feFuncB | 1 + html-stuff-svg/html-tag-short-docs/feFuncG | 1 + html-stuff-svg/html-tag-short-docs/feFuncR | 1 + .../html-tag-short-docs/feGaussianBlur | 1 + html-stuff-svg/html-tag-short-docs/feImage | 1 + html-stuff-svg/html-tag-short-docs/feMerge | 1 + .../html-tag-short-docs/feMorphology | 1 + html-stuff-svg/html-tag-short-docs/feOffset | 1 + .../html-tag-short-docs/fePointLight | 1 + .../html-tag-short-docs/feSpecularLighting | 1 + .../html-tag-short-docs/feSpotLight | 1 + html-stuff-svg/html-tag-short-docs/feTile | 1 + .../html-tag-short-docs/feTurbulence | 1 + html-stuff-svg/html-tag-short-docs/filter | 1 + html-stuff-svg/html-tag-short-docs/font | 1 + html-stuff-svg/html-tag-short-docs/font-face | 1 + .../html-tag-short-docs/font-face-name | 1 + .../html-tag-short-docs/foreignObject | 1 + html-stuff-svg/html-tag-short-docs/g | 1 + html-stuff-svg/html-tag-short-docs/glyph | 1 + html-stuff-svg/html-tag-short-docs/glyphRef | 1 + html-stuff-svg/html-tag-short-docs/hatch | 1 + html-stuff-svg/html-tag-short-docs/hatchPath | 1 + html-stuff-svg/html-tag-short-docs/hkern | 1 + html-stuff-svg/html-tag-short-docs/iframe | 1 + html-stuff-svg/html-tag-short-docs/image | 1 + html-stuff-svg/html-tag-short-docs/line | 1 + .../html-tag-short-docs/linearGradient | 1 + html-stuff-svg/html-tag-short-docs/marker | 1 + html-stuff-svg/html-tag-short-docs/mask | 1 + .../html-tag-short-docs/meshGradient | 1 + html-stuff-svg/html-tag-short-docs/meshPatch | 1 + html-stuff-svg/html-tag-short-docs/meshRow | 1 + .../html-tag-short-docs/missing-glyph | 1 + html-stuff-svg/html-tag-short-docs/path | 1 + html-stuff-svg/html-tag-short-docs/pattern | 1 + html-stuff-svg/html-tag-short-docs/polygon | 1 + html-stuff-svg/html-tag-short-docs/polyline | 1 + .../html-tag-short-docs/radialGradient | 1 + html-stuff-svg/html-tag-short-docs/rect | 1 + html-stuff-svg/html-tag-short-docs/script | 1 + html-stuff-svg/html-tag-short-docs/set | 1 + html-stuff-svg/html-tag-short-docs/solidColor | 1 + html-stuff-svg/html-tag-short-docs/source | 1 + html-stuff-svg/html-tag-short-docs/stop | 1 + html-stuff-svg/html-tag-short-docs/style | 1 + html-stuff-svg/html-tag-short-docs/svg | 1 + html-stuff-svg/html-tag-short-docs/switch | 1 + html-stuff-svg/html-tag-short-docs/symbol | 1 + html-stuff-svg/html-tag-short-docs/text | 1 + html-stuff-svg/html-tag-short-docs/textPath | 1 + html-stuff-svg/html-tag-short-docs/title | 1 + html-stuff-svg/html-tag-short-docs/track | 1 + html-stuff-svg/html-tag-short-docs/tref | 1 + html-stuff-svg/html-tag-short-docs/tspan | 1 + html-stuff-svg/html-tag-short-docs/use | 1 + html-stuff-svg/html-tag-short-docs/video | 1 + html-stuff-svg/html-tag-short-docs/view | 1 + html-stuff-svg/html-tag-short-docs/vkern | 1 + 293 files changed, 1540 insertions(+) create mode 100644 html-stuff-svg/html-attributes-complete/a-target create mode 100644 html-stuff-svg/html-attributes-complete/animate-accumulate create mode 100644 html-stuff-svg/html-attributes-complete/animate-additive create mode 100644 html-stuff-svg/html-attributes-complete/animate-attributeType create mode 100644 html-stuff-svg/html-attributes-complete/animate-calcMode create mode 100644 html-stuff-svg/html-attributes-complete/animate-dur create mode 100644 html-stuff-svg/html-attributes-complete/animate-fill create mode 100644 html-stuff-svg/html-attributes-complete/animate-max create mode 100644 html-stuff-svg/html-attributes-complete/animate-min create mode 100644 html-stuff-svg/html-attributes-complete/animate-repeatCount create mode 100644 html-stuff-svg/html-attributes-complete/animate-repeatDur create mode 100644 html-stuff-svg/html-attributes-complete/animate-restart create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-accumulate create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-additive create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-calcMode create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-dur create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-fill create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-max create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-min create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-origin create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-repeatCount create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-repeatDur create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-restart create mode 100644 html-stuff-svg/html-attributes-complete/animateMotion-rotate create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-accumulate create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-additive create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-attributeType create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-calcMode create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-dur create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-fill create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-max create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-min create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-repeatCount create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-repeatDur create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-restart create mode 100644 html-stuff-svg/html-attributes-complete/animateTransform-type create mode 100644 html-stuff-svg/html-attributes-complete/audio-crossorigin create mode 100644 html-stuff-svg/html-attributes-complete/audio-preload create mode 100644 html-stuff-svg/html-attributes-complete/canvas-height create mode 100644 html-stuff-svg/html-attributes-complete/canvas-width create mode 100644 html-stuff-svg/html-attributes-complete/clipPath-clipPathUnits create mode 100644 html-stuff-svg/html-attributes-complete/feBlend-in create mode 100644 html-stuff-svg/html-attributes-complete/feBlend-in2 create mode 100644 html-stuff-svg/html-attributes-complete/feBlend-mode create mode 100644 html-stuff-svg/html-attributes-complete/feColorMatrix-in create mode 100644 html-stuff-svg/html-attributes-complete/feColorMatrix-type create mode 100644 html-stuff-svg/html-attributes-complete/feComponentTransfer-in create mode 100644 html-stuff-svg/html-attributes-complete/feComposite-in create mode 100644 html-stuff-svg/html-attributes-complete/feComposite-in2 create mode 100644 html-stuff-svg/html-attributes-complete/feComposite-operator create mode 100644 html-stuff-svg/html-attributes-complete/feConvolveMatrix-edgeMode create mode 100644 html-stuff-svg/html-attributes-complete/feConvolveMatrix-in create mode 100644 html-stuff-svg/html-attributes-complete/feConvolveMatrix-preserveAlpha create mode 100644 html-stuff-svg/html-attributes-complete/feCustom-in create mode 100644 html-stuff-svg/html-attributes-complete/feDiffuseLighting-in create mode 100644 html-stuff-svg/html-attributes-complete/feDisplacementMap-in create mode 100644 html-stuff-svg/html-attributes-complete/feDisplacementMap-in2 create mode 100644 html-stuff-svg/html-attributes-complete/feDisplacementMap-xChannelSelector create mode 100644 html-stuff-svg/html-attributes-complete/feDisplacementMap-yChannelSelector create mode 100644 html-stuff-svg/html-attributes-complete/feDropShadow-in create mode 100644 html-stuff-svg/html-attributes-complete/feFuncA-type create mode 100644 html-stuff-svg/html-attributes-complete/feFuncB-type create mode 100644 html-stuff-svg/html-attributes-complete/feFuncG-type create mode 100644 html-stuff-svg/html-attributes-complete/feFuncR-type create mode 100644 html-stuff-svg/html-attributes-complete/feGaussianBlur-in create mode 100644 html-stuff-svg/html-attributes-complete/feMorphology-in create mode 100644 html-stuff-svg/html-attributes-complete/feMorphology-operator create mode 100644 html-stuff-svg/html-attributes-complete/feOffset-in create mode 100644 html-stuff-svg/html-attributes-complete/feSpecularLighting-in create mode 100644 html-stuff-svg/html-attributes-complete/feTile-in create mode 100644 html-stuff-svg/html-attributes-complete/feTurbulence-stitchTiles create mode 100644 html-stuff-svg/html-attributes-complete/feTurbulence-type create mode 100644 html-stuff-svg/html-attributes-complete/filter-filterUnits create mode 100644 html-stuff-svg/html-attributes-complete/filter-primitiveUnits create mode 100644 html-stuff-svg/html-attributes-complete/glyph-orientation create mode 100644 html-stuff-svg/html-attributes-complete/hatch-hatchContentUnits create mode 100644 html-stuff-svg/html-attributes-complete/hatch-hatchUnits create mode 100644 html-stuff-svg/html-attributes-complete/iframe-height create mode 100644 html-stuff-svg/html-attributes-complete/iframe-width create mode 100644 html-stuff-svg/html-attributes-complete/image-height create mode 100644 html-stuff-svg/html-attributes-complete/image-width create mode 100644 html-stuff-svg/html-attributes-complete/linearGradient-gradientUnits create mode 100644 html-stuff-svg/html-attributes-complete/linearGradient-spreadMethod create mode 100644 html-stuff-svg/html-attributes-complete/marker-markerUnits create mode 100644 html-stuff-svg/html-attributes-complete/marker-orient create mode 100644 html-stuff-svg/html-attributes-complete/mask-maskContentUnits create mode 100644 html-stuff-svg/html-attributes-complete/mask-maskUnits create mode 100644 html-stuff-svg/html-attributes-complete/meshGradient-gradientUnits create mode 100644 html-stuff-svg/html-attributes-complete/pattern-patternContentUnits create mode 100644 html-stuff-svg/html-attributes-complete/pattern-patternUnits create mode 100644 html-stuff-svg/html-attributes-complete/radialGradient-gradientUnits create mode 100644 html-stuff-svg/html-attributes-complete/radialGradient-spreadMethod create mode 100644 html-stuff-svg/html-attributes-complete/set-attributeType create mode 100644 html-stuff-svg/html-attributes-complete/set-dur create mode 100644 html-stuff-svg/html-attributes-complete/set-fill create mode 100644 html-stuff-svg/html-attributes-complete/set-max create mode 100644 html-stuff-svg/html-attributes-complete/set-min create mode 100644 html-stuff-svg/html-attributes-complete/set-repeatCount create mode 100644 html-stuff-svg/html-attributes-complete/set-repeatDur create mode 100644 html-stuff-svg/html-attributes-complete/set-restart create mode 100644 html-stuff-svg/html-attributes-complete/svg-playbackOrder create mode 100644 html-stuff-svg/html-attributes-complete/svg-timelineBegin create mode 100644 html-stuff-svg/html-attributes-complete/svg-zoomAndPan create mode 100644 html-stuff-svg/html-attributes-complete/text-lengthAdjust create mode 100644 html-stuff-svg/html-attributes-complete/textPath-lengthAdjust create mode 100644 html-stuff-svg/html-attributes-complete/textPath-method create mode 100644 html-stuff-svg/html-attributes-complete/textPath-spacing create mode 100644 html-stuff-svg/html-attributes-complete/track-kind create mode 100644 html-stuff-svg/html-attributes-complete/tref-lengthAdjust create mode 100644 html-stuff-svg/html-attributes-complete/tspan-lengthAdjust create mode 100644 html-stuff-svg/html-attributes-complete/video-crossorigin create mode 100644 html-stuff-svg/html-attributes-complete/video-height create mode 100644 html-stuff-svg/html-attributes-complete/video-preload create mode 100644 html-stuff-svg/html-attributes-complete/video-width create mode 100644 html-stuff-svg/html-attributes-complete/view-zoomAndPan create mode 100644 html-stuff-svg/html-attributes-list/a create mode 100644 html-stuff-svg/html-attributes-list/all elements create mode 100644 html-stuff-svg/html-attributes-list/altGlyph create mode 100644 html-stuff-svg/html-attributes-list/altGlyphItem create mode 100644 html-stuff-svg/html-attributes-list/animate create mode 100644 html-stuff-svg/html-attributes-list/animateMotion create mode 100644 html-stuff-svg/html-attributes-list/animateTransform create mode 100644 html-stuff-svg/html-attributes-list/audio create mode 100644 html-stuff-svg/html-attributes-list/canvas create mode 100644 html-stuff-svg/html-attributes-list/circle create mode 100644 html-stuff-svg/html-attributes-list/clipPath create mode 100644 html-stuff-svg/html-attributes-list/cursor create mode 100644 html-stuff-svg/html-attributes-list/defs create mode 100644 html-stuff-svg/html-attributes-list/desc create mode 100644 html-stuff-svg/html-attributes-list/discard create mode 100644 html-stuff-svg/html-attributes-list/eBlend create mode 100644 html-stuff-svg/html-attributes-list/ellipse create mode 100644 html-stuff-svg/html-attributes-list/feBlend create mode 100644 html-stuff-svg/html-attributes-list/feColorMatrix create mode 100644 html-stuff-svg/html-attributes-list/feComponentTransfer create mode 100644 html-stuff-svg/html-attributes-list/feComposite create mode 100644 html-stuff-svg/html-attributes-list/feConvolveMatrix create mode 100644 html-stuff-svg/html-attributes-list/feCustom create mode 100644 html-stuff-svg/html-attributes-list/feDiffuseLighting create mode 100644 html-stuff-svg/html-attributes-list/feDisplacementMap create mode 100644 html-stuff-svg/html-attributes-list/feDistantLight create mode 100644 html-stuff-svg/html-attributes-list/feDropShadow create mode 100644 html-stuff-svg/html-attributes-list/feFlood create mode 100644 html-stuff-svg/html-attributes-list/feFuncA create mode 100644 html-stuff-svg/html-attributes-list/feFuncB create mode 100644 html-stuff-svg/html-attributes-list/feFuncG create mode 100644 html-stuff-svg/html-attributes-list/feFuncR create mode 100644 html-stuff-svg/html-attributes-list/feGaussianBlur create mode 100644 html-stuff-svg/html-attributes-list/feImage create mode 100644 html-stuff-svg/html-attributes-list/feMerge create mode 100644 html-stuff-svg/html-attributes-list/feMorphology create mode 100644 html-stuff-svg/html-attributes-list/feOffset create mode 100644 html-stuff-svg/html-attributes-list/fePointLight create mode 100644 html-stuff-svg/html-attributes-list/feSpecularLighting create mode 100644 html-stuff-svg/html-attributes-list/feSpotLight create mode 100644 html-stuff-svg/html-attributes-list/feTile create mode 100644 html-stuff-svg/html-attributes-list/feTurbulence create mode 100644 html-stuff-svg/html-attributes-list/filter create mode 100644 html-stuff-svg/html-attributes-list/font create mode 100644 html-stuff-svg/html-attributes-list/font-face create mode 100644 html-stuff-svg/html-attributes-list/font-face-name create mode 100644 html-stuff-svg/html-attributes-list/foreignObject create mode 100644 html-stuff-svg/html-attributes-list/g create mode 100644 html-stuff-svg/html-attributes-list/glyph create mode 100644 html-stuff-svg/html-attributes-list/glyphRef create mode 100644 html-stuff-svg/html-attributes-list/hatch create mode 100644 html-stuff-svg/html-attributes-list/hatchPath create mode 100644 html-stuff-svg/html-attributes-list/hkern create mode 100644 html-stuff-svg/html-attributes-list/iframe create mode 100644 html-stuff-svg/html-attributes-list/image create mode 100644 html-stuff-svg/html-attributes-list/line create mode 100644 html-stuff-svg/html-attributes-list/linearGradient create mode 100644 html-stuff-svg/html-attributes-list/marker create mode 100644 html-stuff-svg/html-attributes-list/mask create mode 100644 html-stuff-svg/html-attributes-list/meshGradient create mode 100644 html-stuff-svg/html-attributes-list/meshPatch create mode 100644 html-stuff-svg/html-attributes-list/meshRow create mode 100644 html-stuff-svg/html-attributes-list/missing-glyph create mode 100644 html-stuff-svg/html-attributes-list/path create mode 100644 html-stuff-svg/html-attributes-list/pattern create mode 100644 html-stuff-svg/html-attributes-list/polygon create mode 100644 html-stuff-svg/html-attributes-list/polyline create mode 100644 html-stuff-svg/html-attributes-list/radialGradient create mode 100644 html-stuff-svg/html-attributes-list/rect create mode 100644 html-stuff-svg/html-attributes-list/script create mode 100644 html-stuff-svg/html-attributes-list/set create mode 100644 html-stuff-svg/html-attributes-list/solidColor create mode 100644 html-stuff-svg/html-attributes-list/source create mode 100644 html-stuff-svg/html-attributes-list/stop create mode 100644 html-stuff-svg/html-attributes-list/style create mode 100644 html-stuff-svg/html-attributes-list/svg create mode 100644 html-stuff-svg/html-attributes-list/switch create mode 100644 html-stuff-svg/html-attributes-list/symbol create mode 100644 html-stuff-svg/html-attributes-list/text create mode 100644 html-stuff-svg/html-attributes-list/textPath create mode 100644 html-stuff-svg/html-attributes-list/title create mode 100644 html-stuff-svg/html-attributes-list/track create mode 100644 html-stuff-svg/html-attributes-list/tref create mode 100644 html-stuff-svg/html-attributes-list/tspan create mode 100644 html-stuff-svg/html-attributes-list/use create mode 100644 html-stuff-svg/html-attributes-list/video create mode 100644 html-stuff-svg/html-attributes-list/view create mode 100644 html-stuff-svg/html-attributes-list/vkern create mode 100644 html-stuff-svg/html-attributes-short-docs/iframe-sandbox create mode 100644 html-stuff-svg/html-tag-list create mode 100644 html-stuff-svg/html-tag-short-docs/a create mode 100644 html-stuff-svg/html-tag-short-docs/all elements create mode 100644 html-stuff-svg/html-tag-short-docs/altGlyph create mode 100644 html-stuff-svg/html-tag-short-docs/altGlyphItem create mode 100644 html-stuff-svg/html-tag-short-docs/animate create mode 100644 html-stuff-svg/html-tag-short-docs/animateMotion create mode 100644 html-stuff-svg/html-tag-short-docs/animateTransform create mode 100644 html-stuff-svg/html-tag-short-docs/audio create mode 100644 html-stuff-svg/html-tag-short-docs/canvas create mode 100644 html-stuff-svg/html-tag-short-docs/circle create mode 100644 html-stuff-svg/html-tag-short-docs/clipPath create mode 100644 html-stuff-svg/html-tag-short-docs/cursor create mode 100644 html-stuff-svg/html-tag-short-docs/defs create mode 100644 html-stuff-svg/html-tag-short-docs/desc create mode 100644 html-stuff-svg/html-tag-short-docs/discard create mode 100644 html-stuff-svg/html-tag-short-docs/eBlend create mode 100644 html-stuff-svg/html-tag-short-docs/ellipse create mode 100644 html-stuff-svg/html-tag-short-docs/feBlend create mode 100644 html-stuff-svg/html-tag-short-docs/feColorMatrix create mode 100644 html-stuff-svg/html-tag-short-docs/feComponentTransfer create mode 100644 html-stuff-svg/html-tag-short-docs/feComposite create mode 100644 html-stuff-svg/html-tag-short-docs/feConvolveMatrix create mode 100644 html-stuff-svg/html-tag-short-docs/feCustom create mode 100644 html-stuff-svg/html-tag-short-docs/feDiffuseLighting create mode 100644 html-stuff-svg/html-tag-short-docs/feDisplacementMap create mode 100644 html-stuff-svg/html-tag-short-docs/feDistantLight create mode 100644 html-stuff-svg/html-tag-short-docs/feDropShadow create mode 100644 html-stuff-svg/html-tag-short-docs/feFlood create mode 100644 html-stuff-svg/html-tag-short-docs/feFuncA create mode 100644 html-stuff-svg/html-tag-short-docs/feFuncB create mode 100644 html-stuff-svg/html-tag-short-docs/feFuncG create mode 100644 html-stuff-svg/html-tag-short-docs/feFuncR create mode 100644 html-stuff-svg/html-tag-short-docs/feGaussianBlur create mode 100644 html-stuff-svg/html-tag-short-docs/feImage create mode 100644 html-stuff-svg/html-tag-short-docs/feMerge create mode 100644 html-stuff-svg/html-tag-short-docs/feMorphology create mode 100644 html-stuff-svg/html-tag-short-docs/feOffset create mode 100644 html-stuff-svg/html-tag-short-docs/fePointLight create mode 100644 html-stuff-svg/html-tag-short-docs/feSpecularLighting create mode 100644 html-stuff-svg/html-tag-short-docs/feSpotLight create mode 100644 html-stuff-svg/html-tag-short-docs/feTile create mode 100644 html-stuff-svg/html-tag-short-docs/feTurbulence create mode 100644 html-stuff-svg/html-tag-short-docs/filter create mode 100644 html-stuff-svg/html-tag-short-docs/font create mode 100644 html-stuff-svg/html-tag-short-docs/font-face create mode 100644 html-stuff-svg/html-tag-short-docs/font-face-name create mode 100644 html-stuff-svg/html-tag-short-docs/foreignObject create mode 100644 html-stuff-svg/html-tag-short-docs/g create mode 100644 html-stuff-svg/html-tag-short-docs/glyph create mode 100644 html-stuff-svg/html-tag-short-docs/glyphRef create mode 100644 html-stuff-svg/html-tag-short-docs/hatch create mode 100644 html-stuff-svg/html-tag-short-docs/hatchPath create mode 100644 html-stuff-svg/html-tag-short-docs/hkern create mode 100644 html-stuff-svg/html-tag-short-docs/iframe create mode 100644 html-stuff-svg/html-tag-short-docs/image create mode 100644 html-stuff-svg/html-tag-short-docs/line create mode 100644 html-stuff-svg/html-tag-short-docs/linearGradient create mode 100644 html-stuff-svg/html-tag-short-docs/marker create mode 100644 html-stuff-svg/html-tag-short-docs/mask create mode 100644 html-stuff-svg/html-tag-short-docs/meshGradient create mode 100644 html-stuff-svg/html-tag-short-docs/meshPatch create mode 100644 html-stuff-svg/html-tag-short-docs/meshRow create mode 100644 html-stuff-svg/html-tag-short-docs/missing-glyph create mode 100644 html-stuff-svg/html-tag-short-docs/path create mode 100644 html-stuff-svg/html-tag-short-docs/pattern create mode 100644 html-stuff-svg/html-tag-short-docs/polygon create mode 100644 html-stuff-svg/html-tag-short-docs/polyline create mode 100644 html-stuff-svg/html-tag-short-docs/radialGradient create mode 100644 html-stuff-svg/html-tag-short-docs/rect create mode 100644 html-stuff-svg/html-tag-short-docs/script create mode 100644 html-stuff-svg/html-tag-short-docs/set create mode 100644 html-stuff-svg/html-tag-short-docs/solidColor create mode 100644 html-stuff-svg/html-tag-short-docs/source create mode 100644 html-stuff-svg/html-tag-short-docs/stop create mode 100644 html-stuff-svg/html-tag-short-docs/style create mode 100644 html-stuff-svg/html-tag-short-docs/svg create mode 100644 html-stuff-svg/html-tag-short-docs/switch create mode 100644 html-stuff-svg/html-tag-short-docs/symbol create mode 100644 html-stuff-svg/html-tag-short-docs/text create mode 100644 html-stuff-svg/html-tag-short-docs/textPath create mode 100644 html-stuff-svg/html-tag-short-docs/title create mode 100644 html-stuff-svg/html-tag-short-docs/track create mode 100644 html-stuff-svg/html-tag-short-docs/tref create mode 100644 html-stuff-svg/html-tag-short-docs/tspan create mode 100644 html-stuff-svg/html-tag-short-docs/use create mode 100644 html-stuff-svg/html-tag-short-docs/video create mode 100644 html-stuff-svg/html-tag-short-docs/view create mode 100644 html-stuff-svg/html-tag-short-docs/vkern diff --git a/html-stuff-svg/html-attributes-complete/a-target b/html-stuff-svg/html-attributes-complete/a-target new file mode 100644 index 0000000..98a696e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-target @@ -0,0 +1,5 @@ +_blank +_parent +_replace +_self +_top \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-accumulate b/html-stuff-svg/html-attributes-complete/animate-accumulate new file mode 100644 index 0000000..2c37e2a --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-accumulate @@ -0,0 +1,2 @@ +none +sum \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-additive b/html-stuff-svg/html-attributes-complete/animate-additive new file mode 100644 index 0000000..d0b0feb --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-additive @@ -0,0 +1,2 @@ +replace +sum \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-attributeType b/html-stuff-svg/html-attributes-complete/animate-attributeType new file mode 100644 index 0000000..e867831 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-attributeType @@ -0,0 +1,3 @@ +CSS +XML +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-calcMode b/html-stuff-svg/html-attributes-complete/animate-calcMode new file mode 100644 index 0000000..9787865 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-calcMode @@ -0,0 +1,4 @@ +discrete +linear +paced +spline \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-dur b/html-stuff-svg/html-attributes-complete/animate-dur new file mode 100644 index 0000000..eab4e47 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-dur @@ -0,0 +1,2 @@ +indefinite +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-fill b/html-stuff-svg/html-attributes-complete/animate-fill new file mode 100644 index 0000000..3031f31 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-fill @@ -0,0 +1,2 @@ +freeze +remove \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-max b/html-stuff-svg/html-attributes-complete/animate-max new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-max @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-min b/html-stuff-svg/html-attributes-complete/animate-min new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-min @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-repeatCount b/html-stuff-svg/html-attributes-complete/animate-repeatCount new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-repeatCount @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-repeatDur b/html-stuff-svg/html-attributes-complete/animate-repeatDur new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-repeatDur @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animate-restart b/html-stuff-svg/html-attributes-complete/animate-restart new file mode 100644 index 0000000..0b3ff11 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animate-restart @@ -0,0 +1,3 @@ +always +never +whenNotActive \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-accumulate b/html-stuff-svg/html-attributes-complete/animateMotion-accumulate new file mode 100644 index 0000000..2c37e2a --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-accumulate @@ -0,0 +1,2 @@ +none +sum \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-additive b/html-stuff-svg/html-attributes-complete/animateMotion-additive new file mode 100644 index 0000000..d0b0feb --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-additive @@ -0,0 +1,2 @@ +replace +sum \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-calcMode b/html-stuff-svg/html-attributes-complete/animateMotion-calcMode new file mode 100644 index 0000000..9787865 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-calcMode @@ -0,0 +1,4 @@ +discrete +linear +paced +spline \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-dur b/html-stuff-svg/html-attributes-complete/animateMotion-dur new file mode 100644 index 0000000..eab4e47 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-dur @@ -0,0 +1,2 @@ +indefinite +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-fill b/html-stuff-svg/html-attributes-complete/animateMotion-fill new file mode 100644 index 0000000..3031f31 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-fill @@ -0,0 +1,2 @@ +freeze +remove \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-max b/html-stuff-svg/html-attributes-complete/animateMotion-max new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-max @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-min b/html-stuff-svg/html-attributes-complete/animateMotion-min new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-min @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-origin b/html-stuff-svg/html-attributes-complete/animateMotion-origin new file mode 100644 index 0000000..331d858 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-origin @@ -0,0 +1 @@ +default \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-repeatCount b/html-stuff-svg/html-attributes-complete/animateMotion-repeatCount new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-repeatCount @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-repeatDur b/html-stuff-svg/html-attributes-complete/animateMotion-repeatDur new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-repeatDur @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-restart b/html-stuff-svg/html-attributes-complete/animateMotion-restart new file mode 100644 index 0000000..0b3ff11 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-restart @@ -0,0 +1,3 @@ +always +never +whenNotActive \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateMotion-rotate b/html-stuff-svg/html-attributes-complete/animateMotion-rotate new file mode 100644 index 0000000..5ca736d --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateMotion-rotate @@ -0,0 +1,2 @@ +auto +auto-reverse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-accumulate b/html-stuff-svg/html-attributes-complete/animateTransform-accumulate new file mode 100644 index 0000000..2c37e2a --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-accumulate @@ -0,0 +1,2 @@ +none +sum \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-additive b/html-stuff-svg/html-attributes-complete/animateTransform-additive new file mode 100644 index 0000000..d0b0feb --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-additive @@ -0,0 +1,2 @@ +replace +sum \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-attributeType b/html-stuff-svg/html-attributes-complete/animateTransform-attributeType new file mode 100644 index 0000000..e867831 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-attributeType @@ -0,0 +1,3 @@ +CSS +XML +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-calcMode b/html-stuff-svg/html-attributes-complete/animateTransform-calcMode new file mode 100644 index 0000000..9787865 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-calcMode @@ -0,0 +1,4 @@ +discrete +linear +paced +spline \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-dur b/html-stuff-svg/html-attributes-complete/animateTransform-dur new file mode 100644 index 0000000..eab4e47 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-dur @@ -0,0 +1,2 @@ +indefinite +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-fill b/html-stuff-svg/html-attributes-complete/animateTransform-fill new file mode 100644 index 0000000..3031f31 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-fill @@ -0,0 +1,2 @@ +freeze +remove \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-max b/html-stuff-svg/html-attributes-complete/animateTransform-max new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-max @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-min b/html-stuff-svg/html-attributes-complete/animateTransform-min new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-min @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-repeatCount b/html-stuff-svg/html-attributes-complete/animateTransform-repeatCount new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-repeatCount @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-repeatDur b/html-stuff-svg/html-attributes-complete/animateTransform-repeatDur new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-repeatDur @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-restart b/html-stuff-svg/html-attributes-complete/animateTransform-restart new file mode 100644 index 0000000..0b3ff11 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-restart @@ -0,0 +1,3 @@ +always +never +whenNotActive \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/animateTransform-type b/html-stuff-svg/html-attributes-complete/animateTransform-type new file mode 100644 index 0000000..06bf69a --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/animateTransform-type @@ -0,0 +1,5 @@ +rotate +scale +skewX +skewY +translate \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-crossorigin b/html-stuff-svg/html-attributes-complete/audio-crossorigin new file mode 100644 index 0000000..4e64f29 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-crossorigin @@ -0,0 +1,2 @@ +anonymous +use-credentials \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-preload b/html-stuff-svg/html-attributes-complete/audio-preload new file mode 100644 index 0000000..1219858 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-preload @@ -0,0 +1,3 @@ +auto +metadata +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-height b/html-stuff-svg/html-attributes-complete/canvas-height new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-height @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-width b/html-stuff-svg/html-attributes-complete/canvas-width new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-width @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/clipPath-clipPathUnits b/html-stuff-svg/html-attributes-complete/clipPath-clipPathUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/clipPath-clipPathUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feBlend-in b/html-stuff-svg/html-attributes-complete/feBlend-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feBlend-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feBlend-in2 b/html-stuff-svg/html-attributes-complete/feBlend-in2 new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feBlend-in2 @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feBlend-mode b/html-stuff-svg/html-attributes-complete/feBlend-mode new file mode 100644 index 0000000..108ad4d --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feBlend-mode @@ -0,0 +1,5 @@ +darken +lighten +multiply +normal +screen \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feColorMatrix-in b/html-stuff-svg/html-attributes-complete/feColorMatrix-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feColorMatrix-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feColorMatrix-type b/html-stuff-svg/html-attributes-complete/feColorMatrix-type new file mode 100644 index 0000000..21f5344 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feColorMatrix-type @@ -0,0 +1,4 @@ +hueRotate +luminanceToAlpha +matrix +saturate \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feComponentTransfer-in b/html-stuff-svg/html-attributes-complete/feComponentTransfer-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feComponentTransfer-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feComposite-in b/html-stuff-svg/html-attributes-complete/feComposite-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feComposite-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feComposite-in2 b/html-stuff-svg/html-attributes-complete/feComposite-in2 new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feComposite-in2 @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feComposite-operator b/html-stuff-svg/html-attributes-complete/feComposite-operator new file mode 100644 index 0000000..1b7dc09 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feComposite-operator @@ -0,0 +1,6 @@ +arithmetic +atop +in +out +over +xor \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feConvolveMatrix-edgeMode b/html-stuff-svg/html-attributes-complete/feConvolveMatrix-edgeMode new file mode 100644 index 0000000..5954e04 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feConvolveMatrix-edgeMode @@ -0,0 +1,3 @@ +duplicate +none +wrap \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feConvolveMatrix-in b/html-stuff-svg/html-attributes-complete/feConvolveMatrix-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feConvolveMatrix-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feConvolveMatrix-preserveAlpha b/html-stuff-svg/html-attributes-complete/feConvolveMatrix-preserveAlpha new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feConvolveMatrix-preserveAlpha @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feCustom-in b/html-stuff-svg/html-attributes-complete/feCustom-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feCustom-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feDiffuseLighting-in b/html-stuff-svg/html-attributes-complete/feDiffuseLighting-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feDiffuseLighting-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feDisplacementMap-in b/html-stuff-svg/html-attributes-complete/feDisplacementMap-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feDisplacementMap-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feDisplacementMap-in2 b/html-stuff-svg/html-attributes-complete/feDisplacementMap-in2 new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feDisplacementMap-in2 @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feDisplacementMap-xChannelSelector b/html-stuff-svg/html-attributes-complete/feDisplacementMap-xChannelSelector new file mode 100644 index 0000000..57a4061 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feDisplacementMap-xChannelSelector @@ -0,0 +1,4 @@ +A +B +G +R \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feDisplacementMap-yChannelSelector b/html-stuff-svg/html-attributes-complete/feDisplacementMap-yChannelSelector new file mode 100644 index 0000000..57a4061 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feDisplacementMap-yChannelSelector @@ -0,0 +1,4 @@ +A +B +G +R \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feDropShadow-in b/html-stuff-svg/html-attributes-complete/feDropShadow-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feDropShadow-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feFuncA-type b/html-stuff-svg/html-attributes-complete/feFuncA-type new file mode 100644 index 0000000..a7091b6 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feFuncA-type @@ -0,0 +1,5 @@ +discrete +gamma +identity +linear +table \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feFuncB-type b/html-stuff-svg/html-attributes-complete/feFuncB-type new file mode 100644 index 0000000..a7091b6 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feFuncB-type @@ -0,0 +1,5 @@ +discrete +gamma +identity +linear +table \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feFuncG-type b/html-stuff-svg/html-attributes-complete/feFuncG-type new file mode 100644 index 0000000..a7091b6 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feFuncG-type @@ -0,0 +1,5 @@ +discrete +gamma +identity +linear +table \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feFuncR-type b/html-stuff-svg/html-attributes-complete/feFuncR-type new file mode 100644 index 0000000..a7091b6 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feFuncR-type @@ -0,0 +1,5 @@ +discrete +gamma +identity +linear +table \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feGaussianBlur-in b/html-stuff-svg/html-attributes-complete/feGaussianBlur-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feGaussianBlur-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feMorphology-in b/html-stuff-svg/html-attributes-complete/feMorphology-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feMorphology-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feMorphology-operator b/html-stuff-svg/html-attributes-complete/feMorphology-operator new file mode 100644 index 0000000..5a4a725 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feMorphology-operator @@ -0,0 +1,2 @@ +dilate +erode \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feOffset-in b/html-stuff-svg/html-attributes-complete/feOffset-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feOffset-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feSpecularLighting-in b/html-stuff-svg/html-attributes-complete/feSpecularLighting-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feSpecularLighting-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feTile-in b/html-stuff-svg/html-attributes-complete/feTile-in new file mode 100644 index 0000000..7af8591 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feTile-in @@ -0,0 +1,6 @@ +BackgroundAlpha +BackgroundImage +FillPaint +SourceAlpha +SourceGraphic +StrokePaint \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feTurbulence-stitchTiles b/html-stuff-svg/html-attributes-complete/feTurbulence-stitchTiles new file mode 100644 index 0000000..c2f6a85 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feTurbulence-stitchTiles @@ -0,0 +1,2 @@ +noStitch +stitch \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feTurbulence-type b/html-stuff-svg/html-attributes-complete/feTurbulence-type new file mode 100644 index 0000000..da1ff7d --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feTurbulence-type @@ -0,0 +1,2 @@ +fractalNoise +turbulence \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/filter-filterUnits b/html-stuff-svg/html-attributes-complete/filter-filterUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/filter-filterUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/filter-primitiveUnits b/html-stuff-svg/html-attributes-complete/filter-primitiveUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/filter-primitiveUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/glyph-orientation b/html-stuff-svg/html-attributes-complete/glyph-orientation new file mode 100644 index 0000000..c6f38a4 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/glyph-orientation @@ -0,0 +1,2 @@ +h +v \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hatch-hatchContentUnits b/html-stuff-svg/html-attributes-complete/hatch-hatchContentUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hatch-hatchContentUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hatch-hatchUnits b/html-stuff-svg/html-attributes-complete/hatch-hatchUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hatch-hatchUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-height b/html-stuff-svg/html-attributes-complete/iframe-height new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-height @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-width b/html-stuff-svg/html-attributes-complete/iframe-width new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-width @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-height b/html-stuff-svg/html-attributes-complete/image-height new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-height @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-width b/html-stuff-svg/html-attributes-complete/image-width new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-width @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/linearGradient-gradientUnits b/html-stuff-svg/html-attributes-complete/linearGradient-gradientUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/linearGradient-gradientUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/linearGradient-spreadMethod b/html-stuff-svg/html-attributes-complete/linearGradient-spreadMethod new file mode 100644 index 0000000..929557c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/linearGradient-spreadMethod @@ -0,0 +1,3 @@ +pad +reflect +repeat \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/marker-markerUnits b/html-stuff-svg/html-attributes-complete/marker-markerUnits new file mode 100644 index 0000000..fc310c9 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/marker-markerUnits @@ -0,0 +1,2 @@ +strokeWidth +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/marker-orient b/html-stuff-svg/html-attributes-complete/marker-orient new file mode 100644 index 0000000..f59ba31 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/marker-orient @@ -0,0 +1,2 @@ +auto +auto-start-reverse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/mask-maskContentUnits b/html-stuff-svg/html-attributes-complete/mask-maskContentUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/mask-maskContentUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/mask-maskUnits b/html-stuff-svg/html-attributes-complete/mask-maskUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/mask-maskUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/meshGradient-gradientUnits b/html-stuff-svg/html-attributes-complete/meshGradient-gradientUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/meshGradient-gradientUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/pattern-patternContentUnits b/html-stuff-svg/html-attributes-complete/pattern-patternContentUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/pattern-patternContentUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/pattern-patternUnits b/html-stuff-svg/html-attributes-complete/pattern-patternUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/pattern-patternUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/radialGradient-gradientUnits b/html-stuff-svg/html-attributes-complete/radialGradient-gradientUnits new file mode 100644 index 0000000..a3ff87c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/radialGradient-gradientUnits @@ -0,0 +1,2 @@ +objectBoundingBox +userSpaceOnUse \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/radialGradient-spreadMethod b/html-stuff-svg/html-attributes-complete/radialGradient-spreadMethod new file mode 100644 index 0000000..929557c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/radialGradient-spreadMethod @@ -0,0 +1,3 @@ +pad +reflect +repeat \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-attributeType b/html-stuff-svg/html-attributes-complete/set-attributeType new file mode 100644 index 0000000..e867831 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-attributeType @@ -0,0 +1,3 @@ +CSS +XML +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-dur b/html-stuff-svg/html-attributes-complete/set-dur new file mode 100644 index 0000000..eab4e47 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-dur @@ -0,0 +1,2 @@ +indefinite +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-fill b/html-stuff-svg/html-attributes-complete/set-fill new file mode 100644 index 0000000..3031f31 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-fill @@ -0,0 +1,2 @@ +freeze +remove \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-max b/html-stuff-svg/html-attributes-complete/set-max new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-max @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-min b/html-stuff-svg/html-attributes-complete/set-min new file mode 100644 index 0000000..27949aa --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-min @@ -0,0 +1 @@ +media \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-repeatCount b/html-stuff-svg/html-attributes-complete/set-repeatCount new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-repeatCount @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-repeatDur b/html-stuff-svg/html-attributes-complete/set-repeatDur new file mode 100644 index 0000000..09bac1c --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-repeatDur @@ -0,0 +1 @@ +indefinite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/set-restart b/html-stuff-svg/html-attributes-complete/set-restart new file mode 100644 index 0000000..0b3ff11 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/set-restart @@ -0,0 +1,3 @@ +always +never +whenNotActive \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-playbackOrder b/html-stuff-svg/html-attributes-complete/svg-playbackOrder new file mode 100644 index 0000000..89695a2 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-playbackOrder @@ -0,0 +1,2 @@ +all +forwardOnly \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-timelineBegin b/html-stuff-svg/html-attributes-complete/svg-timelineBegin new file mode 100644 index 0000000..5b1a613 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-timelineBegin @@ -0,0 +1,2 @@ +onLoad +onStart \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-zoomAndPan b/html-stuff-svg/html-attributes-complete/svg-zoomAndPan new file mode 100644 index 0000000..eb5b1a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-zoomAndPan @@ -0,0 +1,2 @@ +disable +magnify \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-lengthAdjust b/html-stuff-svg/html-attributes-complete/text-lengthAdjust new file mode 100644 index 0000000..c00ef59 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-lengthAdjust @@ -0,0 +1,2 @@ +spacing +spacingAndGlyphs \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-lengthAdjust b/html-stuff-svg/html-attributes-complete/textPath-lengthAdjust new file mode 100644 index 0000000..c00ef59 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-lengthAdjust @@ -0,0 +1,2 @@ +spacing +spacingAndGlyphs \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-method b/html-stuff-svg/html-attributes-complete/textPath-method new file mode 100644 index 0000000..a5d4233 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-method @@ -0,0 +1,2 @@ +align +stretch \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-spacing b/html-stuff-svg/html-attributes-complete/textPath-spacing new file mode 100644 index 0000000..5609226 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-spacing @@ -0,0 +1,2 @@ +auto +exact \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/track-kind b/html-stuff-svg/html-attributes-complete/track-kind new file mode 100644 index 0000000..cd99a04 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/track-kind @@ -0,0 +1,5 @@ +captions +chapters +descriptions +metadata +subtitles \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-lengthAdjust b/html-stuff-svg/html-attributes-complete/tref-lengthAdjust new file mode 100644 index 0000000..c00ef59 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-lengthAdjust @@ -0,0 +1,2 @@ +spacing +spacingAndGlyphs \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-lengthAdjust b/html-stuff-svg/html-attributes-complete/tspan-lengthAdjust new file mode 100644 index 0000000..c00ef59 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-lengthAdjust @@ -0,0 +1,2 @@ +spacing +spacingAndGlyphs \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-crossorigin b/html-stuff-svg/html-attributes-complete/video-crossorigin new file mode 100644 index 0000000..4e64f29 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-crossorigin @@ -0,0 +1,2 @@ +anonymous +use-credentials \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-height b/html-stuff-svg/html-attributes-complete/video-height new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-height @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-preload b/html-stuff-svg/html-attributes-complete/video-preload new file mode 100644 index 0000000..1219858 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-preload @@ -0,0 +1,3 @@ +auto +metadata +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-width b/html-stuff-svg/html-attributes-complete/video-width new file mode 100644 index 0000000..4d18c3e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-width @@ -0,0 +1 @@ +auto \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-zoomAndPan b/html-stuff-svg/html-attributes-complete/view-zoomAndPan new file mode 100644 index 0000000..eb5b1a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-zoomAndPan @@ -0,0 +1,2 @@ +disable +magnify \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/a b/html-stuff-svg/html-attributes-list/a new file mode 100644 index 0000000..1dc472e --- /dev/null +++ b/html-stuff-svg/html-attributes-list/a @@ -0,0 +1,15 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +target _replace | _self | _parent | _top | _blank | \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/all elements b/html-stuff-svg/html-attributes-list/all elements new file mode 100644 index 0000000..ee3dad9 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/all elements @@ -0,0 +1 @@ +id name (Issue in spec to define the term 'name' [https://svgwg.org/svg2-draft/struct.html#IDAttribute]) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/altGlyph b/html-stuff-svg/html-attributes-list/altGlyph new file mode 100644 index 0000000..cf1daed --- /dev/null +++ b/html-stuff-svg/html-attributes-list/altGlyph @@ -0,0 +1,23 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +format +glyphRef +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +rotate +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +x (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) +y (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/altGlyphItem b/html-stuff-svg/html-attributes-list/altGlyphItem new file mode 100644 index 0000000..1cc066a --- /dev/null +++ b/html-stuff-svg/html-attributes-list/altGlyphItem @@ -0,0 +1,2 @@ +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/animate b/html-stuff-svg/html-attributes-list/animate new file mode 100644 index 0000000..ce65e4e --- /dev/null +++ b/html-stuff-svg/html-attributes-list/animate @@ -0,0 +1,27 @@ +accumulate none | sum +additive replace | sum +attributeName +attributeType CSS | XML | auto +begin (allows whitespace in some but not all cases) +by [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +calcMode discrete | linear | paced | spline +dur | media | indefinite (allows whitespace for the clockvalue) +end (allows whitespace in some but not all cases) +fill freeze | remove +from [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +keySplines (doesn't say of what except in prose, but are 4 control points per spline, so essentially ) +keyTimes (essentially with additional restrictions on the number of items in the list and the number range) +max | media (allows whitespace for the clockvalue) +min | media (allows whitespace for the clockvalue) +onbegin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onend [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onrepeat [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +repeatCount | indefinite +repeatDur | indefinite (allows whitespace for the clockvalue) +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +restart always | whenNotActive | never +systemLanguage a comma-separated list of language names as defined in BCP 47 +to [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +values [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#ValuesAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/animateMotion b/html-stuff-svg/html-attributes-list/animateMotion new file mode 100644 index 0000000..e08512a --- /dev/null +++ b/html-stuff-svg/html-attributes-list/animateMotion @@ -0,0 +1,29 @@ +accumulate none | sum +additive replace | sum +begin (allows whitespace in some but not all cases) +by [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +calcMode discrete | linear | paced | spline +dur | media | indefinite (allows whitespace for the clockvalue) +end (allows whitespace in some but not all cases) +fill freeze | remove +from [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +keyPoints +keySplines (doesn't say of what except in prose, but are 4 control points per spline, so essentially ) +keyTimes (essentially with additional restrictions on the number of items in the list and the number range) +max | media (allows whitespace for the clockvalue) +min | media (allows whitespace for the clockvalue) +onbegin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onend [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onrepeat [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +origin default (the attribute "has no effect in SVG" according to spec, do we need to keep it at all?) +path +repeatCount | indefinite +repeatDur | indefinite (allows whitespace for the clockvalue) +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +restart always | whenNotActive | never +rotate | auto | auto-reverse +systemLanguage a comma-separated list of language names as defined in BCP 47 +to [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +values [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#ValuesAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/animateTransform b/html-stuff-svg/html-attributes-list/animateTransform new file mode 100644 index 0000000..dd6c1fd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/animateTransform @@ -0,0 +1,28 @@ +accumulate none | sum +additive replace | sum +attributeName +attributeType CSS | XML | auto +begin (allows whitespace in some but not all cases) +by [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +calcMode discrete | linear | paced | spline +dur | media | indefinite (allows whitespace for the clockvalue) +end (allows whitespace in some but not all cases) +fill freeze | remove +from [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +keySplines (doesn't say of what except in prose, but are 4 control points per spline, so essentially ) +keyTimes (essentially with additional restrictions on the number of items in the list and the number range) +max | media (allows whitespace for the clockvalue) +min | media (allows whitespace for the clockvalue) +onbegin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onend [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onrepeat [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +repeatCount | indefinite +repeatDur | indefinite (allows whitespace for the clockvalue) +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +restart always | whenNotActive | never +systemLanguage a comma-separated list of language names as defined in BCP 47 +to [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#FromAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) +type translate | scale | rotate | skewX | skewY +values [http://www.w3.org/TR/2001/REC-smil-animation-20010904/#ValuesAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/audio b/html-stuff-svg/html-attributes-list/audio new file mode 100644 index 0000000..3deba2b --- /dev/null +++ b/html-stuff-svg/html-attributes-list/audio @@ -0,0 +1,27 @@ +autoplay +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +controls +crossorigin anonymous | use-credentials (Note, in html5 this is a [http://www.w3.org/TR/html5/infrastructure.html#cors-settings-attribute CORS settings attribute]) +loop +mediagroup [http://www.w3.org/TR/html5/dom.html#attribute-text Text] +muted +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +preload none | metadata | auto +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +src [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +title [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] (in html5: Text) +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/canvas b/html-stuff-svg/html-attributes-list/canvas new file mode 100644 index 0000000..17bda6e --- /dev/null +++ b/html-stuff-svg/html-attributes-list/canvas @@ -0,0 +1,23 @@ +canvasHeight +canvasWidth +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height | auto +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +preserveAspectRatio [defer] [] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +width | auto +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/circle b/html-stuff-svg/html-attributes-list/circle new file mode 100644 index 0000000..e311b8b --- /dev/null +++ b/html-stuff-svg/html-attributes-list/circle @@ -0,0 +1,19 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +cx +cy +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +r +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/clipPath b/html-stuff-svg/html-attributes-list/clipPath new file mode 100644 index 0000000..b457f49 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/clipPath @@ -0,0 +1,6 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +clipPathUnits userSpaceOnUse | objectBoundingBox +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/cursor b/html-stuff-svg/html-attributes-list/cursor new file mode 100644 index 0000000..0ea6f72 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/cursor @@ -0,0 +1,4 @@ +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/defs b/html-stuff-svg/html-attributes-list/defs new file mode 100644 index 0000000..cdcf864 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/defs @@ -0,0 +1,11 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/desc b/html-stuff-svg/html-attributes-list/desc new file mode 100644 index 0000000..cac1158 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/desc @@ -0,0 +1,3 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +lang %LanguageCodes; ([https://svgwg.org/svg2-draft/fonts.html#GlyphElementLangAttribute a comma-separated list of language codes], [http://www.w3.org/TR/html5/dom.html#attr-lang in html it's a single language code or empty]) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/discard b/html-stuff-svg/html-attributes-list/discard new file mode 100644 index 0000000..24b294a --- /dev/null +++ b/html-stuff-svg/html-attributes-list/discard @@ -0,0 +1,6 @@ +begin (allows whitespace in some but not all cases) +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/eBlend b/html-stuff-svg/html-attributes-list/eBlend new file mode 100644 index 0000000..a5c7c2c --- /dev/null +++ b/html-stuff-svg/html-attributes-list/eBlend @@ -0,0 +1 @@ +result (unclear if leading & trailing whitespace is stripped or not) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/ellipse b/html-stuff-svg/html-attributes-list/ellipse new file mode 100644 index 0000000..1dbece7 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/ellipse @@ -0,0 +1,20 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +cx +cy +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +rx +ry +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feBlend b/html-stuff-svg/html-attributes-list/feBlend new file mode 100644 index 0000000..fd7ef7b --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feBlend @@ -0,0 +1,9 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +in2 SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +mode normal | multiply | screen | darken | lighten +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feColorMatrix b/html-stuff-svg/html-attributes-list/feColorMatrix new file mode 100644 index 0000000..b462c1a --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feColorMatrix @@ -0,0 +1,10 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +type matrix | saturate | hueRotate | luminanceToAlpha +values +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feComponentTransfer b/html-stuff-svg/html-attributes-list/feComponentTransfer new file mode 100644 index 0000000..327aedd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feComponentTransfer @@ -0,0 +1,8 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feComposite b/html-stuff-svg/html-attributes-list/feComposite new file mode 100644 index 0000000..c77fafe --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feComposite @@ -0,0 +1,14 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +in2 SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +k1 +k2 +k3 +k4 +operator over | in | out | atop | xor | arithmetic +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feConvolveMatrix b/html-stuff-svg/html-attributes-list/feConvolveMatrix new file mode 100644 index 0000000..9a41392 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feConvolveMatrix @@ -0,0 +1,17 @@ +bias +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +divisor +edgeMode duplicate | wrap | none +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +kernelMatrix +kernelUnitLength +order +preserveAlpha true | false +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +targetX +targetY +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feCustom b/html-stuff-svg/html-attributes-list/feCustom new file mode 100644 index 0000000..327aedd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feCustom @@ -0,0 +1,8 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feDiffuseLighting b/html-stuff-svg/html-attributes-list/feDiffuseLighting new file mode 100644 index 0000000..3c1eeba --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feDiffuseLighting @@ -0,0 +1,11 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +diffuseConstant +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +kernelUnitLength +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +surfaceScale +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feDisplacementMap b/html-stuff-svg/html-attributes-list/feDisplacementMap new file mode 100644 index 0000000..efadc4a --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feDisplacementMap @@ -0,0 +1,12 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +in2 SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +scale +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +xChannelSelector R | G | B | A +y +yChannelSelector R | G | B | A \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feDistantLight b/html-stuff-svg/html-attributes-list/feDistantLight new file mode 100644 index 0000000..3b5e3c4 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feDistantLight @@ -0,0 +1,2 @@ +azimuth +elevation \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feDropShadow b/html-stuff-svg/html-attributes-list/feDropShadow new file mode 100644 index 0000000..95b3074 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feDropShadow @@ -0,0 +1,11 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +dx +dy +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +stdDeviation +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feFlood b/html-stuff-svg/html-attributes-list/feFlood new file mode 100644 index 0000000..948d7d0 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feFlood @@ -0,0 +1,7 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feFuncA b/html-stuff-svg/html-attributes-list/feFuncA new file mode 100644 index 0000000..68d0efd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feFuncA @@ -0,0 +1,7 @@ +amplitude +exponent +intercept +offset +slope +tableValues +type identity | table | discrete | linear | gamma \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feFuncB b/html-stuff-svg/html-attributes-list/feFuncB new file mode 100644 index 0000000..68d0efd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feFuncB @@ -0,0 +1,7 @@ +amplitude +exponent +intercept +offset +slope +tableValues +type identity | table | discrete | linear | gamma \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feFuncG b/html-stuff-svg/html-attributes-list/feFuncG new file mode 100644 index 0000000..68d0efd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feFuncG @@ -0,0 +1,7 @@ +amplitude +exponent +intercept +offset +slope +tableValues +type identity | table | discrete | linear | gamma \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feFuncR b/html-stuff-svg/html-attributes-list/feFuncR new file mode 100644 index 0000000..68d0efd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feFuncR @@ -0,0 +1,7 @@ +amplitude +exponent +intercept +offset +slope +tableValues +type identity | table | discrete | linear | gamma \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feGaussianBlur b/html-stuff-svg/html-attributes-list/feGaussianBlur new file mode 100644 index 0000000..b5787af --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feGaussianBlur @@ -0,0 +1,9 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +stdDeviation +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feImage b/html-stuff-svg/html-attributes-list/feImage new file mode 100644 index 0000000..2bf5b90 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feImage @@ -0,0 +1,8 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +preserveAspectRatio [defer] [] +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feMerge b/html-stuff-svg/html-attributes-list/feMerge new file mode 100644 index 0000000..948d7d0 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feMerge @@ -0,0 +1,7 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feMorphology b/html-stuff-svg/html-attributes-list/feMorphology new file mode 100644 index 0000000..40106a8 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feMorphology @@ -0,0 +1,10 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +operator erode | dilate +radius +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feOffset b/html-stuff-svg/html-attributes-list/feOffset new file mode 100644 index 0000000..9065ad5 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feOffset @@ -0,0 +1,10 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +dx +dy +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/fePointLight b/html-stuff-svg/html-attributes-list/fePointLight new file mode 100644 index 0000000..736c22f --- /dev/null +++ b/html-stuff-svg/html-attributes-list/fePointLight @@ -0,0 +1,3 @@ +x +y +z \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feSpecularLighting b/html-stuff-svg/html-attributes-list/feSpecularLighting new file mode 100644 index 0000000..5621c4b --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feSpecularLighting @@ -0,0 +1,12 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +kernelUnitLength +result (unclear if leading & trailing whitespace is stripped or not) +specularConstant +specularExponent +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +surfaceScale +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feSpotLight b/html-stuff-svg/html-attributes-list/feSpotLight new file mode 100644 index 0000000..2e68cec --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feSpotLight @@ -0,0 +1,8 @@ +limitingConeAngle +pointsAtX +pointsAtY +pointsAtZ +specularExponent +x +y +z \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feTile b/html-stuff-svg/html-attributes-list/feTile new file mode 100644 index 0000000..327aedd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feTile @@ -0,0 +1,8 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +in SourceGraphic | SourceAlpha | BackgroundImage | BackgroundAlpha | FillPaint | StrokePaint | (mix of enumerated and string) +result (unclear if leading & trailing whitespace is stripped or not) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/feTurbulence b/html-stuff-svg/html-attributes-list/feTurbulence new file mode 100644 index 0000000..e4bb137 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/feTurbulence @@ -0,0 +1,12 @@ +baseFrequency +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +numOctaves +result (unclear if leading & trailing whitespace is stripped or not) +seed +stitchTiles stitch | noStitch +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +type fractalNoise | turbulence +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/filter b/html-stuff-svg/html-attributes-list/filter new file mode 100644 index 0000000..b69025d --- /dev/null +++ b/html-stuff-svg/html-attributes-list/filter @@ -0,0 +1,9 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +filterRes +filterUnits userSpaceOnUse | objectBoundingBox +height +primitiveUnits userSpaceOnUse | objectBoundingBox +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/font b/html-stuff-svg/html-attributes-list/font new file mode 100644 index 0000000..7fb6862 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/font @@ -0,0 +1,2 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/font-face b/html-stuff-svg/html-attributes-list/font-face new file mode 100644 index 0000000..d40599b --- /dev/null +++ b/html-stuff-svg/html-attributes-list/font-face @@ -0,0 +1,11 @@ +alphabetic +ascent +bbox +descent +hanging +ideographic +mathematical +slope +stemh +stemv +widths \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/font-face-name b/html-stuff-svg/html-attributes-list/font-face-name new file mode 100644 index 0000000..50a5ef4 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/font-face-name @@ -0,0 +1,2 @@ +name [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +string [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/foreignObject b/html-stuff-svg/html-attributes-list/foreignObject new file mode 100644 index 0000000..3589140 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/foreignObject @@ -0,0 +1,20 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/g b/html-stuff-svg/html-attributes-list/g new file mode 100644 index 0000000..f85c6c8 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/g @@ -0,0 +1,16 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/glyph b/html-stuff-svg/html-attributes-list/glyph new file mode 100644 index 0000000..99c7442 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/glyph @@ -0,0 +1,6 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +d (grammar allows leading and trailing whitespace) +lang %LanguageCodes; ([https://svgwg.org/svg2-draft/fonts.html#GlyphElementLangAttribute a comma-separated list of language codes], [http://www.w3.org/TR/html5/dom.html#attr-lang in html it's a single language code or empty]) +orientation h | v +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +unicode \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/glyphRef b/html-stuff-svg/html-attributes-list/glyphRef new file mode 100644 index 0000000..b282e6a --- /dev/null +++ b/html-stuff-svg/html-attributes-list/glyphRef @@ -0,0 +1,8 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +format +glyphRef +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/hatch b/html-stuff-svg/html-attributes-list/hatch new file mode 100644 index 0000000..b8923c5 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/hatch @@ -0,0 +1,8 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +hatchContentUnits userSpaceOnUse | objectBoundingBox +hatchTransform +hatchUnits userSpaceOnUse | objectBoundingBox +rotate +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/hatchPath b/html-stuff-svg/html-attributes-list/hatchPath new file mode 100644 index 0000000..692f764 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/hatchPath @@ -0,0 +1,5 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +d (grammar allows leading and trailing whitespace) +offset +pitch currently undefined (but should probably be either or ) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/hkern b/html-stuff-svg/html-attributes-list/hkern new file mode 100644 index 0000000..c897194 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/hkern @@ -0,0 +1,7 @@ +g1 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +g2 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +k +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +u1 [ | ] [, [ | ] ]* +u2 [ | ] [, [ | ] ]* \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/iframe b/html-stuff-svg/html-attributes-list/iframe new file mode 100644 index 0000000..536b858 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/iframe @@ -0,0 +1,29 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +frameHeight +frameWidth +height | auto +name [http://www.w3.org/TR/html5/browsers.html#valid-browsing-context-name A valid browsing context name or keyword] +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +preserveAspectRatio [defer] [] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +sandbox +seamless +src [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +srcdoc [http://www.w3.org/TR/html5/embedded-content-0.html#an-iframe-srcdoc-document The source of an iframe srcdoc document*] (allows whitespace in html, in xml it depends on the xml spec) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +title [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] (in html5: Text) +width | auto +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/image b/html-stuff-svg/html-attributes-list/image new file mode 100644 index 0000000..53768ac --- /dev/null +++ b/html-stuff-svg/html-attributes-list/image @@ -0,0 +1,21 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height | auto +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +preserveAspectRatio [defer] [] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +width | auto +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/line b/html-stuff-svg/html-attributes-list/line new file mode 100644 index 0000000..34cfbbb --- /dev/null +++ b/html-stuff-svg/html-attributes-list/line @@ -0,0 +1,20 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +x1 +x2 +y1 +y2 \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/linearGradient b/html-stuff-svg/html-attributes-list/linearGradient new file mode 100644 index 0000000..6cb6feb --- /dev/null +++ b/html-stuff-svg/html-attributes-list/linearGradient @@ -0,0 +1,9 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +gradientTransform (which is equivalent to "list of ". Should this reference http://www.w3.org/TR/css3-transforms/#svg-syntax? It's not clear if leading and trailing whitespace is allowed.) +gradientUnits userSpaceOnUse | objectBoundingBox +spreadMethod pad | reflect | repeat +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +x1 +x2 +y1 +y2 \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/marker b/html-stuff-svg/html-attributes-list/marker new file mode 100644 index 0000000..767b046 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/marker @@ -0,0 +1,11 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +markerHeight +markerUnits strokeWidth | userSpaceOnUse +markerWidth +orient auto | auto-start-reverse | | +position | +preserveAspectRatio [defer] [] +refX +refY +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +viewBox a list of four numbers , , and , separated by whitespace and/or a comma \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/mask b/html-stuff-svg/html-attributes-list/mask new file mode 100644 index 0000000..cd4ec53 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/mask @@ -0,0 +1,11 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height | (Presumably related to the issue about percentages in [https://svgwg.org/svg2-draft/types.html#DataTypeLength]) +maskContentUnits userSpaceOnUse | objectBoundingBox +maskUnits userSpaceOnUse | objectBoundingBox +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +width | +x | +y | \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/meshGradient b/html-stuff-svg/html-attributes-list/meshGradient new file mode 100644 index 0000000..b9027f9 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/meshGradient @@ -0,0 +1,6 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +gradientTransform (which is equivalent to "list of ". Should this reference http://www.w3.org/TR/css3-transforms/#svg-syntax? It's not clear if leading and trailing whitespace is allowed.) +gradientUnits userSpaceOnUse | objectBoundingBox +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +x ISSUE: currently undefined (but should probably be ) +y ISSUE: currently undefined (but should probably be ) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/meshPatch b/html-stuff-svg/html-attributes-list/meshPatch new file mode 100644 index 0000000..7fb6862 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/meshPatch @@ -0,0 +1,2 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/meshRow b/html-stuff-svg/html-attributes-list/meshRow new file mode 100644 index 0000000..7fb6862 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/meshRow @@ -0,0 +1,2 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/missing-glyph b/html-stuff-svg/html-attributes-list/missing-glyph new file mode 100644 index 0000000..7abb949 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/missing-glyph @@ -0,0 +1,3 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +d (grammar allows leading and trailing whitespace) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/path b/html-stuff-svg/html-attributes-list/path new file mode 100644 index 0000000..c60b555 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/path @@ -0,0 +1,18 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +d (grammar allows leading and trailing whitespace) +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +pathLength +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/pattern b/html-stuff-svg/html-attributes-list/pattern new file mode 100644 index 0000000..19a87ea --- /dev/null +++ b/html-stuff-svg/html-attributes-list/pattern @@ -0,0 +1,11 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +patternContentUnits userSpaceOnUse | objectBoundingBox +patternTransform +patternUnits userSpaceOnUse | objectBoundingBox +preserveAspectRatio [defer] [] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +viewBox a list of four numbers , , and , separated by whitespace and/or a comma +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/polygon b/html-stuff-svg/html-attributes-list/polygon new file mode 100644 index 0000000..c555976 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/polygon @@ -0,0 +1,17 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +points [https://svgwg.org/svg2-draft/shapes.html#PointsBNF ] (allows leading and trailing whitespace) +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/polyline b/html-stuff-svg/html-attributes-list/polyline new file mode 100644 index 0000000..c555976 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/polyline @@ -0,0 +1,17 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +points [https://svgwg.org/svg2-draft/shapes.html#PointsBNF ] (allows leading and trailing whitespace) +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/radialGradient b/html-stuff-svg/html-attributes-list/radialGradient new file mode 100644 index 0000000..806f892 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/radialGradient @@ -0,0 +1,11 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +cx +cy +fr +fx +fy +gradientTransform (which is equivalent to "list of ". Should this reference http://www.w3.org/TR/css3-transforms/#svg-syntax? It's not clear if leading and trailing whitespace is allowed.) +gradientUnits userSpaceOnUse | objectBoundingBox +r +spreadMethod pad | reflect | repeat +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/rect b/html-stuff-svg/html-attributes-list/rect new file mode 100644 index 0000000..ad4707c --- /dev/null +++ b/html-stuff-svg/html-attributes-list/rect @@ -0,0 +1,22 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +rx +ry +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/script b/html-stuff-svg/html-attributes-list/script new file mode 100644 index 0000000..aac898d --- /dev/null +++ b/html-stuff-svg/html-attributes-list/script @@ -0,0 +1 @@ +type content-type (in HTML5: [http://www.w3.org/TR/html5/infrastructure.html#valid-mime-type valid MIME type]) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/set b/html-stuff-svg/html-attributes-list/set new file mode 100644 index 0000000..bbc073a --- /dev/null +++ b/html-stuff-svg/html-attributes-list/set @@ -0,0 +1,19 @@ +attributeName +attributeType CSS | XML | auto +begin (allows whitespace in some but not all cases) +dur | media | indefinite (allows whitespace for the clockvalue) +end (allows whitespace in some but not all cases) +fill freeze | remove +max | media (allows whitespace for the clockvalue) +min | media (allows whitespace for the clockvalue) +onbegin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onend [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onrepeat [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +repeatCount | indefinite +repeatDur | indefinite (allows whitespace for the clockvalue) +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +restart always | whenNotActive | never +systemLanguage a comma-separated list of language names as defined in BCP 47 +to (svg doesn't state that leading and trailing whitespace is ignored) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/solidColor b/html-stuff-svg/html-attributes-list/solidColor new file mode 100644 index 0000000..7fb6862 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/solidColor @@ -0,0 +1,2 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/source b/html-stuff-svg/html-attributes-list/source new file mode 100644 index 0000000..4189bbd --- /dev/null +++ b/html-stuff-svg/html-attributes-list/source @@ -0,0 +1,6 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +media [http://www.w3.org/TR/html5/infrastructure.html#valid-media-query A valid media query] (in other words: leading and trailing WS allowed) +src [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +type [http://www.w3.org/TR/html5/infrastructure.html#valid-mime-type valid MIME type] \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/stop b/html-stuff-svg/html-attributes-list/stop new file mode 100644 index 0000000..9cad7b2 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/stop @@ -0,0 +1,4 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +offset | +path "mesh path data" (undefined term, but if the normal path data allows whitespace this probably should too) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/style b/html-stuff-svg/html-attributes-list/style new file mode 100644 index 0000000..f9e9dbc --- /dev/null +++ b/html-stuff-svg/html-attributes-list/style @@ -0,0 +1,3 @@ +media media (ISSUE: should be the same as for the source element, and the style element in html5) +title [https://svgwg.org/svg2-draft/styling.html#StyleElementTitleAttribute advisory-title] (in html5: Text) +type content-type (in HTML5: [http://www.w3.org/TR/html5/infrastructure.html#valid-mime-type valid MIME type]) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/svg b/html-stuff-svg/html-attributes-list/svg new file mode 100644 index 0000000..75c1685 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/svg @@ -0,0 +1,33 @@ +baseProfile [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height | (Presumably related to the issue about percentages in [https://svgwg.org/svg2-draft/types.html#DataTypeLength]) +onabort [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onerror [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onresize [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onscroll [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onunload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onzoom [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +playbackOrder forwardOnly | all +preserveAspectRatio [defer] [] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +timelineBegin onLoad | onStart +version +viewBox a list of four numbers , , and , separated by whitespace and/or a comma +width | +x +y +zoomAndPan disable | magnify \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/switch b/html-stuff-svg/html-attributes-list/switch new file mode 100644 index 0000000..f85c6c8 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/switch @@ -0,0 +1,16 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/symbol b/html-stuff-svg/html-attributes-list/symbol new file mode 100644 index 0000000..f27b9de --- /dev/null +++ b/html-stuff-svg/html-attributes-list/symbol @@ -0,0 +1,15 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +preserveAspectRatio [defer] [] +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +viewBox a list of four numbers , , and , separated by whitespace and/or a comma \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/text b/html-stuff-svg/html-attributes-list/text new file mode 100644 index 0000000..3057151 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/text @@ -0,0 +1,25 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +height +lengthAdjust spacing | spacingAndGlyphs +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +rotate +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +textLength +width +x (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) +y (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/textPath b/html-stuff-svg/html-attributes-list/textPath new file mode 100644 index 0000000..4ceb2e3 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/textPath @@ -0,0 +1,22 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +d (grammar allows leading and trailing whitespace) +lengthAdjust spacing | spacingAndGlyphs +method align | stretch +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +spacing auto | exact +startOffset +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +textLength \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/title b/html-stuff-svg/html-attributes-list/title new file mode 100644 index 0000000..cac1158 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/title @@ -0,0 +1,3 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +lang %LanguageCodes; ([https://svgwg.org/svg2-draft/fonts.html#GlyphElementLangAttribute a comma-separated list of language codes], [http://www.w3.org/TR/html5/dom.html#attr-lang in html it's a single language code or empty]) +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/track b/html-stuff-svg/html-attributes-list/track new file mode 100644 index 0000000..9a25ca4 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/track @@ -0,0 +1,9 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +default +kind subtitles | captions | descriptions | chapters | metadata +label [http://www.w3.org/TR/html5/dom.html#attribute-text Text] ([http://www.w3.org/TR/html5/embedded-content-0.html#attr-track-label cannot be the empty string]) +src [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +srclang [http://www.w3.org/TR/html5/embedded-content-0.html#attr-track-srclang Valid BCP 47 language tag] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +title [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] (in html5: Text) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/tref b/html-stuff-svg/html-attributes-list/tref new file mode 100644 index 0000000..1b79079 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/tref @@ -0,0 +1,23 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +lengthAdjust spacing | spacingAndGlyphs +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +rotate +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +textLength +x (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) +y (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/tspan b/html-stuff-svg/html-attributes-list/tspan new file mode 100644 index 0000000..1b79079 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/tspan @@ -0,0 +1,23 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] +lengthAdjust spacing | spacingAndGlyphs +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +rotate +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +textLength +x (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) +y (ISSUE: not linked to a definition of , seems to be missing in SVG2, in SVG 1.1 it was the same as ) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/use b/html-stuff-svg/html-attributes-list/use new file mode 100644 index 0000000..3589140 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/use @@ -0,0 +1,20 @@ +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +height +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +width +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/video b/html-stuff-svg/html-attributes-list/video new file mode 100644 index 0000000..01dc6e5 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/video @@ -0,0 +1,31 @@ +autoplay +class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. +controls +crossorigin anonymous | use-credentials (Note, in html5 this is a [http://www.w3.org/TR/html5/infrastructure.html#cors-settings-attribute CORS settings attribute]) +height | auto +loop +mediagroup [http://www.w3.org/TR/html5/dom.html#attribute-text Text] +muted +onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onfocusout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousedown [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmousemove [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseout [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseover [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +onmouseup [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] +poster [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +preload none | metadata | auto +preserveAspectRatio [defer] [] +requiredExtensions list-of-extensions (whitespace separated IRIs) +requiredFeatures list-of-features (whitespace separated feature strings) +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +src [http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces] +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +systemLanguage a comma-separated list of language names as defined in BCP 47 +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +title [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] (in html5: Text) +width | auto +x +y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/view b/html-stuff-svg/html-attributes-list/view new file mode 100644 index 0000000..d942660 --- /dev/null +++ b/html-stuff-svg/html-attributes-list/view @@ -0,0 +1,6 @@ +preserveAspectRatio [defer] [] +role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] +tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) +viewBox a list of four numbers , , and , separated by whitespace and/or a comma +viewTarget +zoomAndPan disable | magnify \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/vkern b/html-stuff-svg/html-attributes-list/vkern new file mode 100644 index 0000000..9bbf73f --- /dev/null +++ b/html-stuff-svg/html-attributes-list/vkern @@ -0,0 +1,5 @@ +g1 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +g2 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +k +u1 [ | ] [, [ | ] ]* +u2 [ | ] [, [ | ] ]* \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-short-docs/iframe-sandbox b/html-stuff-svg/html-attributes-short-docs/iframe-sandbox new file mode 100644 index 0000000..60d7e1b --- /dev/null +++ b/html-stuff-svg/html-attributes-short-docs/iframe-sandbox @@ -0,0 +1 @@ +[http://www.w3.org/TR/html5/infrastructure.html#unordered-set-of-unique-space-separated-tokens Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of "allow-forms", "allow-pointer-lock", "allow-popups", "allow-same-origin", "allow-scripts and "allow-top-navigation"] \ No newline at end of file diff --git a/html-stuff-svg/html-tag-list b/html-stuff-svg/html-tag-list new file mode 100644 index 0000000..59589ad --- /dev/null +++ b/html-stuff-svg/html-tag-list @@ -0,0 +1,87 @@ +a +altGlyph +altGlyphItem +animate +animateMotion +animateTransform +audio +canvas +circle +clipPath +cursor +defs +desc +discard +eBlend +ellipse +feBlend +feColorMatrix +feComponentTransfer +feComposite +feConvolveMatrix +feCustom +feDiffuseLighting +feDisplacementMap +feDistantLight +feDropShadow +feFlood +feFuncA +feFuncB +feFuncG +feFuncR +feGaussianBlur +feImage +feMerge +feMorphology +feOffset +fePointLight +feSpecularLighting +feSpotLight +feTile +feTurbulence +filter +font +font-face +font-face-name +foreignObject +g +glyph +glyphRef +hatch +hatchPath +hkern +iframe +image +line +linearGradient +marker +mask +meshGradient +meshPatch +meshRow +missing-glyph +path +pattern +polygon +polyline +radialGradient +rect +script +set +solidColor +source +stop +style +svg +switch +symbol +text +textPath +title +track +tref +tspan +use +video +view +vkern \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/a b/html-stuff-svg/html-tag-short-docs/a new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/a @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/all elements b/html-stuff-svg/html-tag-short-docs/all elements new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/all elements @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/altGlyph b/html-stuff-svg/html-tag-short-docs/altGlyph new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/altGlyph @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/altGlyphItem b/html-stuff-svg/html-tag-short-docs/altGlyphItem new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/altGlyphItem @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/animate b/html-stuff-svg/html-tag-short-docs/animate new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/animate @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/animateMotion b/html-stuff-svg/html-tag-short-docs/animateMotion new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/animateMotion @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/animateTransform b/html-stuff-svg/html-tag-short-docs/animateTransform new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/animateTransform @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/audio b/html-stuff-svg/html-tag-short-docs/audio new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/audio @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/canvas b/html-stuff-svg/html-tag-short-docs/canvas new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/canvas @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/circle b/html-stuff-svg/html-tag-short-docs/circle new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/circle @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/clipPath b/html-stuff-svg/html-tag-short-docs/clipPath new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/clipPath @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/cursor b/html-stuff-svg/html-tag-short-docs/cursor new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/cursor @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/defs b/html-stuff-svg/html-tag-short-docs/defs new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/defs @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/desc b/html-stuff-svg/html-tag-short-docs/desc new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/desc @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/discard b/html-stuff-svg/html-tag-short-docs/discard new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/discard @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/eBlend b/html-stuff-svg/html-tag-short-docs/eBlend new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/eBlend @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/ellipse b/html-stuff-svg/html-tag-short-docs/ellipse new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/ellipse @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feBlend b/html-stuff-svg/html-tag-short-docs/feBlend new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feBlend @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feColorMatrix b/html-stuff-svg/html-tag-short-docs/feColorMatrix new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feColorMatrix @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feComponentTransfer b/html-stuff-svg/html-tag-short-docs/feComponentTransfer new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feComponentTransfer @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feComposite b/html-stuff-svg/html-tag-short-docs/feComposite new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feComposite @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feConvolveMatrix b/html-stuff-svg/html-tag-short-docs/feConvolveMatrix new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feConvolveMatrix @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feCustom b/html-stuff-svg/html-tag-short-docs/feCustom new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feCustom @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feDiffuseLighting b/html-stuff-svg/html-tag-short-docs/feDiffuseLighting new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feDiffuseLighting @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feDisplacementMap b/html-stuff-svg/html-tag-short-docs/feDisplacementMap new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feDisplacementMap @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feDistantLight b/html-stuff-svg/html-tag-short-docs/feDistantLight new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feDistantLight @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feDropShadow b/html-stuff-svg/html-tag-short-docs/feDropShadow new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feDropShadow @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feFlood b/html-stuff-svg/html-tag-short-docs/feFlood new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feFlood @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feFuncA b/html-stuff-svg/html-tag-short-docs/feFuncA new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feFuncA @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feFuncB b/html-stuff-svg/html-tag-short-docs/feFuncB new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feFuncB @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feFuncG b/html-stuff-svg/html-tag-short-docs/feFuncG new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feFuncG @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feFuncR b/html-stuff-svg/html-tag-short-docs/feFuncR new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feFuncR @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feGaussianBlur b/html-stuff-svg/html-tag-short-docs/feGaussianBlur new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feGaussianBlur @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feImage b/html-stuff-svg/html-tag-short-docs/feImage new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feImage @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feMerge b/html-stuff-svg/html-tag-short-docs/feMerge new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feMerge @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feMorphology b/html-stuff-svg/html-tag-short-docs/feMorphology new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feMorphology @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feOffset b/html-stuff-svg/html-tag-short-docs/feOffset new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feOffset @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/fePointLight b/html-stuff-svg/html-tag-short-docs/fePointLight new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/fePointLight @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feSpecularLighting b/html-stuff-svg/html-tag-short-docs/feSpecularLighting new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feSpecularLighting @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feSpotLight b/html-stuff-svg/html-tag-short-docs/feSpotLight new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feSpotLight @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feTile b/html-stuff-svg/html-tag-short-docs/feTile new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feTile @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/feTurbulence b/html-stuff-svg/html-tag-short-docs/feTurbulence new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/feTurbulence @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/filter b/html-stuff-svg/html-tag-short-docs/filter new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/filter @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/font b/html-stuff-svg/html-tag-short-docs/font new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/font @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/font-face b/html-stuff-svg/html-tag-short-docs/font-face new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/font-face @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/font-face-name b/html-stuff-svg/html-tag-short-docs/font-face-name new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/font-face-name @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/foreignObject b/html-stuff-svg/html-tag-short-docs/foreignObject new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/foreignObject @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/g b/html-stuff-svg/html-tag-short-docs/g new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/g @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/glyph b/html-stuff-svg/html-tag-short-docs/glyph new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/glyph @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/glyphRef b/html-stuff-svg/html-tag-short-docs/glyphRef new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/glyphRef @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/hatch b/html-stuff-svg/html-tag-short-docs/hatch new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/hatch @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/hatchPath b/html-stuff-svg/html-tag-short-docs/hatchPath new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/hatchPath @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/hkern b/html-stuff-svg/html-tag-short-docs/hkern new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/hkern @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/iframe b/html-stuff-svg/html-tag-short-docs/iframe new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/iframe @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/image b/html-stuff-svg/html-tag-short-docs/image new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/image @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/line b/html-stuff-svg/html-tag-short-docs/line new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/line @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/linearGradient b/html-stuff-svg/html-tag-short-docs/linearGradient new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/linearGradient @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/marker b/html-stuff-svg/html-tag-short-docs/marker new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/marker @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/mask b/html-stuff-svg/html-tag-short-docs/mask new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/mask @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/meshGradient b/html-stuff-svg/html-tag-short-docs/meshGradient new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/meshGradient @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/meshPatch b/html-stuff-svg/html-tag-short-docs/meshPatch new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/meshPatch @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/meshRow b/html-stuff-svg/html-tag-short-docs/meshRow new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/meshRow @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/missing-glyph b/html-stuff-svg/html-tag-short-docs/missing-glyph new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/missing-glyph @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/path b/html-stuff-svg/html-tag-short-docs/path new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/path @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/pattern b/html-stuff-svg/html-tag-short-docs/pattern new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/pattern @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/polygon b/html-stuff-svg/html-tag-short-docs/polygon new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/polygon @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/polyline b/html-stuff-svg/html-tag-short-docs/polyline new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/polyline @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/radialGradient b/html-stuff-svg/html-tag-short-docs/radialGradient new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/radialGradient @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/rect b/html-stuff-svg/html-tag-short-docs/rect new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/rect @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/script b/html-stuff-svg/html-tag-short-docs/script new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/script @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/set b/html-stuff-svg/html-tag-short-docs/set new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/set @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/solidColor b/html-stuff-svg/html-tag-short-docs/solidColor new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/solidColor @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/source b/html-stuff-svg/html-tag-short-docs/source new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/source @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/stop b/html-stuff-svg/html-tag-short-docs/stop new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/stop @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/style b/html-stuff-svg/html-tag-short-docs/style new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/style @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/svg b/html-stuff-svg/html-tag-short-docs/svg new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/svg @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/switch b/html-stuff-svg/html-tag-short-docs/switch new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/switch @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/symbol b/html-stuff-svg/html-tag-short-docs/symbol new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/symbol @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/text b/html-stuff-svg/html-tag-short-docs/text new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/text @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/textPath b/html-stuff-svg/html-tag-short-docs/textPath new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/textPath @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/title b/html-stuff-svg/html-tag-short-docs/title new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/title @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/track b/html-stuff-svg/html-tag-short-docs/track new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/track @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/tref b/html-stuff-svg/html-tag-short-docs/tref new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/tref @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/tspan b/html-stuff-svg/html-tag-short-docs/tspan new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/tspan @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/use b/html-stuff-svg/html-tag-short-docs/use new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/use @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/video b/html-stuff-svg/html-tag-short-docs/video new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/video @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/view b/html-stuff-svg/html-tag-short-docs/view new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/view @@ -0,0 +1 @@ +SVG element \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/vkern b/html-stuff-svg/html-tag-short-docs/vkern new file mode 100644 index 0000000..207fbef --- /dev/null +++ b/html-stuff-svg/html-tag-short-docs/vkern @@ -0,0 +1 @@ +SVG element \ No newline at end of file From 4e75c8039c8ba033e5c2b099267146287cddfeda Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Thu, 2 Mar 2017 18:58:56 +0200 Subject: [PATCH 07/11] Add SVG to web-completion-data-sources --- .gitignore | 4 +++- web-completion-data.el | 7 ++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e4e5f6c..2225761 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ -*~ \ No newline at end of file +*~ +*# +.#* \ No newline at end of file diff --git a/web-completion-data.el b/web-completion-data.el index 271aa0b..2005626 100644 --- a/web-completion-data.el +++ b/web-completion-data.el @@ -53,8 +53,13 @@ (expand-file-name "html-stuff" web-completion-data-package-dir) "The directory where basic completion source of `web-completion-data' exists.") +(defconst web-completion-data-svg-source-dir + (expand-file-name "html-stuff-svg" web-completion-data-package-dir) + "The directory where SVG completion source of `web-completion-data' exists.") + (defcustom web-completion-data-sources - '(("html" . web-completion-data-html-source-dir)) + '(("html" . web-completion-data-html-source-dir) + ("SVG" . web-completion-data-svg-source-dir)) "Alist of source directories. car is source name, cdr is source location." :type 'alist) From ec70c300089acde94ea0a921de6756b075f56e8b Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Fri, 3 Mar 2017 17:02:18 +0200 Subject: [PATCH 08/11] Remove junk file --- html-stuff-svg/html-attributes-list/all elements | 1 - html-stuff-svg/html-tag-short-docs/all elements | 1 - 2 files changed, 2 deletions(-) delete mode 100644 html-stuff-svg/html-attributes-list/all elements delete mode 100644 html-stuff-svg/html-tag-short-docs/all elements diff --git a/html-stuff-svg/html-attributes-list/all elements b/html-stuff-svg/html-attributes-list/all elements deleted file mode 100644 index ee3dad9..0000000 --- a/html-stuff-svg/html-attributes-list/all elements +++ /dev/null @@ -1 +0,0 @@ -id name (Issue in spec to define the term 'name' [https://svgwg.org/svg2-draft/struct.html#IDAttribute]) \ No newline at end of file diff --git a/html-stuff-svg/html-tag-short-docs/all elements b/html-stuff-svg/html-tag-short-docs/all elements deleted file mode 100644 index 207fbef..0000000 --- a/html-stuff-svg/html-tag-short-docs/all elements +++ /dev/null @@ -1 +0,0 @@ -SVG element \ No newline at end of file From 3fba249b88958d10be926f2039636ce4cce38aea Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Fri, 3 Mar 2017 17:08:49 +0200 Subject: [PATCH 09/11] Bump version --- web-completion-data.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web-completion-data.el b/web-completion-data.el index 2005626..60cbf09 100644 --- a/web-completion-data.el +++ b/web-completion-data.el @@ -3,7 +3,7 @@ ;; Copyright (C) 2015 Zhang Kai Yu, Olexandr Sydorchuk ;; Author: Olexandr Sydorchuk -;; Version: 0.2 +;; Version: 0.3 ;; Keywords: html, auto-complete, company ;; URL: https://github.com/osv/web-completion-data @@ -24,7 +24,7 @@ ;; This is just dependency for ac-html, company-web ;; -;; `web-completion-data-sources' is pair list of framework-name and directory of completion data +;; `web-completion-data-sources' is pair list of complation-name and directory of completion data ;; ;; This package provide default "html" completion data. ;; From 8140bd53fd0b7da30e4b5f81022f8941b0fe6f2f Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Fri, 3 Mar 2017 17:11:29 +0200 Subject: [PATCH 10/11] Clear ignore list --- src/ignore-warn-list | 34 ++++++---------------------------- 1 file changed, 6 insertions(+), 28 deletions(-) diff --git a/src/ignore-warn-list b/src/ignore-warn-list index f0b1f92..ed09551 100644 --- a/src/ignore-warn-list +++ b/src/ignore-warn-list @@ -1,28 +1,6 @@ -video-crossorigin -canvas-height -iframe-height -video-height -track-kind -track-label -source-media -style-media -iframe-name -video-poster -audio-preload -video-preload -iframe-sandbox -audio-src -iframe-src -source-src -track-src -video-src -iframe-srcdoc -track-srclang -a-target -style-title -script-type -source-type -style-type -canvas-width -iframe-width -video-width +################################## +# Each line - tag or tag-attribute that will be not warned if redefined in other yaml +# Example: +# video-crossorigin +# canvas-height +################################## From 1df9b711621683e7f3d21a34095d9efbbb6ec732 Mon Sep 17 00:00:00 2001 From: Olexandr Sydorchuk Date: Fri, 3 Mar 2017 18:07:35 +0200 Subject: [PATCH 11/11] Update svg stuff --- .../html-attributes-complete/a-aria-atomic | 2 + .../a-aria-autocomplete | 4 + .../html-attributes-complete/a-aria-busy | 2 + .../html-attributes-complete/a-aria-checked | 3 + .../html-attributes-complete/a-aria-disabled | 2 + .../a-aria-dropeffect | 6 + .../html-attributes-complete/a-aria-expanded | 2 + .../html-attributes-complete/a-aria-grabbed | 2 + .../html-attributes-complete/a-aria-haspopup | 2 + .../html-attributes-complete/a-aria-hidden | 2 + .../html-attributes-complete/a-aria-invalid | 4 + .../html-attributes-complete/a-aria-live | 3 + .../html-attributes-complete/a-aria-multiline | 2 + .../a-aria-multiselectable | 2 + .../a-aria-orientation | 2 + .../html-attributes-complete/a-aria-pressed | 3 + .../html-attributes-complete/a-aria-readonly | 2 + .../html-attributes-complete/a-aria-relevant | 4 + .../html-attributes-complete/a-aria-required | 2 + .../html-attributes-complete/a-aria-selected | 2 + .../html-attributes-complete/a-aria-sort | 4 + .../altGlyph-aria-atomic | 2 + .../altGlyph-aria-autocomplete | 4 + .../altGlyph-aria-busy | 2 + .../altGlyph-aria-checked | 3 + .../altGlyph-aria-disabled | 2 + .../altGlyph-aria-dropeffect | 6 + .../altGlyph-aria-expanded | 2 + .../altGlyph-aria-grabbed | 2 + .../altGlyph-aria-haspopup | 2 + .../altGlyph-aria-hidden | 2 + .../altGlyph-aria-invalid | 4 + .../altGlyph-aria-live | 3 + .../altGlyph-aria-multiline | 2 + .../altGlyph-aria-multiselectable | 2 + .../altGlyph-aria-orientation | 2 + .../altGlyph-aria-pressed | 3 + .../altGlyph-aria-readonly | 2 + .../altGlyph-aria-relevant | 4 + .../altGlyph-aria-required | 2 + .../altGlyph-aria-selected | 2 + .../altGlyph-aria-sort | 4 + .../altGlyphItem-aria-atomic | 2 + .../altGlyphItem-aria-autocomplete | 4 + .../altGlyphItem-aria-busy | 2 + .../altGlyphItem-aria-checked | 3 + .../altGlyphItem-aria-disabled | 2 + .../altGlyphItem-aria-dropeffect | 6 + .../altGlyphItem-aria-expanded | 2 + .../altGlyphItem-aria-grabbed | 2 + .../altGlyphItem-aria-haspopup | 2 + .../altGlyphItem-aria-hidden | 2 + .../altGlyphItem-aria-invalid | 4 + .../altGlyphItem-aria-live | 3 + .../altGlyphItem-aria-multiline | 2 + .../altGlyphItem-aria-multiselectable | 2 + .../altGlyphItem-aria-orientation | 2 + .../altGlyphItem-aria-pressed | 3 + .../altGlyphItem-aria-readonly | 2 + .../altGlyphItem-aria-relevant | 4 + .../altGlyphItem-aria-required | 2 + .../altGlyphItem-aria-selected | 2 + .../altGlyphItem-aria-sort | 4 + .../audio-aria-atomic | 2 + .../audio-aria-autocomplete | 4 + .../html-attributes-complete/audio-aria-busy | 2 + .../audio-aria-checked | 3 + .../audio-aria-disabled | 2 + .../audio-aria-dropeffect | 6 + .../audio-aria-expanded | 2 + .../audio-aria-grabbed | 2 + .../audio-aria-haspopup | 2 + .../audio-aria-hidden | 2 + .../audio-aria-invalid | 4 + .../html-attributes-complete/audio-aria-live | 3 + .../audio-aria-multiline | 2 + .../audio-aria-multiselectable | 2 + .../audio-aria-orientation | 2 + .../audio-aria-pressed | 3 + .../audio-aria-readonly | 2 + .../audio-aria-relevant | 4 + .../audio-aria-required | 2 + .../audio-aria-selected | 2 + .../html-attributes-complete/audio-aria-sort | 4 + .../canvas-aria-atomic | 2 + .../canvas-aria-autocomplete | 4 + .../html-attributes-complete/canvas-aria-busy | 2 + .../canvas-aria-checked | 3 + .../canvas-aria-disabled | 2 + .../canvas-aria-dropeffect | 6 + .../canvas-aria-expanded | 2 + .../canvas-aria-grabbed | 2 + .../canvas-aria-haspopup | 2 + .../canvas-aria-hidden | 2 + .../canvas-aria-invalid | 4 + .../html-attributes-complete/canvas-aria-live | 3 + .../canvas-aria-multiline | 2 + .../canvas-aria-multiselectable | 2 + .../canvas-aria-orientation | 2 + .../canvas-aria-pressed | 3 + .../canvas-aria-readonly | 2 + .../canvas-aria-relevant | 4 + .../canvas-aria-required | 2 + .../canvas-aria-selected | 2 + .../html-attributes-complete/canvas-aria-sort | 4 + .../canvas-preserveAspectRatio | 12 + .../circle-aria-atomic | 2 + .../circle-aria-autocomplete | 4 + .../html-attributes-complete/circle-aria-busy | 2 + .../circle-aria-checked | 3 + .../circle-aria-disabled | 2 + .../circle-aria-dropeffect | 6 + .../circle-aria-expanded | 2 + .../circle-aria-grabbed | 2 + .../circle-aria-haspopup | 2 + .../circle-aria-hidden | 2 + .../circle-aria-invalid | 4 + .../html-attributes-complete/circle-aria-live | 3 + .../circle-aria-multiline | 2 + .../circle-aria-multiselectable | 2 + .../circle-aria-orientation | 2 + .../circle-aria-pressed | 3 + .../circle-aria-readonly | 2 + .../circle-aria-relevant | 4 + .../circle-aria-required | 2 + .../circle-aria-selected | 2 + .../html-attributes-complete/circle-aria-sort | 4 + .../cursor-aria-atomic | 2 + .../cursor-aria-autocomplete | 4 + .../html-attributes-complete/cursor-aria-busy | 2 + .../cursor-aria-checked | 3 + .../cursor-aria-disabled | 2 + .../cursor-aria-dropeffect | 6 + .../cursor-aria-expanded | 2 + .../cursor-aria-grabbed | 2 + .../cursor-aria-haspopup | 2 + .../cursor-aria-hidden | 2 + .../cursor-aria-invalid | 4 + .../html-attributes-complete/cursor-aria-live | 3 + .../cursor-aria-multiline | 2 + .../cursor-aria-multiselectable | 2 + .../cursor-aria-orientation | 2 + .../cursor-aria-pressed | 3 + .../cursor-aria-readonly | 2 + .../cursor-aria-relevant | 4 + .../cursor-aria-required | 2 + .../cursor-aria-selected | 2 + .../html-attributes-complete/cursor-aria-sort | 4 + .../discard-aria-atomic | 2 + .../discard-aria-autocomplete | 4 + .../discard-aria-busy | 2 + .../discard-aria-checked | 3 + .../discard-aria-disabled | 2 + .../discard-aria-dropeffect | 6 + .../discard-aria-expanded | 2 + .../discard-aria-grabbed | 2 + .../discard-aria-haspopup | 2 + .../discard-aria-hidden | 2 + .../discard-aria-invalid | 4 + .../discard-aria-live | 3 + .../discard-aria-multiline | 2 + .../discard-aria-multiselectable | 2 + .../discard-aria-orientation | 2 + .../discard-aria-pressed | 3 + .../discard-aria-readonly | 2 + .../discard-aria-relevant | 4 + .../discard-aria-required | 2 + .../discard-aria-selected | 2 + .../discard-aria-sort | 4 + .../ellipse-aria-atomic | 2 + .../ellipse-aria-autocomplete | 4 + .../ellipse-aria-busy | 2 + .../ellipse-aria-checked | 3 + .../ellipse-aria-disabled | 2 + .../ellipse-aria-dropeffect | 6 + .../ellipse-aria-expanded | 2 + .../ellipse-aria-grabbed | 2 + .../ellipse-aria-haspopup | 2 + .../ellipse-aria-hidden | 2 + .../ellipse-aria-invalid | 4 + .../ellipse-aria-live | 3 + .../ellipse-aria-multiline | 2 + .../ellipse-aria-multiselectable | 2 + .../ellipse-aria-orientation | 2 + .../ellipse-aria-pressed | 3 + .../ellipse-aria-readonly | 2 + .../ellipse-aria-relevant | 4 + .../ellipse-aria-required | 2 + .../ellipse-aria-selected | 2 + .../ellipse-aria-sort | 4 + .../feImage-preserveAspectRatio | 12 + .../font-face-font-stretch | 9 + .../font-face-font-style | 3 + .../font-face-font-variant | 2 + .../font-face-font-weight | 11 + .../foreignObject-aria-atomic | 2 + .../foreignObject-aria-autocomplete | 4 + .../foreignObject-aria-busy | 2 + .../foreignObject-aria-checked | 3 + .../foreignObject-aria-disabled | 2 + .../foreignObject-aria-dropeffect | 6 + .../foreignObject-aria-expanded | 2 + .../foreignObject-aria-grabbed | 2 + .../foreignObject-aria-haspopup | 2 + .../foreignObject-aria-hidden | 2 + .../foreignObject-aria-invalid | 4 + .../foreignObject-aria-live | 3 + .../foreignObject-aria-multiline | 2 + .../foreignObject-aria-multiselectable | 2 + .../foreignObject-aria-orientation | 2 + .../foreignObject-aria-pressed | 3 + .../foreignObject-aria-readonly | 2 + .../foreignObject-aria-relevant | 4 + .../foreignObject-aria-required | 2 + .../foreignObject-aria-selected | 2 + .../foreignObject-aria-sort | 4 + .../html-attributes-complete/g-aria-atomic | 2 + .../g-aria-autocomplete | 4 + .../html-attributes-complete/g-aria-busy | 2 + .../html-attributes-complete/g-aria-checked | 3 + .../html-attributes-complete/g-aria-disabled | 2 + .../g-aria-dropeffect | 6 + .../html-attributes-complete/g-aria-expanded | 2 + .../html-attributes-complete/g-aria-grabbed | 2 + .../html-attributes-complete/g-aria-haspopup | 2 + .../html-attributes-complete/g-aria-hidden | 2 + .../html-attributes-complete/g-aria-invalid | 4 + .../html-attributes-complete/g-aria-live | 3 + .../html-attributes-complete/g-aria-multiline | 2 + .../g-aria-multiselectable | 2 + .../g-aria-orientation | 2 + .../html-attributes-complete/g-aria-pressed | 3 + .../html-attributes-complete/g-aria-readonly | 2 + .../html-attributes-complete/g-aria-relevant | 4 + .../html-attributes-complete/g-aria-required | 2 + .../html-attributes-complete/g-aria-selected | 2 + .../html-attributes-complete/g-aria-sort | 4 + .../glyph-arabic-form | 4 + .../hkern-aria-atomic | 2 + .../hkern-aria-autocomplete | 4 + .../html-attributes-complete/hkern-aria-busy | 2 + .../hkern-aria-checked | 3 + .../hkern-aria-disabled | 2 + .../hkern-aria-dropeffect | 6 + .../hkern-aria-expanded | 2 + .../hkern-aria-grabbed | 2 + .../hkern-aria-haspopup | 2 + .../hkern-aria-hidden | 2 + .../hkern-aria-invalid | 4 + .../html-attributes-complete/hkern-aria-live | 3 + .../hkern-aria-multiline | 2 + .../hkern-aria-multiselectable | 2 + .../hkern-aria-orientation | 2 + .../hkern-aria-pressed | 3 + .../hkern-aria-readonly | 2 + .../hkern-aria-relevant | 4 + .../hkern-aria-required | 2 + .../hkern-aria-selected | 2 + .../html-attributes-complete/hkern-aria-sort | 4 + .../iframe-aria-atomic | 2 + .../iframe-aria-autocomplete | 4 + .../html-attributes-complete/iframe-aria-busy | 2 + .../iframe-aria-checked | 3 + .../iframe-aria-disabled | 2 + .../iframe-aria-dropeffect | 6 + .../iframe-aria-expanded | 2 + .../iframe-aria-grabbed | 2 + .../iframe-aria-haspopup | 2 + .../iframe-aria-hidden | 2 + .../iframe-aria-invalid | 4 + .../html-attributes-complete/iframe-aria-live | 3 + .../iframe-aria-multiline | 2 + .../iframe-aria-multiselectable | 2 + .../iframe-aria-orientation | 2 + .../iframe-aria-pressed | 3 + .../iframe-aria-readonly | 2 + .../iframe-aria-relevant | 4 + .../iframe-aria-required | 2 + .../iframe-aria-selected | 2 + .../html-attributes-complete/iframe-aria-sort | 4 + .../iframe-preserveAspectRatio | 12 + .../image-aria-atomic | 2 + .../image-aria-autocomplete | 4 + .../html-attributes-complete/image-aria-busy | 2 + .../image-aria-checked | 3 + .../image-aria-disabled | 2 + .../image-aria-dropeffect | 6 + .../image-aria-expanded | 2 + .../image-aria-grabbed | 2 + .../image-aria-haspopup | 2 + .../image-aria-hidden | 2 + .../image-aria-invalid | 4 + .../html-attributes-complete/image-aria-live | 3 + .../image-aria-multiline | 2 + .../image-aria-multiselectable | 2 + .../image-aria-orientation | 2 + .../image-aria-pressed | 3 + .../image-aria-readonly | 2 + .../image-aria-relevant | 4 + .../image-aria-required | 2 + .../image-aria-selected | 2 + .../html-attributes-complete/image-aria-sort | 4 + .../image-preserveAspectRatio | 12 + .../html-attributes-complete/line-aria-atomic | 2 + .../line-aria-autocomplete | 4 + .../html-attributes-complete/line-aria-busy | 2 + .../line-aria-checked | 3 + .../line-aria-disabled | 2 + .../line-aria-dropeffect | 6 + .../line-aria-expanded | 2 + .../line-aria-grabbed | 2 + .../line-aria-haspopup | 2 + .../html-attributes-complete/line-aria-hidden | 2 + .../line-aria-invalid | 4 + .../html-attributes-complete/line-aria-live | 3 + .../line-aria-multiline | 2 + .../line-aria-multiselectable | 2 + .../line-aria-orientation | 2 + .../line-aria-pressed | 3 + .../line-aria-readonly | 2 + .../line-aria-relevant | 4 + .../line-aria-required | 2 + .../line-aria-selected | 2 + .../html-attributes-complete/line-aria-sort | 4 + .../marker-preserveAspectRatio | 12 + .../html-attributes-complete/path-aria-atomic | 2 + .../path-aria-autocomplete | 4 + .../html-attributes-complete/path-aria-busy | 2 + .../path-aria-checked | 3 + .../path-aria-disabled | 2 + .../path-aria-dropeffect | 6 + .../path-aria-expanded | 2 + .../path-aria-grabbed | 2 + .../path-aria-haspopup | 2 + .../html-attributes-complete/path-aria-hidden | 2 + .../path-aria-invalid | 4 + .../html-attributes-complete/path-aria-live | 3 + .../path-aria-multiline | 2 + .../path-aria-multiselectable | 2 + .../path-aria-orientation | 2 + .../path-aria-pressed | 3 + .../path-aria-readonly | 2 + .../path-aria-relevant | 4 + .../path-aria-required | 2 + .../path-aria-selected | 2 + .../html-attributes-complete/path-aria-sort | 4 + .../pattern-preserveAspectRatio | 12 + .../polygon-aria-atomic | 2 + .../polygon-aria-autocomplete | 4 + .../polygon-aria-busy | 2 + .../polygon-aria-checked | 3 + .../polygon-aria-disabled | 2 + .../polygon-aria-dropeffect | 6 + .../polygon-aria-expanded | 2 + .../polygon-aria-grabbed | 2 + .../polygon-aria-haspopup | 2 + .../polygon-aria-hidden | 2 + .../polygon-aria-invalid | 4 + .../polygon-aria-live | 3 + .../polygon-aria-multiline | 2 + .../polygon-aria-multiselectable | 2 + .../polygon-aria-orientation | 2 + .../polygon-aria-pressed | 3 + .../polygon-aria-readonly | 2 + .../polygon-aria-relevant | 4 + .../polygon-aria-required | 2 + .../polygon-aria-selected | 2 + .../polygon-aria-sort | 4 + .../polyline-aria-atomic | 2 + .../polyline-aria-autocomplete | 4 + .../polyline-aria-busy | 2 + .../polyline-aria-checked | 3 + .../polyline-aria-disabled | 2 + .../polyline-aria-dropeffect | 6 + .../polyline-aria-expanded | 2 + .../polyline-aria-grabbed | 2 + .../polyline-aria-haspopup | 2 + .../polyline-aria-hidden | 2 + .../polyline-aria-invalid | 4 + .../polyline-aria-live | 3 + .../polyline-aria-multiline | 2 + .../polyline-aria-multiselectable | 2 + .../polyline-aria-orientation | 2 + .../polyline-aria-pressed | 3 + .../polyline-aria-readonly | 2 + .../polyline-aria-relevant | 4 + .../polyline-aria-required | 2 + .../polyline-aria-selected | 2 + .../polyline-aria-sort | 4 + .../html-attributes-complete/rect-aria-atomic | 2 + .../rect-aria-autocomplete | 4 + .../html-attributes-complete/rect-aria-busy | 2 + .../rect-aria-checked | 3 + .../rect-aria-disabled | 2 + .../rect-aria-dropeffect | 6 + .../rect-aria-expanded | 2 + .../rect-aria-grabbed | 2 + .../rect-aria-haspopup | 2 + .../html-attributes-complete/rect-aria-hidden | 2 + .../rect-aria-invalid | 4 + .../html-attributes-complete/rect-aria-live | 3 + .../rect-aria-multiline | 2 + .../rect-aria-multiselectable | 2 + .../rect-aria-orientation | 2 + .../rect-aria-pressed | 3 + .../rect-aria-readonly | 2 + .../rect-aria-relevant | 4 + .../rect-aria-required | 2 + .../rect-aria-selected | 2 + .../html-attributes-complete/rect-aria-sort | 4 + .../html-attributes-complete/svg-aria-atomic | 2 + .../svg-aria-autocomplete | 4 + .../html-attributes-complete/svg-aria-busy | 2 + .../html-attributes-complete/svg-aria-checked | 3 + .../svg-aria-disabled | 2 + .../svg-aria-dropeffect | 6 + .../svg-aria-expanded | 2 + .../html-attributes-complete/svg-aria-grabbed | 2 + .../svg-aria-haspopup | 2 + .../html-attributes-complete/svg-aria-hidden | 2 + .../html-attributes-complete/svg-aria-invalid | 4 + .../html-attributes-complete/svg-aria-live | 3 + .../svg-aria-multiline | 2 + .../svg-aria-multiselectable | 2 + .../svg-aria-orientation | 2 + .../html-attributes-complete/svg-aria-pressed | 3 + .../svg-aria-readonly | 2 + .../svg-aria-relevant | 4 + .../svg-aria-required | 2 + .../svg-aria-selected | 2 + .../html-attributes-complete/svg-aria-sort | 4 + .../svg-preserveAspectRatio | 12 + .../switch-aria-atomic | 2 + .../switch-aria-autocomplete | 4 + .../html-attributes-complete/switch-aria-busy | 2 + .../switch-aria-checked | 3 + .../switch-aria-disabled | 2 + .../switch-aria-dropeffect | 6 + .../switch-aria-expanded | 2 + .../switch-aria-grabbed | 2 + .../switch-aria-haspopup | 2 + .../switch-aria-hidden | 2 + .../switch-aria-invalid | 4 + .../html-attributes-complete/switch-aria-live | 3 + .../switch-aria-multiline | 2 + .../switch-aria-multiselectable | 2 + .../switch-aria-orientation | 2 + .../switch-aria-pressed | 3 + .../switch-aria-readonly | 2 + .../switch-aria-relevant | 4 + .../switch-aria-required | 2 + .../switch-aria-selected | 2 + .../html-attributes-complete/switch-aria-sort | 4 + .../symbol-aria-atomic | 2 + .../symbol-aria-autocomplete | 4 + .../html-attributes-complete/symbol-aria-busy | 2 + .../symbol-aria-checked | 3 + .../symbol-aria-disabled | 2 + .../symbol-aria-dropeffect | 6 + .../symbol-aria-expanded | 2 + .../symbol-aria-grabbed | 2 + .../symbol-aria-haspopup | 2 + .../symbol-aria-hidden | 2 + .../symbol-aria-invalid | 4 + .../html-attributes-complete/symbol-aria-live | 3 + .../symbol-aria-multiline | 2 + .../symbol-aria-multiselectable | 2 + .../symbol-aria-orientation | 2 + .../symbol-aria-pressed | 3 + .../symbol-aria-readonly | 2 + .../symbol-aria-relevant | 4 + .../symbol-aria-required | 2 + .../symbol-aria-selected | 2 + .../html-attributes-complete/symbol-aria-sort | 4 + .../symbol-preserveAspectRatio | 12 + .../html-attributes-complete/text-aria-atomic | 2 + .../text-aria-autocomplete | 4 + .../html-attributes-complete/text-aria-busy | 2 + .../text-aria-checked | 3 + .../text-aria-disabled | 2 + .../text-aria-dropeffect | 6 + .../text-aria-expanded | 2 + .../text-aria-grabbed | 2 + .../text-aria-haspopup | 2 + .../html-attributes-complete/text-aria-hidden | 2 + .../text-aria-invalid | 4 + .../html-attributes-complete/text-aria-live | 3 + .../text-aria-multiline | 2 + .../text-aria-multiselectable | 2 + .../text-aria-orientation | 2 + .../text-aria-pressed | 3 + .../text-aria-readonly | 2 + .../text-aria-relevant | 4 + .../text-aria-required | 2 + .../text-aria-selected | 2 + .../html-attributes-complete/text-aria-sort | 4 + .../textPath-aria-atomic | 2 + .../textPath-aria-autocomplete | 4 + .../textPath-aria-busy | 2 + .../textPath-aria-checked | 3 + .../textPath-aria-disabled | 2 + .../textPath-aria-dropeffect | 6 + .../textPath-aria-expanded | 2 + .../textPath-aria-grabbed | 2 + .../textPath-aria-haspopup | 2 + .../textPath-aria-hidden | 2 + .../textPath-aria-invalid | 4 + .../textPath-aria-live | 3 + .../textPath-aria-multiline | 2 + .../textPath-aria-multiselectable | 2 + .../textPath-aria-orientation | 2 + .../textPath-aria-pressed | 3 + .../textPath-aria-readonly | 2 + .../textPath-aria-relevant | 4 + .../textPath-aria-required | 2 + .../textPath-aria-selected | 2 + .../textPath-aria-sort | 4 + .../html-attributes-complete/tref-aria-atomic | 2 + .../tref-aria-autocomplete | 4 + .../html-attributes-complete/tref-aria-busy | 2 + .../tref-aria-checked | 3 + .../tref-aria-disabled | 2 + .../tref-aria-dropeffect | 6 + .../tref-aria-expanded | 2 + .../tref-aria-grabbed | 2 + .../tref-aria-haspopup | 2 + .../html-attributes-complete/tref-aria-hidden | 2 + .../tref-aria-invalid | 4 + .../html-attributes-complete/tref-aria-live | 3 + .../tref-aria-multiline | 2 + .../tref-aria-multiselectable | 2 + .../tref-aria-orientation | 2 + .../tref-aria-pressed | 3 + .../tref-aria-readonly | 2 + .../tref-aria-relevant | 4 + .../tref-aria-required | 2 + .../tref-aria-selected | 2 + .../html-attributes-complete/tref-aria-sort | 4 + .../tspan-aria-atomic | 2 + .../tspan-aria-autocomplete | 4 + .../html-attributes-complete/tspan-aria-busy | 2 + .../tspan-aria-checked | 3 + .../tspan-aria-disabled | 2 + .../tspan-aria-dropeffect | 6 + .../tspan-aria-expanded | 2 + .../tspan-aria-grabbed | 2 + .../tspan-aria-haspopup | 2 + .../tspan-aria-hidden | 2 + .../tspan-aria-invalid | 4 + .../html-attributes-complete/tspan-aria-live | 3 + .../tspan-aria-multiline | 2 + .../tspan-aria-multiselectable | 2 + .../tspan-aria-orientation | 2 + .../tspan-aria-pressed | 3 + .../tspan-aria-readonly | 2 + .../tspan-aria-relevant | 4 + .../tspan-aria-required | 2 + .../tspan-aria-selected | 2 + .../html-attributes-complete/tspan-aria-sort | 4 + .../html-attributes-complete/use-aria-atomic | 2 + .../use-aria-autocomplete | 4 + .../html-attributes-complete/use-aria-busy | 2 + .../html-attributes-complete/use-aria-checked | 3 + .../use-aria-disabled | 2 + .../use-aria-dropeffect | 6 + .../use-aria-expanded | 2 + .../html-attributes-complete/use-aria-grabbed | 2 + .../use-aria-haspopup | 2 + .../html-attributes-complete/use-aria-hidden | 2 + .../html-attributes-complete/use-aria-invalid | 4 + .../html-attributes-complete/use-aria-live | 3 + .../use-aria-multiline | 2 + .../use-aria-multiselectable | 2 + .../use-aria-orientation | 2 + .../html-attributes-complete/use-aria-pressed | 3 + .../use-aria-readonly | 2 + .../use-aria-relevant | 4 + .../use-aria-required | 2 + .../use-aria-selected | 2 + .../html-attributes-complete/use-aria-sort | 4 + .../video-aria-atomic | 2 + .../video-aria-autocomplete | 4 + .../html-attributes-complete/video-aria-busy | 2 + .../video-aria-checked | 3 + .../video-aria-disabled | 2 + .../video-aria-dropeffect | 6 + .../video-aria-expanded | 2 + .../video-aria-grabbed | 2 + .../video-aria-haspopup | 2 + .../video-aria-hidden | 2 + .../video-aria-invalid | 4 + .../html-attributes-complete/video-aria-live | 3 + .../video-aria-multiline | 2 + .../video-aria-multiselectable | 2 + .../video-aria-orientation | 2 + .../video-aria-pressed | 3 + .../video-aria-readonly | 2 + .../video-aria-relevant | 4 + .../video-aria-required | 2 + .../video-aria-selected | 2 + .../html-attributes-complete/video-aria-sort | 4 + .../video-preserveAspectRatio | 12 + .../html-attributes-complete/view-aria-atomic | 2 + .../view-aria-autocomplete | 4 + .../html-attributes-complete/view-aria-busy | 2 + .../view-aria-checked | 3 + .../view-aria-disabled | 2 + .../view-aria-dropeffect | 6 + .../view-aria-expanded | 2 + .../view-aria-grabbed | 2 + .../view-aria-haspopup | 2 + .../html-attributes-complete/view-aria-hidden | 2 + .../view-aria-invalid | 4 + .../html-attributes-complete/view-aria-live | 3 + .../view-aria-multiline | 2 + .../view-aria-multiselectable | 2 + .../view-aria-orientation | 2 + .../view-aria-pressed | 3 + .../view-aria-readonly | 2 + .../view-aria-relevant | 4 + .../view-aria-required | 2 + .../view-aria-selected | 2 + .../html-attributes-complete/view-aria-sort | 4 + .../view-preserveAspectRatio | 12 + html-stuff-svg/html-attributes-list/a | 36 ++ html-stuff-svg/html-attributes-list/altGlyph | 36 ++ .../html-attributes-list/altGlyphItem | 36 ++ html-stuff-svg/html-attributes-list/audio | 36 ++ html-stuff-svg/html-attributes-list/canvas | 36 ++ html-stuff-svg/html-attributes-list/circle | 36 ++ html-stuff-svg/html-attributes-list/cursor | 36 ++ html-stuff-svg/html-attributes-list/discard | 36 ++ html-stuff-svg/html-attributes-list/ellipse | 36 ++ html-stuff-svg/html-attributes-list/font | 8 +- html-stuff-svg/html-attributes-list/font-face | 24 +- .../html-attributes-list/foreignObject | 36 ++ html-stuff-svg/html-attributes-list/g | 36 ++ html-stuff-svg/html-attributes-list/glyph | 7 +- html-stuff-svg/html-attributes-list/hkern | 37 ++ html-stuff-svg/html-attributes-list/iframe | 36 ++ html-stuff-svg/html-attributes-list/image | 36 ++ html-stuff-svg/html-attributes-list/line | 36 ++ .../html-attributes-list/missing-glyph | 6 +- html-stuff-svg/html-attributes-list/path | 36 ++ html-stuff-svg/html-attributes-list/polygon | 36 ++ html-stuff-svg/html-attributes-list/polyline | 36 ++ html-stuff-svg/html-attributes-list/rect | 36 ++ html-stuff-svg/html-attributes-list/svg | 36 ++ html-stuff-svg/html-attributes-list/switch | 36 ++ html-stuff-svg/html-attributes-list/symbol | 36 ++ html-stuff-svg/html-attributes-list/text | 36 ++ html-stuff-svg/html-attributes-list/textPath | 36 ++ html-stuff-svg/html-attributes-list/tref | 36 ++ html-stuff-svg/html-attributes-list/tspan | 36 ++ html-stuff-svg/html-attributes-list/use | 36 ++ html-stuff-svg/html-attributes-list/video | 36 ++ html-stuff-svg/html-attributes-list/view | 36 ++ html-stuff-svg/html-attributes-list/vkern | 1 + .../font-face-font-stretch | 1 + src/svg.yaml | 334 +++++++++++++++++- tools/svg/wiki2yaml.pl | 6 +- 661 files changed, 3226 insertions(+), 8 deletions(-) create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/a-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/altGlyph-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/altGlyphItem-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/audio-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/canvas-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/canvas-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/circle-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/cursor-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/discard-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/ellipse-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/feImage-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/font-face-font-stretch create mode 100644 html-stuff-svg/html-attributes-complete/font-face-font-style create mode 100644 html-stuff-svg/html-attributes-complete/font-face-font-variant create mode 100644 html-stuff-svg/html-attributes-complete/font-face-font-weight create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/foreignObject-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/g-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/glyph-arabic-form create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/hkern-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/iframe-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/iframe-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/image-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/image-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/line-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/marker-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/path-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/pattern-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/polygon-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/polyline-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/rect-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/svg-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/svg-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/switch-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/symbol-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/symbol-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/text-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/textPath-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/tref-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/tspan-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/use-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/video-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/video-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-atomic create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-autocomplete create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-busy create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-checked create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-disabled create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-dropeffect create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-expanded create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-grabbed create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-haspopup create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-hidden create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-invalid create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-live create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-multiline create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-multiselectable create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-orientation create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-pressed create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-readonly create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-relevant create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-required create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-selected create mode 100644 html-stuff-svg/html-attributes-complete/view-aria-sort create mode 100644 html-stuff-svg/html-attributes-complete/view-preserveAspectRatio create mode 100644 html-stuff-svg/html-attributes-short-docs/font-face-font-stretch diff --git a/html-stuff-svg/html-attributes-complete/a-aria-atomic b/html-stuff-svg/html-attributes-complete/a-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-autocomplete b/html-stuff-svg/html-attributes-complete/a-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-busy b/html-stuff-svg/html-attributes-complete/a-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-checked b/html-stuff-svg/html-attributes-complete/a-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-disabled b/html-stuff-svg/html-attributes-complete/a-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-dropeffect b/html-stuff-svg/html-attributes-complete/a-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-expanded b/html-stuff-svg/html-attributes-complete/a-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-grabbed b/html-stuff-svg/html-attributes-complete/a-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-haspopup b/html-stuff-svg/html-attributes-complete/a-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-hidden b/html-stuff-svg/html-attributes-complete/a-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-invalid b/html-stuff-svg/html-attributes-complete/a-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-live b/html-stuff-svg/html-attributes-complete/a-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-multiline b/html-stuff-svg/html-attributes-complete/a-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-multiselectable b/html-stuff-svg/html-attributes-complete/a-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-orientation b/html-stuff-svg/html-attributes-complete/a-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-pressed b/html-stuff-svg/html-attributes-complete/a-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-readonly b/html-stuff-svg/html-attributes-complete/a-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-relevant b/html-stuff-svg/html-attributes-complete/a-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-required b/html-stuff-svg/html-attributes-complete/a-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-selected b/html-stuff-svg/html-attributes-complete/a-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/a-aria-sort b/html-stuff-svg/html-attributes-complete/a-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/a-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-atomic b/html-stuff-svg/html-attributes-complete/altGlyph-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-autocomplete b/html-stuff-svg/html-attributes-complete/altGlyph-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-busy b/html-stuff-svg/html-attributes-complete/altGlyph-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-checked b/html-stuff-svg/html-attributes-complete/altGlyph-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-disabled b/html-stuff-svg/html-attributes-complete/altGlyph-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-dropeffect b/html-stuff-svg/html-attributes-complete/altGlyph-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-expanded b/html-stuff-svg/html-attributes-complete/altGlyph-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-grabbed b/html-stuff-svg/html-attributes-complete/altGlyph-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-haspopup b/html-stuff-svg/html-attributes-complete/altGlyph-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-hidden b/html-stuff-svg/html-attributes-complete/altGlyph-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-invalid b/html-stuff-svg/html-attributes-complete/altGlyph-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-live b/html-stuff-svg/html-attributes-complete/altGlyph-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-multiline b/html-stuff-svg/html-attributes-complete/altGlyph-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-multiselectable b/html-stuff-svg/html-attributes-complete/altGlyph-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-orientation b/html-stuff-svg/html-attributes-complete/altGlyph-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-pressed b/html-stuff-svg/html-attributes-complete/altGlyph-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-readonly b/html-stuff-svg/html-attributes-complete/altGlyph-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-relevant b/html-stuff-svg/html-attributes-complete/altGlyph-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-required b/html-stuff-svg/html-attributes-complete/altGlyph-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-selected b/html-stuff-svg/html-attributes-complete/altGlyph-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyph-aria-sort b/html-stuff-svg/html-attributes-complete/altGlyph-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyph-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-atomic b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-autocomplete b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-busy b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-checked b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-disabled b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-dropeffect b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-expanded b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-grabbed b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-haspopup b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-hidden b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-invalid b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-live b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiline b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiselectable b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-orientation b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-pressed b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-readonly b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-relevant b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-required b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-selected b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-sort b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/altGlyphItem-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-atomic b/html-stuff-svg/html-attributes-complete/audio-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-autocomplete b/html-stuff-svg/html-attributes-complete/audio-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-busy b/html-stuff-svg/html-attributes-complete/audio-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-checked b/html-stuff-svg/html-attributes-complete/audio-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-disabled b/html-stuff-svg/html-attributes-complete/audio-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-dropeffect b/html-stuff-svg/html-attributes-complete/audio-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-expanded b/html-stuff-svg/html-attributes-complete/audio-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-grabbed b/html-stuff-svg/html-attributes-complete/audio-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-haspopup b/html-stuff-svg/html-attributes-complete/audio-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-hidden b/html-stuff-svg/html-attributes-complete/audio-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-invalid b/html-stuff-svg/html-attributes-complete/audio-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-live b/html-stuff-svg/html-attributes-complete/audio-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-multiline b/html-stuff-svg/html-attributes-complete/audio-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-multiselectable b/html-stuff-svg/html-attributes-complete/audio-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-orientation b/html-stuff-svg/html-attributes-complete/audio-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-pressed b/html-stuff-svg/html-attributes-complete/audio-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-readonly b/html-stuff-svg/html-attributes-complete/audio-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-relevant b/html-stuff-svg/html-attributes-complete/audio-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-required b/html-stuff-svg/html-attributes-complete/audio-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-selected b/html-stuff-svg/html-attributes-complete/audio-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/audio-aria-sort b/html-stuff-svg/html-attributes-complete/audio-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/audio-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-atomic b/html-stuff-svg/html-attributes-complete/canvas-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-autocomplete b/html-stuff-svg/html-attributes-complete/canvas-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-busy b/html-stuff-svg/html-attributes-complete/canvas-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-checked b/html-stuff-svg/html-attributes-complete/canvas-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-disabled b/html-stuff-svg/html-attributes-complete/canvas-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-dropeffect b/html-stuff-svg/html-attributes-complete/canvas-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-expanded b/html-stuff-svg/html-attributes-complete/canvas-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-grabbed b/html-stuff-svg/html-attributes-complete/canvas-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-haspopup b/html-stuff-svg/html-attributes-complete/canvas-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-hidden b/html-stuff-svg/html-attributes-complete/canvas-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-invalid b/html-stuff-svg/html-attributes-complete/canvas-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-live b/html-stuff-svg/html-attributes-complete/canvas-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-multiline b/html-stuff-svg/html-attributes-complete/canvas-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-multiselectable b/html-stuff-svg/html-attributes-complete/canvas-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-orientation b/html-stuff-svg/html-attributes-complete/canvas-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-pressed b/html-stuff-svg/html-attributes-complete/canvas-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-readonly b/html-stuff-svg/html-attributes-complete/canvas-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-relevant b/html-stuff-svg/html-attributes-complete/canvas-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-required b/html-stuff-svg/html-attributes-complete/canvas-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-selected b/html-stuff-svg/html-attributes-complete/canvas-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-aria-sort b/html-stuff-svg/html-attributes-complete/canvas-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/canvas-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/canvas-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/canvas-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-atomic b/html-stuff-svg/html-attributes-complete/circle-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-autocomplete b/html-stuff-svg/html-attributes-complete/circle-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-busy b/html-stuff-svg/html-attributes-complete/circle-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-checked b/html-stuff-svg/html-attributes-complete/circle-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-disabled b/html-stuff-svg/html-attributes-complete/circle-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-dropeffect b/html-stuff-svg/html-attributes-complete/circle-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-expanded b/html-stuff-svg/html-attributes-complete/circle-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-grabbed b/html-stuff-svg/html-attributes-complete/circle-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-haspopup b/html-stuff-svg/html-attributes-complete/circle-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-hidden b/html-stuff-svg/html-attributes-complete/circle-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-invalid b/html-stuff-svg/html-attributes-complete/circle-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-live b/html-stuff-svg/html-attributes-complete/circle-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-multiline b/html-stuff-svg/html-attributes-complete/circle-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-multiselectable b/html-stuff-svg/html-attributes-complete/circle-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-orientation b/html-stuff-svg/html-attributes-complete/circle-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-pressed b/html-stuff-svg/html-attributes-complete/circle-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-readonly b/html-stuff-svg/html-attributes-complete/circle-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-relevant b/html-stuff-svg/html-attributes-complete/circle-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-required b/html-stuff-svg/html-attributes-complete/circle-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-selected b/html-stuff-svg/html-attributes-complete/circle-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/circle-aria-sort b/html-stuff-svg/html-attributes-complete/circle-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/circle-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-atomic b/html-stuff-svg/html-attributes-complete/cursor-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-autocomplete b/html-stuff-svg/html-attributes-complete/cursor-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-busy b/html-stuff-svg/html-attributes-complete/cursor-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-checked b/html-stuff-svg/html-attributes-complete/cursor-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-disabled b/html-stuff-svg/html-attributes-complete/cursor-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-dropeffect b/html-stuff-svg/html-attributes-complete/cursor-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-expanded b/html-stuff-svg/html-attributes-complete/cursor-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-grabbed b/html-stuff-svg/html-attributes-complete/cursor-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-haspopup b/html-stuff-svg/html-attributes-complete/cursor-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-hidden b/html-stuff-svg/html-attributes-complete/cursor-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-invalid b/html-stuff-svg/html-attributes-complete/cursor-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-live b/html-stuff-svg/html-attributes-complete/cursor-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-multiline b/html-stuff-svg/html-attributes-complete/cursor-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-multiselectable b/html-stuff-svg/html-attributes-complete/cursor-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-orientation b/html-stuff-svg/html-attributes-complete/cursor-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-pressed b/html-stuff-svg/html-attributes-complete/cursor-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-readonly b/html-stuff-svg/html-attributes-complete/cursor-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-relevant b/html-stuff-svg/html-attributes-complete/cursor-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-required b/html-stuff-svg/html-attributes-complete/cursor-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-selected b/html-stuff-svg/html-attributes-complete/cursor-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/cursor-aria-sort b/html-stuff-svg/html-attributes-complete/cursor-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/cursor-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-atomic b/html-stuff-svg/html-attributes-complete/discard-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-autocomplete b/html-stuff-svg/html-attributes-complete/discard-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-busy b/html-stuff-svg/html-attributes-complete/discard-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-checked b/html-stuff-svg/html-attributes-complete/discard-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-disabled b/html-stuff-svg/html-attributes-complete/discard-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-dropeffect b/html-stuff-svg/html-attributes-complete/discard-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-expanded b/html-stuff-svg/html-attributes-complete/discard-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-grabbed b/html-stuff-svg/html-attributes-complete/discard-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-haspopup b/html-stuff-svg/html-attributes-complete/discard-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-hidden b/html-stuff-svg/html-attributes-complete/discard-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-invalid b/html-stuff-svg/html-attributes-complete/discard-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-live b/html-stuff-svg/html-attributes-complete/discard-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-multiline b/html-stuff-svg/html-attributes-complete/discard-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-multiselectable b/html-stuff-svg/html-attributes-complete/discard-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-orientation b/html-stuff-svg/html-attributes-complete/discard-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-pressed b/html-stuff-svg/html-attributes-complete/discard-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-readonly b/html-stuff-svg/html-attributes-complete/discard-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-relevant b/html-stuff-svg/html-attributes-complete/discard-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-required b/html-stuff-svg/html-attributes-complete/discard-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-selected b/html-stuff-svg/html-attributes-complete/discard-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/discard-aria-sort b/html-stuff-svg/html-attributes-complete/discard-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/discard-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-atomic b/html-stuff-svg/html-attributes-complete/ellipse-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-autocomplete b/html-stuff-svg/html-attributes-complete/ellipse-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-busy b/html-stuff-svg/html-attributes-complete/ellipse-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-checked b/html-stuff-svg/html-attributes-complete/ellipse-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-disabled b/html-stuff-svg/html-attributes-complete/ellipse-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-dropeffect b/html-stuff-svg/html-attributes-complete/ellipse-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-expanded b/html-stuff-svg/html-attributes-complete/ellipse-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-grabbed b/html-stuff-svg/html-attributes-complete/ellipse-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-haspopup b/html-stuff-svg/html-attributes-complete/ellipse-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-hidden b/html-stuff-svg/html-attributes-complete/ellipse-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-invalid b/html-stuff-svg/html-attributes-complete/ellipse-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-live b/html-stuff-svg/html-attributes-complete/ellipse-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-multiline b/html-stuff-svg/html-attributes-complete/ellipse-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-multiselectable b/html-stuff-svg/html-attributes-complete/ellipse-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-orientation b/html-stuff-svg/html-attributes-complete/ellipse-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-pressed b/html-stuff-svg/html-attributes-complete/ellipse-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-readonly b/html-stuff-svg/html-attributes-complete/ellipse-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-relevant b/html-stuff-svg/html-attributes-complete/ellipse-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-required b/html-stuff-svg/html-attributes-complete/ellipse-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-selected b/html-stuff-svg/html-attributes-complete/ellipse-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/ellipse-aria-sort b/html-stuff-svg/html-attributes-complete/ellipse-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/ellipse-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/feImage-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/feImage-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/feImage-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/font-face-font-stretch b/html-stuff-svg/html-attributes-complete/font-face-font-stretch new file mode 100644 index 0000000..6241ada --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/font-face-font-stretch @@ -0,0 +1,9 @@ +condensed +expanded +extra-condensed +extra-expanded +normal +semi-condensed +semi-expanded +ultra-condensed +ultra-expanded \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/font-face-font-style b/html-stuff-svg/html-attributes-complete/font-face-font-style new file mode 100644 index 0000000..f2ae164 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/font-face-font-style @@ -0,0 +1,3 @@ +italic +normal +oblique \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/font-face-font-variant b/html-stuff-svg/html-attributes-complete/font-face-font-variant new file mode 100644 index 0000000..9f2badb --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/font-face-font-variant @@ -0,0 +1,2 @@ +normal +small-caps \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/font-face-font-weight b/html-stuff-svg/html-attributes-complete/font-face-font-weight new file mode 100644 index 0000000..f83ffb7 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/font-face-font-weight @@ -0,0 +1,11 @@ +100 +200 +300 +400 +500 +600 +700 +800 +900 +bold +normal \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-atomic b/html-stuff-svg/html-attributes-complete/foreignObject-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-autocomplete b/html-stuff-svg/html-attributes-complete/foreignObject-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-busy b/html-stuff-svg/html-attributes-complete/foreignObject-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-checked b/html-stuff-svg/html-attributes-complete/foreignObject-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-disabled b/html-stuff-svg/html-attributes-complete/foreignObject-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-dropeffect b/html-stuff-svg/html-attributes-complete/foreignObject-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-expanded b/html-stuff-svg/html-attributes-complete/foreignObject-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-grabbed b/html-stuff-svg/html-attributes-complete/foreignObject-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-haspopup b/html-stuff-svg/html-attributes-complete/foreignObject-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-hidden b/html-stuff-svg/html-attributes-complete/foreignObject-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-invalid b/html-stuff-svg/html-attributes-complete/foreignObject-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-live b/html-stuff-svg/html-attributes-complete/foreignObject-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-multiline b/html-stuff-svg/html-attributes-complete/foreignObject-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-multiselectable b/html-stuff-svg/html-attributes-complete/foreignObject-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-orientation b/html-stuff-svg/html-attributes-complete/foreignObject-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-pressed b/html-stuff-svg/html-attributes-complete/foreignObject-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-readonly b/html-stuff-svg/html-attributes-complete/foreignObject-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-relevant b/html-stuff-svg/html-attributes-complete/foreignObject-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-required b/html-stuff-svg/html-attributes-complete/foreignObject-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-selected b/html-stuff-svg/html-attributes-complete/foreignObject-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/foreignObject-aria-sort b/html-stuff-svg/html-attributes-complete/foreignObject-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/foreignObject-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-atomic b/html-stuff-svg/html-attributes-complete/g-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-autocomplete b/html-stuff-svg/html-attributes-complete/g-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-busy b/html-stuff-svg/html-attributes-complete/g-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-checked b/html-stuff-svg/html-attributes-complete/g-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-disabled b/html-stuff-svg/html-attributes-complete/g-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-dropeffect b/html-stuff-svg/html-attributes-complete/g-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-expanded b/html-stuff-svg/html-attributes-complete/g-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-grabbed b/html-stuff-svg/html-attributes-complete/g-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-haspopup b/html-stuff-svg/html-attributes-complete/g-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-hidden b/html-stuff-svg/html-attributes-complete/g-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-invalid b/html-stuff-svg/html-attributes-complete/g-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-live b/html-stuff-svg/html-attributes-complete/g-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-multiline b/html-stuff-svg/html-attributes-complete/g-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-multiselectable b/html-stuff-svg/html-attributes-complete/g-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-orientation b/html-stuff-svg/html-attributes-complete/g-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-pressed b/html-stuff-svg/html-attributes-complete/g-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-readonly b/html-stuff-svg/html-attributes-complete/g-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-relevant b/html-stuff-svg/html-attributes-complete/g-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-required b/html-stuff-svg/html-attributes-complete/g-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-selected b/html-stuff-svg/html-attributes-complete/g-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/g-aria-sort b/html-stuff-svg/html-attributes-complete/g-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/g-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/glyph-arabic-form b/html-stuff-svg/html-attributes-complete/glyph-arabic-form new file mode 100644 index 0000000..c9967d0 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/glyph-arabic-form @@ -0,0 +1,4 @@ +initial +isolated +medial +terminal \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-atomic b/html-stuff-svg/html-attributes-complete/hkern-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-autocomplete b/html-stuff-svg/html-attributes-complete/hkern-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-busy b/html-stuff-svg/html-attributes-complete/hkern-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-checked b/html-stuff-svg/html-attributes-complete/hkern-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-disabled b/html-stuff-svg/html-attributes-complete/hkern-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-dropeffect b/html-stuff-svg/html-attributes-complete/hkern-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-expanded b/html-stuff-svg/html-attributes-complete/hkern-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-grabbed b/html-stuff-svg/html-attributes-complete/hkern-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-haspopup b/html-stuff-svg/html-attributes-complete/hkern-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-hidden b/html-stuff-svg/html-attributes-complete/hkern-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-invalid b/html-stuff-svg/html-attributes-complete/hkern-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-live b/html-stuff-svg/html-attributes-complete/hkern-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-multiline b/html-stuff-svg/html-attributes-complete/hkern-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-multiselectable b/html-stuff-svg/html-attributes-complete/hkern-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-orientation b/html-stuff-svg/html-attributes-complete/hkern-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-pressed b/html-stuff-svg/html-attributes-complete/hkern-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-readonly b/html-stuff-svg/html-attributes-complete/hkern-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-relevant b/html-stuff-svg/html-attributes-complete/hkern-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-required b/html-stuff-svg/html-attributes-complete/hkern-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-selected b/html-stuff-svg/html-attributes-complete/hkern-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/hkern-aria-sort b/html-stuff-svg/html-attributes-complete/hkern-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/hkern-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-atomic b/html-stuff-svg/html-attributes-complete/iframe-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-autocomplete b/html-stuff-svg/html-attributes-complete/iframe-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-busy b/html-stuff-svg/html-attributes-complete/iframe-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-checked b/html-stuff-svg/html-attributes-complete/iframe-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-disabled b/html-stuff-svg/html-attributes-complete/iframe-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-dropeffect b/html-stuff-svg/html-attributes-complete/iframe-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-expanded b/html-stuff-svg/html-attributes-complete/iframe-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-grabbed b/html-stuff-svg/html-attributes-complete/iframe-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-haspopup b/html-stuff-svg/html-attributes-complete/iframe-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-hidden b/html-stuff-svg/html-attributes-complete/iframe-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-invalid b/html-stuff-svg/html-attributes-complete/iframe-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-live b/html-stuff-svg/html-attributes-complete/iframe-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-multiline b/html-stuff-svg/html-attributes-complete/iframe-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-multiselectable b/html-stuff-svg/html-attributes-complete/iframe-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-orientation b/html-stuff-svg/html-attributes-complete/iframe-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-pressed b/html-stuff-svg/html-attributes-complete/iframe-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-readonly b/html-stuff-svg/html-attributes-complete/iframe-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-relevant b/html-stuff-svg/html-attributes-complete/iframe-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-required b/html-stuff-svg/html-attributes-complete/iframe-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-selected b/html-stuff-svg/html-attributes-complete/iframe-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-aria-sort b/html-stuff-svg/html-attributes-complete/iframe-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/iframe-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/iframe-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/iframe-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-atomic b/html-stuff-svg/html-attributes-complete/image-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-autocomplete b/html-stuff-svg/html-attributes-complete/image-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-busy b/html-stuff-svg/html-attributes-complete/image-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-checked b/html-stuff-svg/html-attributes-complete/image-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-disabled b/html-stuff-svg/html-attributes-complete/image-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-dropeffect b/html-stuff-svg/html-attributes-complete/image-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-expanded b/html-stuff-svg/html-attributes-complete/image-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-grabbed b/html-stuff-svg/html-attributes-complete/image-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-haspopup b/html-stuff-svg/html-attributes-complete/image-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-hidden b/html-stuff-svg/html-attributes-complete/image-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-invalid b/html-stuff-svg/html-attributes-complete/image-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-live b/html-stuff-svg/html-attributes-complete/image-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-multiline b/html-stuff-svg/html-attributes-complete/image-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-multiselectable b/html-stuff-svg/html-attributes-complete/image-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-orientation b/html-stuff-svg/html-attributes-complete/image-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-pressed b/html-stuff-svg/html-attributes-complete/image-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-readonly b/html-stuff-svg/html-attributes-complete/image-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-relevant b/html-stuff-svg/html-attributes-complete/image-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-required b/html-stuff-svg/html-attributes-complete/image-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-selected b/html-stuff-svg/html-attributes-complete/image-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-aria-sort b/html-stuff-svg/html-attributes-complete/image-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/image-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/image-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/image-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-atomic b/html-stuff-svg/html-attributes-complete/line-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-autocomplete b/html-stuff-svg/html-attributes-complete/line-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-busy b/html-stuff-svg/html-attributes-complete/line-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-checked b/html-stuff-svg/html-attributes-complete/line-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-disabled b/html-stuff-svg/html-attributes-complete/line-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-dropeffect b/html-stuff-svg/html-attributes-complete/line-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-expanded b/html-stuff-svg/html-attributes-complete/line-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-grabbed b/html-stuff-svg/html-attributes-complete/line-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-haspopup b/html-stuff-svg/html-attributes-complete/line-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-hidden b/html-stuff-svg/html-attributes-complete/line-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-invalid b/html-stuff-svg/html-attributes-complete/line-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-live b/html-stuff-svg/html-attributes-complete/line-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-multiline b/html-stuff-svg/html-attributes-complete/line-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-multiselectable b/html-stuff-svg/html-attributes-complete/line-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-orientation b/html-stuff-svg/html-attributes-complete/line-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-pressed b/html-stuff-svg/html-attributes-complete/line-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-readonly b/html-stuff-svg/html-attributes-complete/line-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-relevant b/html-stuff-svg/html-attributes-complete/line-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-required b/html-stuff-svg/html-attributes-complete/line-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-selected b/html-stuff-svg/html-attributes-complete/line-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/line-aria-sort b/html-stuff-svg/html-attributes-complete/line-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/line-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/marker-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/marker-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/marker-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-atomic b/html-stuff-svg/html-attributes-complete/path-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-autocomplete b/html-stuff-svg/html-attributes-complete/path-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-busy b/html-stuff-svg/html-attributes-complete/path-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-checked b/html-stuff-svg/html-attributes-complete/path-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-disabled b/html-stuff-svg/html-attributes-complete/path-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-dropeffect b/html-stuff-svg/html-attributes-complete/path-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-expanded b/html-stuff-svg/html-attributes-complete/path-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-grabbed b/html-stuff-svg/html-attributes-complete/path-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-haspopup b/html-stuff-svg/html-attributes-complete/path-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-hidden b/html-stuff-svg/html-attributes-complete/path-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-invalid b/html-stuff-svg/html-attributes-complete/path-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-live b/html-stuff-svg/html-attributes-complete/path-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-multiline b/html-stuff-svg/html-attributes-complete/path-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-multiselectable b/html-stuff-svg/html-attributes-complete/path-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-orientation b/html-stuff-svg/html-attributes-complete/path-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-pressed b/html-stuff-svg/html-attributes-complete/path-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-readonly b/html-stuff-svg/html-attributes-complete/path-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-relevant b/html-stuff-svg/html-attributes-complete/path-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-required b/html-stuff-svg/html-attributes-complete/path-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-selected b/html-stuff-svg/html-attributes-complete/path-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/path-aria-sort b/html-stuff-svg/html-attributes-complete/path-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/path-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/pattern-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/pattern-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/pattern-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-atomic b/html-stuff-svg/html-attributes-complete/polygon-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-autocomplete b/html-stuff-svg/html-attributes-complete/polygon-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-busy b/html-stuff-svg/html-attributes-complete/polygon-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-checked b/html-stuff-svg/html-attributes-complete/polygon-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-disabled b/html-stuff-svg/html-attributes-complete/polygon-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-dropeffect b/html-stuff-svg/html-attributes-complete/polygon-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-expanded b/html-stuff-svg/html-attributes-complete/polygon-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-grabbed b/html-stuff-svg/html-attributes-complete/polygon-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-haspopup b/html-stuff-svg/html-attributes-complete/polygon-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-hidden b/html-stuff-svg/html-attributes-complete/polygon-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-invalid b/html-stuff-svg/html-attributes-complete/polygon-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-live b/html-stuff-svg/html-attributes-complete/polygon-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-multiline b/html-stuff-svg/html-attributes-complete/polygon-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-multiselectable b/html-stuff-svg/html-attributes-complete/polygon-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-orientation b/html-stuff-svg/html-attributes-complete/polygon-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-pressed b/html-stuff-svg/html-attributes-complete/polygon-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-readonly b/html-stuff-svg/html-attributes-complete/polygon-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-relevant b/html-stuff-svg/html-attributes-complete/polygon-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-required b/html-stuff-svg/html-attributes-complete/polygon-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-selected b/html-stuff-svg/html-attributes-complete/polygon-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polygon-aria-sort b/html-stuff-svg/html-attributes-complete/polygon-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polygon-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-atomic b/html-stuff-svg/html-attributes-complete/polyline-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-autocomplete b/html-stuff-svg/html-attributes-complete/polyline-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-busy b/html-stuff-svg/html-attributes-complete/polyline-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-checked b/html-stuff-svg/html-attributes-complete/polyline-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-disabled b/html-stuff-svg/html-attributes-complete/polyline-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-dropeffect b/html-stuff-svg/html-attributes-complete/polyline-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-expanded b/html-stuff-svg/html-attributes-complete/polyline-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-grabbed b/html-stuff-svg/html-attributes-complete/polyline-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-haspopup b/html-stuff-svg/html-attributes-complete/polyline-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-hidden b/html-stuff-svg/html-attributes-complete/polyline-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-invalid b/html-stuff-svg/html-attributes-complete/polyline-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-live b/html-stuff-svg/html-attributes-complete/polyline-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-multiline b/html-stuff-svg/html-attributes-complete/polyline-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-multiselectable b/html-stuff-svg/html-attributes-complete/polyline-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-orientation b/html-stuff-svg/html-attributes-complete/polyline-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-pressed b/html-stuff-svg/html-attributes-complete/polyline-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-readonly b/html-stuff-svg/html-attributes-complete/polyline-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-relevant b/html-stuff-svg/html-attributes-complete/polyline-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-required b/html-stuff-svg/html-attributes-complete/polyline-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-selected b/html-stuff-svg/html-attributes-complete/polyline-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/polyline-aria-sort b/html-stuff-svg/html-attributes-complete/polyline-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/polyline-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-atomic b/html-stuff-svg/html-attributes-complete/rect-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-autocomplete b/html-stuff-svg/html-attributes-complete/rect-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-busy b/html-stuff-svg/html-attributes-complete/rect-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-checked b/html-stuff-svg/html-attributes-complete/rect-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-disabled b/html-stuff-svg/html-attributes-complete/rect-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-dropeffect b/html-stuff-svg/html-attributes-complete/rect-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-expanded b/html-stuff-svg/html-attributes-complete/rect-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-grabbed b/html-stuff-svg/html-attributes-complete/rect-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-haspopup b/html-stuff-svg/html-attributes-complete/rect-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-hidden b/html-stuff-svg/html-attributes-complete/rect-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-invalid b/html-stuff-svg/html-attributes-complete/rect-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-live b/html-stuff-svg/html-attributes-complete/rect-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-multiline b/html-stuff-svg/html-attributes-complete/rect-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-multiselectable b/html-stuff-svg/html-attributes-complete/rect-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-orientation b/html-stuff-svg/html-attributes-complete/rect-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-pressed b/html-stuff-svg/html-attributes-complete/rect-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-readonly b/html-stuff-svg/html-attributes-complete/rect-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-relevant b/html-stuff-svg/html-attributes-complete/rect-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-required b/html-stuff-svg/html-attributes-complete/rect-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-selected b/html-stuff-svg/html-attributes-complete/rect-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/rect-aria-sort b/html-stuff-svg/html-attributes-complete/rect-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/rect-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-atomic b/html-stuff-svg/html-attributes-complete/svg-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-autocomplete b/html-stuff-svg/html-attributes-complete/svg-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-busy b/html-stuff-svg/html-attributes-complete/svg-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-checked b/html-stuff-svg/html-attributes-complete/svg-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-disabled b/html-stuff-svg/html-attributes-complete/svg-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-dropeffect b/html-stuff-svg/html-attributes-complete/svg-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-expanded b/html-stuff-svg/html-attributes-complete/svg-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-grabbed b/html-stuff-svg/html-attributes-complete/svg-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-haspopup b/html-stuff-svg/html-attributes-complete/svg-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-hidden b/html-stuff-svg/html-attributes-complete/svg-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-invalid b/html-stuff-svg/html-attributes-complete/svg-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-live b/html-stuff-svg/html-attributes-complete/svg-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-multiline b/html-stuff-svg/html-attributes-complete/svg-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-multiselectable b/html-stuff-svg/html-attributes-complete/svg-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-orientation b/html-stuff-svg/html-attributes-complete/svg-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-pressed b/html-stuff-svg/html-attributes-complete/svg-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-readonly b/html-stuff-svg/html-attributes-complete/svg-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-relevant b/html-stuff-svg/html-attributes-complete/svg-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-required b/html-stuff-svg/html-attributes-complete/svg-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-selected b/html-stuff-svg/html-attributes-complete/svg-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-aria-sort b/html-stuff-svg/html-attributes-complete/svg-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/svg-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/svg-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/svg-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-atomic b/html-stuff-svg/html-attributes-complete/switch-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-autocomplete b/html-stuff-svg/html-attributes-complete/switch-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-busy b/html-stuff-svg/html-attributes-complete/switch-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-checked b/html-stuff-svg/html-attributes-complete/switch-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-disabled b/html-stuff-svg/html-attributes-complete/switch-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-dropeffect b/html-stuff-svg/html-attributes-complete/switch-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-expanded b/html-stuff-svg/html-attributes-complete/switch-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-grabbed b/html-stuff-svg/html-attributes-complete/switch-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-haspopup b/html-stuff-svg/html-attributes-complete/switch-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-hidden b/html-stuff-svg/html-attributes-complete/switch-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-invalid b/html-stuff-svg/html-attributes-complete/switch-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-live b/html-stuff-svg/html-attributes-complete/switch-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-multiline b/html-stuff-svg/html-attributes-complete/switch-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-multiselectable b/html-stuff-svg/html-attributes-complete/switch-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-orientation b/html-stuff-svg/html-attributes-complete/switch-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-pressed b/html-stuff-svg/html-attributes-complete/switch-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-readonly b/html-stuff-svg/html-attributes-complete/switch-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-relevant b/html-stuff-svg/html-attributes-complete/switch-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-required b/html-stuff-svg/html-attributes-complete/switch-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-selected b/html-stuff-svg/html-attributes-complete/switch-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/switch-aria-sort b/html-stuff-svg/html-attributes-complete/switch-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/switch-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-atomic b/html-stuff-svg/html-attributes-complete/symbol-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-autocomplete b/html-stuff-svg/html-attributes-complete/symbol-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-busy b/html-stuff-svg/html-attributes-complete/symbol-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-checked b/html-stuff-svg/html-attributes-complete/symbol-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-disabled b/html-stuff-svg/html-attributes-complete/symbol-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-dropeffect b/html-stuff-svg/html-attributes-complete/symbol-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-expanded b/html-stuff-svg/html-attributes-complete/symbol-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-grabbed b/html-stuff-svg/html-attributes-complete/symbol-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-haspopup b/html-stuff-svg/html-attributes-complete/symbol-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-hidden b/html-stuff-svg/html-attributes-complete/symbol-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-invalid b/html-stuff-svg/html-attributes-complete/symbol-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-live b/html-stuff-svg/html-attributes-complete/symbol-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-multiline b/html-stuff-svg/html-attributes-complete/symbol-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-multiselectable b/html-stuff-svg/html-attributes-complete/symbol-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-orientation b/html-stuff-svg/html-attributes-complete/symbol-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-pressed b/html-stuff-svg/html-attributes-complete/symbol-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-readonly b/html-stuff-svg/html-attributes-complete/symbol-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-relevant b/html-stuff-svg/html-attributes-complete/symbol-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-required b/html-stuff-svg/html-attributes-complete/symbol-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-selected b/html-stuff-svg/html-attributes-complete/symbol-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-aria-sort b/html-stuff-svg/html-attributes-complete/symbol-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/symbol-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/symbol-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/symbol-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-atomic b/html-stuff-svg/html-attributes-complete/text-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-autocomplete b/html-stuff-svg/html-attributes-complete/text-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-busy b/html-stuff-svg/html-attributes-complete/text-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-checked b/html-stuff-svg/html-attributes-complete/text-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-disabled b/html-stuff-svg/html-attributes-complete/text-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-dropeffect b/html-stuff-svg/html-attributes-complete/text-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-expanded b/html-stuff-svg/html-attributes-complete/text-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-grabbed b/html-stuff-svg/html-attributes-complete/text-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-haspopup b/html-stuff-svg/html-attributes-complete/text-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-hidden b/html-stuff-svg/html-attributes-complete/text-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-invalid b/html-stuff-svg/html-attributes-complete/text-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-live b/html-stuff-svg/html-attributes-complete/text-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-multiline b/html-stuff-svg/html-attributes-complete/text-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-multiselectable b/html-stuff-svg/html-attributes-complete/text-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-orientation b/html-stuff-svg/html-attributes-complete/text-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-pressed b/html-stuff-svg/html-attributes-complete/text-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-readonly b/html-stuff-svg/html-attributes-complete/text-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-relevant b/html-stuff-svg/html-attributes-complete/text-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-required b/html-stuff-svg/html-attributes-complete/text-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-selected b/html-stuff-svg/html-attributes-complete/text-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/text-aria-sort b/html-stuff-svg/html-attributes-complete/text-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/text-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-atomic b/html-stuff-svg/html-attributes-complete/textPath-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-autocomplete b/html-stuff-svg/html-attributes-complete/textPath-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-busy b/html-stuff-svg/html-attributes-complete/textPath-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-checked b/html-stuff-svg/html-attributes-complete/textPath-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-disabled b/html-stuff-svg/html-attributes-complete/textPath-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-dropeffect b/html-stuff-svg/html-attributes-complete/textPath-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-expanded b/html-stuff-svg/html-attributes-complete/textPath-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-grabbed b/html-stuff-svg/html-attributes-complete/textPath-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-haspopup b/html-stuff-svg/html-attributes-complete/textPath-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-hidden b/html-stuff-svg/html-attributes-complete/textPath-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-invalid b/html-stuff-svg/html-attributes-complete/textPath-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-live b/html-stuff-svg/html-attributes-complete/textPath-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-multiline b/html-stuff-svg/html-attributes-complete/textPath-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-multiselectable b/html-stuff-svg/html-attributes-complete/textPath-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-orientation b/html-stuff-svg/html-attributes-complete/textPath-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-pressed b/html-stuff-svg/html-attributes-complete/textPath-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-readonly b/html-stuff-svg/html-attributes-complete/textPath-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-relevant b/html-stuff-svg/html-attributes-complete/textPath-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-required b/html-stuff-svg/html-attributes-complete/textPath-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-selected b/html-stuff-svg/html-attributes-complete/textPath-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/textPath-aria-sort b/html-stuff-svg/html-attributes-complete/textPath-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/textPath-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-atomic b/html-stuff-svg/html-attributes-complete/tref-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-autocomplete b/html-stuff-svg/html-attributes-complete/tref-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-busy b/html-stuff-svg/html-attributes-complete/tref-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-checked b/html-stuff-svg/html-attributes-complete/tref-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-disabled b/html-stuff-svg/html-attributes-complete/tref-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-dropeffect b/html-stuff-svg/html-attributes-complete/tref-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-expanded b/html-stuff-svg/html-attributes-complete/tref-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-grabbed b/html-stuff-svg/html-attributes-complete/tref-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-haspopup b/html-stuff-svg/html-attributes-complete/tref-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-hidden b/html-stuff-svg/html-attributes-complete/tref-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-invalid b/html-stuff-svg/html-attributes-complete/tref-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-live b/html-stuff-svg/html-attributes-complete/tref-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-multiline b/html-stuff-svg/html-attributes-complete/tref-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-multiselectable b/html-stuff-svg/html-attributes-complete/tref-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-orientation b/html-stuff-svg/html-attributes-complete/tref-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-pressed b/html-stuff-svg/html-attributes-complete/tref-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-readonly b/html-stuff-svg/html-attributes-complete/tref-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-relevant b/html-stuff-svg/html-attributes-complete/tref-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-required b/html-stuff-svg/html-attributes-complete/tref-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-selected b/html-stuff-svg/html-attributes-complete/tref-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tref-aria-sort b/html-stuff-svg/html-attributes-complete/tref-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tref-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-atomic b/html-stuff-svg/html-attributes-complete/tspan-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-autocomplete b/html-stuff-svg/html-attributes-complete/tspan-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-busy b/html-stuff-svg/html-attributes-complete/tspan-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-checked b/html-stuff-svg/html-attributes-complete/tspan-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-disabled b/html-stuff-svg/html-attributes-complete/tspan-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-dropeffect b/html-stuff-svg/html-attributes-complete/tspan-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-expanded b/html-stuff-svg/html-attributes-complete/tspan-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-grabbed b/html-stuff-svg/html-attributes-complete/tspan-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-haspopup b/html-stuff-svg/html-attributes-complete/tspan-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-hidden b/html-stuff-svg/html-attributes-complete/tspan-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-invalid b/html-stuff-svg/html-attributes-complete/tspan-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-live b/html-stuff-svg/html-attributes-complete/tspan-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-multiline b/html-stuff-svg/html-attributes-complete/tspan-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-multiselectable b/html-stuff-svg/html-attributes-complete/tspan-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-orientation b/html-stuff-svg/html-attributes-complete/tspan-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-pressed b/html-stuff-svg/html-attributes-complete/tspan-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-readonly b/html-stuff-svg/html-attributes-complete/tspan-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-relevant b/html-stuff-svg/html-attributes-complete/tspan-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-required b/html-stuff-svg/html-attributes-complete/tspan-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-selected b/html-stuff-svg/html-attributes-complete/tspan-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/tspan-aria-sort b/html-stuff-svg/html-attributes-complete/tspan-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/tspan-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-atomic b/html-stuff-svg/html-attributes-complete/use-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-autocomplete b/html-stuff-svg/html-attributes-complete/use-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-busy b/html-stuff-svg/html-attributes-complete/use-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-checked b/html-stuff-svg/html-attributes-complete/use-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-disabled b/html-stuff-svg/html-attributes-complete/use-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-dropeffect b/html-stuff-svg/html-attributes-complete/use-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-expanded b/html-stuff-svg/html-attributes-complete/use-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-grabbed b/html-stuff-svg/html-attributes-complete/use-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-haspopup b/html-stuff-svg/html-attributes-complete/use-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-hidden b/html-stuff-svg/html-attributes-complete/use-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-invalid b/html-stuff-svg/html-attributes-complete/use-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-live b/html-stuff-svg/html-attributes-complete/use-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-multiline b/html-stuff-svg/html-attributes-complete/use-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-multiselectable b/html-stuff-svg/html-attributes-complete/use-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-orientation b/html-stuff-svg/html-attributes-complete/use-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-pressed b/html-stuff-svg/html-attributes-complete/use-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-readonly b/html-stuff-svg/html-attributes-complete/use-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-relevant b/html-stuff-svg/html-attributes-complete/use-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-required b/html-stuff-svg/html-attributes-complete/use-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-selected b/html-stuff-svg/html-attributes-complete/use-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/use-aria-sort b/html-stuff-svg/html-attributes-complete/use-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/use-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-atomic b/html-stuff-svg/html-attributes-complete/video-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-autocomplete b/html-stuff-svg/html-attributes-complete/video-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-busy b/html-stuff-svg/html-attributes-complete/video-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-checked b/html-stuff-svg/html-attributes-complete/video-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-disabled b/html-stuff-svg/html-attributes-complete/video-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-dropeffect b/html-stuff-svg/html-attributes-complete/video-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-expanded b/html-stuff-svg/html-attributes-complete/video-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-grabbed b/html-stuff-svg/html-attributes-complete/video-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-haspopup b/html-stuff-svg/html-attributes-complete/video-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-hidden b/html-stuff-svg/html-attributes-complete/video-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-invalid b/html-stuff-svg/html-attributes-complete/video-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-live b/html-stuff-svg/html-attributes-complete/video-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-multiline b/html-stuff-svg/html-attributes-complete/video-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-multiselectable b/html-stuff-svg/html-attributes-complete/video-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-orientation b/html-stuff-svg/html-attributes-complete/video-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-pressed b/html-stuff-svg/html-attributes-complete/video-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-readonly b/html-stuff-svg/html-attributes-complete/video-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-relevant b/html-stuff-svg/html-attributes-complete/video-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-required b/html-stuff-svg/html-attributes-complete/video-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-selected b/html-stuff-svg/html-attributes-complete/video-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-aria-sort b/html-stuff-svg/html-attributes-complete/video-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/video-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/video-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/video-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-atomic b/html-stuff-svg/html-attributes-complete/view-aria-atomic new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-atomic @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-autocomplete b/html-stuff-svg/html-attributes-complete/view-aria-autocomplete new file mode 100644 index 0000000..a468582 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-autocomplete @@ -0,0 +1,4 @@ +both +inline +list +none \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-busy b/html-stuff-svg/html-attributes-complete/view-aria-busy new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-busy @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-checked b/html-stuff-svg/html-attributes-complete/view-aria-checked new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-checked @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-disabled b/html-stuff-svg/html-attributes-complete/view-aria-disabled new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-disabled @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-dropeffect b/html-stuff-svg/html-attributes-complete/view-aria-dropeffect new file mode 100644 index 0000000..5f521a1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-dropeffect @@ -0,0 +1,6 @@ +copy +execute +link +move +none +popup \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-expanded b/html-stuff-svg/html-attributes-complete/view-aria-expanded new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-expanded @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-grabbed b/html-stuff-svg/html-attributes-complete/view-aria-grabbed new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-grabbed @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-haspopup b/html-stuff-svg/html-attributes-complete/view-aria-haspopup new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-haspopup @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-hidden b/html-stuff-svg/html-attributes-complete/view-aria-hidden new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-hidden @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-invalid b/html-stuff-svg/html-attributes-complete/view-aria-invalid new file mode 100644 index 0000000..d27601f --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-invalid @@ -0,0 +1,4 @@ +false +grammar +spelling +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-live b/html-stuff-svg/html-attributes-complete/view-aria-live new file mode 100644 index 0000000..add66e1 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-live @@ -0,0 +1,3 @@ +assertive +off +polite \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-multiline b/html-stuff-svg/html-attributes-complete/view-aria-multiline new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-multiline @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-multiselectable b/html-stuff-svg/html-attributes-complete/view-aria-multiselectable new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-multiselectable @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-orientation b/html-stuff-svg/html-attributes-complete/view-aria-orientation new file mode 100644 index 0000000..b9e9bd8 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-orientation @@ -0,0 +1,2 @@ +horizontal +vertical \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-pressed b/html-stuff-svg/html-attributes-complete/view-aria-pressed new file mode 100644 index 0000000..89b9fb5 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-pressed @@ -0,0 +1,3 @@ +false +mixed +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-readonly b/html-stuff-svg/html-attributes-complete/view-aria-readonly new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-readonly @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-relevant b/html-stuff-svg/html-attributes-complete/view-aria-relevant new file mode 100644 index 0000000..2aec371 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-relevant @@ -0,0 +1,4 @@ +additions +all +removals +text \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-required b/html-stuff-svg/html-attributes-complete/view-aria-required new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-required @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-selected b/html-stuff-svg/html-attributes-complete/view-aria-selected new file mode 100644 index 0000000..5b3ac40 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-selected @@ -0,0 +1,2 @@ +false +true \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-aria-sort b/html-stuff-svg/html-attributes-complete/view-aria-sort new file mode 100644 index 0000000..cf59c43 --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-aria-sort @@ -0,0 +1,4 @@ +ascending +descending +none +other \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-complete/view-preserveAspectRatio b/html-stuff-svg/html-attributes-complete/view-preserveAspectRatio new file mode 100644 index 0000000..9cb618e --- /dev/null +++ b/html-stuff-svg/html-attributes-complete/view-preserveAspectRatio @@ -0,0 +1,12 @@ +meet +none +slice +xMaxYMax +xMaxYMid +xMaxYMin +xMidYMax +xMidYMid +xMidYMin +xMinYMax +xMinYMid +xMinYMin \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/a b/html-stuff-svg/html-attributes-list/a index 1dc472e..64ff5e7 100644 --- a/html-stuff-svg/html-attributes-list/a +++ b/html-stuff-svg/html-attributes-list/a @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] onload [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/altGlyph b/html-stuff-svg/html-attributes-list/altGlyph index cf1daed..36b21d4 100644 --- a/html-stuff-svg/html-attributes-list/altGlyph +++ b/html-stuff-svg/html-attributes-list/altGlyph @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] diff --git a/html-stuff-svg/html-attributes-list/altGlyphItem b/html-stuff-svg/html-attributes-list/altGlyphItem index 1cc066a..a9c0a2f 100644 --- a/html-stuff-svg/html-attributes-list/altGlyphItem +++ b/html-stuff-svg/html-attributes-list/altGlyphItem @@ -1,2 +1,38 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/audio b/html-stuff-svg/html-attributes-list/audio index 3deba2b..35ea53e 100644 --- a/html-stuff-svg/html-attributes-list/audio +++ b/html-stuff-svg/html-attributes-list/audio @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string autoplay class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. controls diff --git a/html-stuff-svg/html-attributes-list/canvas b/html-stuff-svg/html-attributes-list/canvas index 17bda6e..499cbe3 100644 --- a/html-stuff-svg/html-attributes-list/canvas +++ b/html-stuff-svg/html-attributes-list/canvas @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string canvasHeight canvasWidth class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. diff --git a/html-stuff-svg/html-attributes-list/circle b/html-stuff-svg/html-attributes-list/circle index e311b8b..06abeb4 100644 --- a/html-stuff-svg/html-attributes-list/circle +++ b/html-stuff-svg/html-attributes-list/circle @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. cx cy diff --git a/html-stuff-svg/html-attributes-list/cursor b/html-stuff-svg/html-attributes-list/cursor index 0ea6f72..e26edf5 100644 --- a/html-stuff-svg/html-attributes-list/cursor +++ b/html-stuff-svg/html-attributes-list/cursor @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) x diff --git a/html-stuff-svg/html-attributes-list/discard b/html-stuff-svg/html-attributes-list/discard index 24b294a..a9aac33 100644 --- a/html-stuff-svg/html-attributes-list/discard +++ b/html-stuff-svg/html-attributes-list/discard @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string begin (allows whitespace in some but not all cases) requiredExtensions list-of-extensions (whitespace separated IRIs) requiredFeatures list-of-features (whitespace separated feature strings) diff --git a/html-stuff-svg/html-attributes-list/ellipse b/html-stuff-svg/html-attributes-list/ellipse index 1dbece7..35ed3e0 100644 --- a/html-stuff-svg/html-attributes-list/ellipse +++ b/html-stuff-svg/html-attributes-list/ellipse @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. cx cy diff --git a/html-stuff-svg/html-attributes-list/font b/html-stuff-svg/html-attributes-list/font index 7fb6862..9a1eb10 100644 --- a/html-stuff-svg/html-attributes-list/font +++ b/html-stuff-svg/html-attributes-list/font @@ -1,2 +1,8 @@ class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. -style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file +horiz-adv-x +horiz-origin-x +horiz-origin-y +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +vert-adv-y +vert-origin-x +vert-origin-y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/font-face b/html-stuff-svg/html-attributes-list/font-face index d40599b..170e523 100644 --- a/html-stuff-svg/html-attributes-list/font-face +++ b/html-stuff-svg/html-attributes-list/font-face @@ -1,11 +1,33 @@ +accent-height alphabetic ascent bbox +cap-height descent +font-family +font-size +font-stretch +font-style all | [ normal | italic | oblique] [, [normal | italic | oblique]]* +font-variant [normal | small-caps] [,[normal | small-caps]]* +font-weight all | [normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900] [, [normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900]]* hanging ideographic mathematical +overline-position +overline-thickness +panose-1 []{10} slope stemh stemv -widths \ No newline at end of file +strikethrough-position +strikethrough-thickness +underline-position +underline-thickness +unicode-range [, ]* +units-per-em +v-alphabetic +v-hanging +v-ideographic +v-mathematical +widths +x-height \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/foreignObject b/html-stuff-svg/html-attributes-list/foreignObject index 3589140..cd6dcea 100644 --- a/html-stuff-svg/html-attributes-list/foreignObject +++ b/html-stuff-svg/html-attributes-list/foreignObject @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. height onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/g b/html-stuff-svg/html-attributes-list/g index f85c6c8..a432b2a 100644 --- a/html-stuff-svg/html-attributes-list/g +++ b/html-stuff-svg/html-attributes-list/g @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/glyph b/html-stuff-svg/html-attributes-list/glyph index 99c7442..4fd6f69 100644 --- a/html-stuff-svg/html-attributes-list/glyph +++ b/html-stuff-svg/html-attributes-list/glyph @@ -1,6 +1,11 @@ +arabic-form initial | medial | terminal | isolated class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. d (grammar allows leading and trailing whitespace) +horiz-adv-x lang %LanguageCodes; ([https://svgwg.org/svg2-draft/fonts.html#GlyphElementLangAttribute a comma-separated list of language codes], [http://www.w3.org/TR/html5/dom.html#attr-lang in html it's a single language code or empty]) orientation h | v style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) -unicode \ No newline at end of file +unicode +vert-adv-y +vert-origin-x +vert-origin-y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/hkern b/html-stuff-svg/html-attributes-list/hkern index c897194..28d583d 100644 --- a/html-stuff-svg/html-attributes-list/hkern +++ b/html-stuff-svg/html-attributes-list/hkern @@ -1,5 +1,42 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string g1 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) g2 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +glyph-name [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) k role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) diff --git a/html-stuff-svg/html-attributes-list/iframe b/html-stuff-svg/html-attributes-list/iframe index 536b858..8d11558 100644 --- a/html-stuff-svg/html-attributes-list/iframe +++ b/html-stuff-svg/html-attributes-list/iframe @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. frameHeight frameWidth diff --git a/html-stuff-svg/html-attributes-list/image b/html-stuff-svg/html-attributes-list/image index 53768ac..b6bdd90 100644 --- a/html-stuff-svg/html-attributes-list/image +++ b/html-stuff-svg/html-attributes-list/image @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. height | auto onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/line b/html-stuff-svg/html-attributes-list/line index 34cfbbb..5f91390 100644 --- a/html-stuff-svg/html-attributes-list/line +++ b/html-stuff-svg/html-attributes-list/line @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/missing-glyph b/html-stuff-svg/html-attributes-list/missing-glyph index 7abb949..0d2d965 100644 --- a/html-stuff-svg/html-attributes-list/missing-glyph +++ b/html-stuff-svg/html-attributes-list/missing-glyph @@ -1,3 +1,7 @@ class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. d (grammar allows leading and trailing whitespace) -style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) \ No newline at end of file +horiz-adv-x +style style (should reference [http://www.w3.org/TR/2013/REC-css-style-attr-20131107/ CSS Style Attributes] instead for the syntax definition, in any case CSS allows whitespace) +vert-adv-y +vert-origin-x +vert-origin-y \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-list/path b/html-stuff-svg/html-attributes-list/path index c60b555..356ebae 100644 --- a/html-stuff-svg/html-attributes-list/path +++ b/html-stuff-svg/html-attributes-list/path @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. d (grammar allows leading and trailing whitespace) onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/polygon b/html-stuff-svg/html-attributes-list/polygon index c555976..c866b5d 100644 --- a/html-stuff-svg/html-attributes-list/polygon +++ b/html-stuff-svg/html-attributes-list/polygon @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/polyline b/html-stuff-svg/html-attributes-list/polyline index c555976..c866b5d 100644 --- a/html-stuff-svg/html-attributes-list/polyline +++ b/html-stuff-svg/html-attributes-list/polyline @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/rect b/html-stuff-svg/html-attributes-list/rect index ad4707c..ac27d70 100644 --- a/html-stuff-svg/html-attributes-list/rect +++ b/html-stuff-svg/html-attributes-list/rect @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. height onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/svg b/html-stuff-svg/html-attributes-list/svg index 75c1685..7f843df 100644 --- a/html-stuff-svg/html-attributes-list/svg +++ b/html-stuff-svg/html-attributes-list/svg @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string baseProfile [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. height | (Presumably related to the issue about percentages in [https://svgwg.org/svg2-draft/types.html#DataTypeLength]) diff --git a/html-stuff-svg/html-attributes-list/switch b/html-stuff-svg/html-attributes-list/switch index f85c6c8..a432b2a 100644 --- a/html-stuff-svg/html-attributes-list/switch +++ b/html-stuff-svg/html-attributes-list/switch @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/symbol b/html-stuff-svg/html-attributes-list/symbol index f27b9de..9df62cf 100644 --- a/html-stuff-svg/html-attributes-list/symbol +++ b/html-stuff-svg/html-attributes-list/symbol @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] onfocusin [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/text b/html-stuff-svg/html-attributes-list/text index 3057151..3cd9129 100644 --- a/html-stuff-svg/html-attributes-list/text +++ b/html-stuff-svg/html-attributes-list/text @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] diff --git a/html-stuff-svg/html-attributes-list/textPath b/html-stuff-svg/html-attributes-list/textPath index 4ceb2e3..c7d46d2 100644 --- a/html-stuff-svg/html-attributes-list/textPath +++ b/html-stuff-svg/html-attributes-list/textPath @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. d (grammar allows leading and trailing whitespace) lengthAdjust spacing | spacingAndGlyphs diff --git a/html-stuff-svg/html-attributes-list/tref b/html-stuff-svg/html-attributes-list/tref index 1b79079..c03f19a 100644 --- a/html-stuff-svg/html-attributes-list/tref +++ b/html-stuff-svg/html-attributes-list/tref @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] diff --git a/html-stuff-svg/html-attributes-list/tspan b/html-stuff-svg/html-attributes-list/tspan index 1b79079..c03f19a 100644 --- a/html-stuff-svg/html-attributes-list/tspan +++ b/html-stuff-svg/html-attributes-list/tspan @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. dx [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] dy [https://svgwg.org/svg2-draft/types.html#DataTypeLengths ] diff --git a/html-stuff-svg/html-attributes-list/use b/html-stuff-svg/html-attributes-list/use index 3589140..cd6dcea 100644 --- a/html-stuff-svg/html-attributes-list/use +++ b/html-stuff-svg/html-attributes-list/use @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. height onclick [https://svgwg.org/svg2-draft/types.html#DataTypeAnything ] diff --git a/html-stuff-svg/html-attributes-list/video b/html-stuff-svg/html-attributes-list/video index 01dc6e5..b66536b 100644 --- a/html-stuff-svg/html-attributes-list/video +++ b/html-stuff-svg/html-attributes-list/video @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string autoplay class whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]. controls diff --git a/html-stuff-svg/html-attributes-list/view b/html-stuff-svg/html-attributes-list/view index d942660..78f4f60 100644 --- a/html-stuff-svg/html-attributes-list/view +++ b/html-stuff-svg/html-attributes-list/view @@ -1,3 +1,39 @@ +aria-activedescendant ID +aria-atomic true | false +aria-autocomplete inline | list | both | none +aria-busy true | false +aria-checked true | false | mixed | undefined +aria-controls list of whitespace separated IDs +aria-describedat URI +aria-describedby list of whitespace separated IDs +aria-disabled true | false +aria-dropeffect copy | move | link | execute | popup | none +aria-expanded true | false | undefined +aria-flowto list of whitespace separated IDs +aria-grabbed true | false | undefined +aria-haspopup true | false +aria-hidden true | false +aria-invalid true | false | grammar | spelling +aria-label string +aria-labelledby list of whitespace separated IDs +aria-level integer +aria-live off | polite | assertive +aria-multiline true | false +aria-multiselectable true | false +aria-orientation horizontal | vertical +aria-owns list of whitespace separated IDs +aria-posinset integer +aria-pressed true | false | mixed | undefined +aria-readonly true | false +aria-relevant additions | removals | text | all +aria-required true | false +aria-selected true | false | undefined +aria-setsize integer +aria-sort ascending | descending | none | other +aria-valuemax +aria-valuemin +aria-valuenow +aria-valuetext string preserveAspectRatio [defer] [] role [https://svgwg.org/svg2-draft/struct.html#RoleAttribute white-space space separated tokens having values defined in Definition of Roles ([ARIA], section 5.4)] tabindex (ISSUE: should be , html5: [http://www.w3.org/TR/html5/infrastructure.html#valid-integer valid integer] strips leading and trailing WS) diff --git a/html-stuff-svg/html-attributes-list/vkern b/html-stuff-svg/html-attributes-list/vkern index 9bbf73f..88046e9 100644 --- a/html-stuff-svg/html-attributes-list/vkern +++ b/html-stuff-svg/html-attributes-list/vkern @@ -1,5 +1,6 @@ g1 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) g2 [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) +glyph-name [, ]* (Note, is undefined, and doesn't link to anywhere in the spec) k u1 [ | ] [, [ | ] ]* u2 [ | ] [, [ | ] ]* \ No newline at end of file diff --git a/html-stuff-svg/html-attributes-short-docs/font-face-font-stretch b/html-stuff-svg/html-attributes-short-docs/font-face-font-stretch new file mode 100644 index 0000000..c89a24f --- /dev/null +++ b/html-stuff-svg/html-attributes-short-docs/font-face-font-stretch @@ -0,0 +1 @@ +all | [ normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded] [, [ normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded] ]* \ No newline at end of file diff --git a/src/svg.yaml b/src/svg.yaml index a500601..0b0ef9d 100644 --- a/src/svg.yaml +++ b/src/svg.yaml @@ -2,6 +2,11 @@ # Source from https://www.w3.org/Graphics/SVG/WG/wiki/Proposals/AttributeWhitespace attributes: + - accent-height: + t: [ font-face ] + d: "" + v: [ ] + - alphabetic: t: [ font-face ] d: "" @@ -12,6 +17,21 @@ attributes: d: "" v: [ ] + - aria-valuemax: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "" + v: [ ] + + - aria-valuemin: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "" + v: [ ] + + - aria-valuenow: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "" + v: [ ] + - ascent: t: [ font-face ] d: "" @@ -32,6 +52,11 @@ attributes: d: "" v: [ ] + - cap-height: + t: [ font-face ] + d: "" + v: [ ] + - descent: t: [ font-face ] d: "" @@ -67,6 +92,21 @@ attributes: d: "" v: [ ] + - horiz-adv-x: + t: [ font, glyph, missing-glyph ] + d: "" + v: [ ] + + - horiz-origin-x: + t: [ font ] + d: "" + v: [ ] + + - horiz-origin-y: + t: [ font ] + d: "" + v: [ ] + - ideographic: t: [ font-face ] d: "" @@ -152,6 +192,16 @@ attributes: d: "" v: [ ] + - overline-position: + t: [ font-face ] + d: "" + v: [ ] + + - overline-thickness: + t: [ font-face ] + d: "" + v: [ ] + - pathLength: t: [ path ] d: "" @@ -232,6 +282,16 @@ attributes: d: "" v: [ ] + - strikethrough-position: + t: [ font-face ] + d: "" + v: [ ] + + - strikethrough-thickness: + t: [ font-face ] + d: "" + v: [ ] + - surfaceScale: t: [ feDiffuseLighting, feSpecularLighting ] d: "" @@ -247,6 +307,41 @@ attributes: d: "" v: [ ] + - underline-position: + t: [ font-face ] + d: "" + v: [ ] + + - underline-thickness: + t: [ font-face ] + d: "" + v: [ ] + + - units-per-em: + t: [ font-face ] + d: "" + v: [ ] + + - v-alphabetic: + t: [ font-face ] + d: "" + v: [ ] + + - v-hanging: + t: [ font-face ] + d: "" + v: [ ] + + - v-ideographic: + t: [ font-face ] + d: "" + v: [ ] + + - v-mathematical: + t: [ font-face ] + d: "" + v: [ ] + - values: t: [ feColorMatrix ] d: "" @@ -257,6 +352,21 @@ attributes: d: "" v: [ ] + - vert-adv-y: + t: [ font, glyph, missing-glyph ] + d: "" + v: [ ] + + - vert-origin-x: + t: [ font, glyph, missing-glyph ] + d: "" + v: [ ] + + - vert-origin-y: + t: [ font, glyph, missing-glyph ] + d: "" + v: [ ] + - viewBox: t: [ marker, pattern, svg, symbol, view ] d: "a list of four numbers , , and , separated by whitespace and/or a comma" @@ -267,6 +377,11 @@ attributes: d: "" v: [ ] + - x-height: + t: [ font-face ] + d: "" + v: [ ] + - y: t: [ fePointLight, feSpotLight, glyphRef ] d: "" @@ -282,11 +397,31 @@ attributes: d: "" v: [ ] + - aria-level: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "integer" + v: [ ] + + - aria-posinset: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "integer" + v: [ ] + + - aria-setsize: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "integer" + v: [ ] + - numOctaves: t: [ feTurbulence ] d: "" v: [ ] + - panose-1: + t: [ font-face ] + d: "[]{10}" + v: [ ] + - targetX: t: [ feConvolveMatrix ] d: "" @@ -532,6 +667,116 @@ attributes: d: "replace | sum" v: [ replace, sum ] + - arabic-form: + t: [ glyph ] + d: "initial | medial | terminal | isolated" + v: [ initial, isolated, medial, terminal ] + + - aria-atomic: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-autocomplete: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "inline | list | both | none" + v: [ both, inline, list, none ] + + - aria-busy: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-checked: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false | mixed | undefined" + v: [ false, mixed, true ] + + - aria-disabled: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-dropeffect: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "copy | move | link | execute | popup | none" + v: [ copy, execute, link, move, none, popup ] + + - aria-expanded: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false | undefined" + v: [ false, true ] + + - aria-grabbed: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false | undefined" + v: [ false, true ] + + - aria-haspopup: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-hidden: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-invalid: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false | grammar | spelling" + v: [ false, grammar, spelling, true ] + + - aria-live: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "off | polite | assertive" + v: [ assertive, off, polite ] + + - aria-multiline: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-multiselectable: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-orientation: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "horizontal | vertical" + v: [ horizontal, vertical ] + + - aria-pressed: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false | mixed | undefined" + v: [ false, mixed, true ] + + - aria-readonly: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-relevant: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "additions | removals | text | all" + v: [ additions, all, removals, text ] + + - aria-required: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false" + v: [ false, true ] + + - aria-selected: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "true | false | undefined" + v: [ false, true ] + + - aria-sort: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "ascending | descending | none | other" + v: [ ascending, descending, none, other ] + - attributeType: t: [ animate, animateTransform, set ] d: "CSS | XML | auto" @@ -567,6 +812,26 @@ attributes: d: "userSpaceOnUse | objectBoundingBox" v: [ objectBoundingBox, userSpaceOnUse ] + - font-stretch: + t: [ font-face ] + d: "all | [ normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded] [, [ normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded] ]*" + v: [ condensed, expanded, extra-condensed, extra-expanded, normal, semi-condensed, semi-expanded, ultra-condensed, ultra-expanded ] + + - font-style: + t: [ font-face ] + d: "all | [ normal | italic | oblique] [, [normal | italic | oblique]]*" + v: [ italic, normal, oblique ] + + - font-variant: + t: [ font-face ] + d: "[normal | small-caps] [,[normal | small-caps]]*" + v: [ normal, small-caps ] + + - font-weight: + t: [ font-face ] + d: "all | [normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900] [, [normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900]]*" + v: [ 100, 200, 300, 400, 500, 600, 700, 800, 900, bold, normal ] + - gradientUnits: t: [ linearGradient, meshGradient, radialGradient ] d: "userSpaceOnUse | objectBoundingBox" @@ -665,8 +930,8 @@ attributes: - preserveAspectRatio: t: [ canvas, feImage, iframe, image, marker, pattern, svg, symbol, video, view ] d: "[defer] []" - v: [ ] - + v: [ none, xMinYMin, xMidYMin, xMaxYMin, xMinYMid, xMidYMid, xMaxYMid, xMinYMax, xMidYMax, xMaxYMax, meet, slice ] + - primitiveUnits: t: [ filter ] d: "userSpaceOnUse | objectBoundingBox" @@ -772,6 +1037,46 @@ attributes: d: "" v: [ ] + - aria-activedescendant: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "ID" + v: [ ] + + - aria-controls: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "list of whitespace separated IDs" + v: [ ] + + - aria-describedby: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "list of whitespace separated IDs" + v: [ ] + + - aria-flowto: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "list of whitespace separated IDs" + v: [ ] + + - aria-labelledby: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "list of whitespace separated IDs" + v: [ ] + + - aria-owns: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "list of whitespace separated IDs" + v: [ ] + + - aria-label: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "string" + v: [ ] + + - aria-valuetext: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "string" + v: [ ] + - attributeName: t: [ animate, animateTransform, set ] d: "" @@ -797,6 +1102,16 @@ attributes: d: "whitespace separated list - HTML5 allows leading and trailing whitespace [http://www.w3.org/html/wg/drafts/html/master/infrastructure.html#set-of-space-separated-tokens]." v: [ ] + - font-family: + t: [ font-face ] + d: "" + v: [ ] + + - font-size: + t: [ font-face ] + d: "" + v: [ ] + - format: t: [ altGlyph, glyphRef ] d: "" @@ -817,6 +1132,11 @@ attributes: d: " [, ]* (Note, is undefined, and doesn't link to anywhere in the spec)" v: [ ] + - glyph-name: + t: [ hkern, vkern ] + d: " [, ]* (Note, is undefined, and doesn't link to anywhere in the spec)" + v: [ ] + - glyphRef: t: [ altGlyph, glyphRef ] d: "" @@ -912,6 +1232,11 @@ attributes: d: "" v: [ ] + - unicode-range: + t: [ font-face ] + d: " [, ]*" + v: [ ] + - values: t: [ animate, animateMotion, animateTransform ] d: "[http://www.w3.org/TR/2001/REC-smil-animation-20010904/#ValuesAttribute ] (defined in SMIL, strips leading and trailing whitespace, value should be parsed in the context it's used in)" @@ -1047,6 +1372,11 @@ attributes: d: "media (ISSUE: should be the same as for the source element, and the style element in html5) " v: [ ] + - aria-describedat: + t: [ a, altGlyph, altGlyphItem, audio, canvas, circle, cursor, discard, ellipse, foreignObject, g, hkern, iframe, image, line, path, polygon, polyline, rect, svg, switch, symbol, text, textPath, tref, tspan, use, video, view ] + d: "URI" + v: [ ] + - poster: t: [ video ] d: "[http://www.w3.org/TR/html5/infrastructure.html#valid-non-empty-url-potentially-surrounded-by-spaces Valid non-empty URL potentially surrounded by spaces]" diff --git a/tools/svg/wiki2yaml.pl b/tools/svg/wiki2yaml.pl index d96eb6c..28358db 100755 --- a/tools/svg/wiki2yaml.pl +++ b/tools/svg/wiki2yaml.pl @@ -18,7 +18,7 @@ while (my $row = <$fh>) { chomp $row; my ($attr, $elemsStr, $values) = $row =~m /^ - \|\s*(\w+)\s* + \|\s*([\w-]+)\s* \|\|\s*(.*?)\s* \|\|\s*(.*)/x; @@ -50,7 +50,8 @@ if ($values =~m |(.*?)|) { $sanitizedValues = $1; } - + $sanitizedValues =~s/all\s*\|\s\[(.*?)\].*/$1/; + $sanitizedValues =~s/\[(.*?)\].*/$1/; foreach my $val (split /\|/, $sanitizedValues) { $val =~s/^\s*//; $val =~s/\s*$//; @@ -58,6 +59,7 @@ next if $val =~m/