foreignNames.js 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.attributeNames = exports.elementNames = void 0;
  4. exports.elementNames = new Map([
  5. "altGlyph",
  6. "altGlyphDef",
  7. "altGlyphItem",
  8. "animateColor",
  9. "animateMotion",
  10. "animateTransform",
  11. "clipPath",
  12. "feBlend",
  13. "feColorMatrix",
  14. "feComponentTransfer",
  15. "feComposite",
  16. "feConvolveMatrix",
  17. "feDiffuseLighting",
  18. "feDisplacementMap",
  19. "feDistantLight",
  20. "feDropShadow",
  21. "feFlood",
  22. "feFuncA",
  23. "feFuncB",
  24. "feFuncG",
  25. "feFuncR",
  26. "feGaussianBlur",
  27. "feImage",
  28. "feMerge",
  29. "feMergeNode",
  30. "feMorphology",
  31. "feOffset",
  32. "fePointLight",
  33. "feSpecularLighting",
  34. "feSpotLight",
  35. "feTile",
  36. "feTurbulence",
  37. "foreignObject",
  38. "glyphRef",
  39. "linearGradient",
  40. "radialGradient",
  41. "textPath",
  42. ].map(function (val) { return [val.toLowerCase(), val]; }));
  43. exports.attributeNames = new Map([
  44. "definitionURL",
  45. "attributeName",
  46. "attributeType",
  47. "baseFrequency",
  48. "baseProfile",
  49. "calcMode",
  50. "clipPathUnits",
  51. "diffuseConstant",
  52. "edgeMode",
  53. "filterUnits",
  54. "glyphRef",
  55. "gradientTransform",
  56. "gradientUnits",
  57. "kernelMatrix",
  58. "kernelUnitLength",
  59. "keyPoints",
  60. "keySplines",
  61. "keyTimes",
  62. "lengthAdjust",
  63. "limitingConeAngle",
  64. "markerHeight",
  65. "markerUnits",
  66. "markerWidth",
  67. "maskContentUnits",
  68. "maskUnits",
  69. "numOctaves",
  70. "pathLength",
  71. "patternContentUnits",
  72. "patternTransform",
  73. "patternUnits",
  74. "pointsAtX",
  75. "pointsAtY",
  76. "pointsAtZ",
  77. "preserveAlpha",
  78. "preserveAspectRatio",
  79. "primitiveUnits",
  80. "refX",
  81. "refY",
  82. "repeatCount",
  83. "repeatDur",
  84. "requiredExtensions",
  85. "requiredFeatures",
  86. "specularConstant",
  87. "specularExponent",
  88. "spreadMethod",
  89. "startOffset",
  90. "stdDeviation",
  91. "stitchTiles",
  92. "surfaceScale",
  93. "systemLanguage",
  94. "tableValues",
  95. "targetX",
  96. "targetY",
  97. "textLength",
  98. "viewBox",
  99. "viewTarget",
  100. "xChannelSelector",
  101. "yChannelSelector",
  102. "zoomAndPan",
  103. ].map(function (val) { return [val.toLowerCase(), val]; }));