You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

svgelements.xml 53KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355
  1. <?xml version="1.0" ?>
  2. <!--
  3. This file provides all the information for the svg elements and
  4. attributes. The information corresponds to the svg dtd.
  5. This information is used to create the code for the svg elements
  6. and the property mappings.
  7. -->
  8. <elements prefix="svg" ns="http://www.w3.org/2000/svg">
  9. <commonAttributes ref="stdAttrs">
  10. <attribute>id</attribute>
  11. <attribute>class</attribute>
  12. </commonAttributes>
  13. <commonAttributes ref="langSpaceAttrs">
  14. <attribute>xml:lang</attribute>
  15. <attribute>xml:space</attribute>
  16. </commonAttributes>
  17. <commonAttributes ref="testAttrs">
  18. <attribute>requiredFeatures</attribute>
  19. <attribute>requiredExtensions</attribute>
  20. <attribute>systemLanguage</attribute>
  21. </commonAttributes>
  22. <commonAttributes ref="xlinkRefAttrs">
  23. <attribute>xmlns:xlink</attribute>
  24. <attribute>xlink:type</attribute>
  25. <attribute>xlink:role</attribute>
  26. <attribute>xlink:arcrole</attribute>
  27. <attribute>xlink:title</attribute>
  28. <attribute>xlink:show</attribute>
  29. <attribute>xlink:actuate</attribute>
  30. </commonAttributes>
  31. <commonAttributes ref="graphicsElementEvents">
  32. <attribute>onfocusin</attribute>
  33. <attribute>onfocusout</attribute>
  34. <attribute>onactivate</attribute>
  35. <attribute>onclick</attribute>
  36. <attribute>onmousedown</attribute>
  37. <attribute>onmouseup</attribute>
  38. <attribute>onmouseover</attribute>
  39. <attribute>onmousemove</attribute>
  40. <attribute>onmouseout</attribute>
  41. <attribute>onload</attribute>
  42. </commonAttributes>
  43. <commonAttributes ref="documentEvents">
  44. <attribute>onunload</attribute>
  45. <attribute>onabort</attribute>
  46. <attribute>onerror</attribute>
  47. <attribute>onresize</attribute>
  48. <attribute>onscroll</attribute>
  49. <attribute>onzoom</attribute>
  50. </commonAttributes>
  51. <commonAttributes ref="animationEvents">
  52. <attribute>onbegin</attribute>
  53. <attribute>onend</attribute>
  54. <attribute>onrepeat</attribute>
  55. </commonAttributes>
  56. <commonAttributes ref="PresentationAttributes-All">
  57. <includeAttributes ref="PresentationAttributes-Containers"/>
  58. <includeAttributes ref="PresentationAttributes-feFlood"/>
  59. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  60. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  61. <includeAttributes ref="PresentationAttributes-Gradients"/>
  62. <includeAttributes ref="PresentationAttributes-Graphics"/>
  63. <includeAttributes ref="PresentationAttributes-Images"/>
  64. <includeAttributes ref="PresentationAttributes-LightingEffects"/>
  65. <includeAttributes ref="PresentationAttributes-Markers"/>
  66. <includeAttributes ref="PresentationAttributes-TextContentElements"/>
  67. <includeAttributes ref="PresentationAttributes-TextElements"/>
  68. <includeAttributes ref="PresentationAttributes-Viewports"/>
  69. </commonAttributes>
  70. <commonAttributes ref="PresentationAttributes-Containers">
  71. <attribute>enable-background</attribute>
  72. </commonAttributes>
  73. <commonAttributes ref="PresentationAttributes-feFlood">
  74. <attribute>flood-color</attribute>
  75. <attribute>flood-opacity</attribute>
  76. </commonAttributes>
  77. <commonAttributes ref="PresentationAttributes-FillStroke">
  78. <attribute>fill</attribute>
  79. <attribute>fill-opacity</attribute>
  80. <attribute>fill-rule</attribute>
  81. <attribute>stroke</attribute>
  82. <attribute>stroke-dasharray</attribute>
  83. <attribute>stroke-dashoffset</attribute>
  84. <attribute>stroke-linecap</attribute>
  85. <attribute>stroke-linejoin</attribute>
  86. <attribute>stroke-miterlimit</attribute>
  87. <attribute>stroke-opacity</attribute>
  88. <attribute>stroke-width</attribute>
  89. </commonAttributes>
  90. <commonAttributes ref="PresentationAttributes-FontSpecification">
  91. <attribute>font-family</attribute>
  92. <attribute>font-size</attribute>
  93. <attribute>font-size-adjust</attribute>
  94. <attribute>font-stretch</attribute>
  95. <attribute>font-style</attribute>
  96. <attribute>font-variant</attribute>
  97. <attribute>font-weight</attribute>
  98. </commonAttributes>
  99. <commonAttributes ref="PresentationAttributes-Gradients">
  100. <attribute>stop-color</attribute>
  101. <attribute>stop-opacity</attribute>
  102. </commonAttributes>
  103. <commonAttributes ref="PresentationAttributes-Graphics">
  104. <attribute>clip-path</attribute>
  105. <attribute>clip-rule</attribute>
  106. <attribute>color</attribute>
  107. <attribute>color-interpolation</attribute>
  108. <attribute>color-rendering</attribute>
  109. <attribute>cursor</attribute>
  110. <attribute>display</attribute>
  111. <attribute>filter</attribute>
  112. <attribute>image-rendering</attribute>
  113. <attribute>mask</attribute>
  114. <attribute>opacity</attribute>
  115. <attribute>pointer-events</attribute>
  116. <attribute>space-rendering</attribute>
  117. <attribute>text-rendering</attribute>
  118. <attribute>visibility</attribute>
  119. </commonAttributes>
  120. <commonAttributes ref="PresentationAttributes-Images">
  121. <attribute>color-profile</attribute>
  122. </commonAttributes>
  123. <commonAttributes ref="PresentationAttributes-LightingEffects">
  124. <attribute>lighting-color</attribute>
  125. </commonAttributes>
  126. <commonAttributes ref="PresentationAttributes-Markers">
  127. <attribute>marker-start</attribute>
  128. <attribute>marker-mid</attribute>
  129. <attribute>marker-end</attribute>
  130. </commonAttributes>
  131. <commonAttributes ref="PresentationAttributes-TextContentElements">
  132. <attribute>alignment-baseline</attribute>
  133. <attribute>baseline-shift</attribute>
  134. <attribute>direction</attribute>
  135. <attribute>glyph-orientation-horizontal</attribute>
  136. <attribute>glyph-orientation-vertical</attribute>
  137. <attribute>kerning</attribute>
  138. <attribute>letter-spacing</attribute>
  139. <attribute>text-decoration</attribute>
  140. <attribute>unicode-bidi</attribute>
  141. <attribute>word-spacing</attribute>
  142. </commonAttributes>
  143. <commonAttributes ref="PresentationAttributes-TextElements">
  144. <attribute>writing-mode</attribute>
  145. <attribute>text-anchor</attribute>
  146. <attribute>dominant-baseline</attribute>
  147. </commonAttributes>
  148. <commonAttributes ref="PresentationAttributes-Viewports">
  149. <attribute>clip</attribute>
  150. <attribute>overflow</attribute>
  151. </commonAttributes>
  152. <commonAttributes ref="filter_primitive_attributes">
  153. <attribute>x</attribute>
  154. <attribute>y</attribute>
  155. <attribute>width</attribute>
  156. <attribute>height</attribute>
  157. <attribute>result</attribute>
  158. </commonAttributes>
  159. <commonAttributes ref="filter_primitive_attributes_with_in">
  160. <includeAttributes ref="filter_primitive_attributes"/>
  161. <attribute>in</attribute>
  162. </commonAttributes>
  163. <commonAttributes ref="component_transfer_function_attributes">
  164. <attribute>type</attribute>
  165. <attribute>tableValues</attribute>
  166. <attribute>slope</attribute>
  167. <attribute>intercept</attribute>
  168. <attribute>amplitude</attribute>
  169. <attribute>exponent</attribute>
  170. <attribute>offset</attribute>
  171. </commonAttributes>
  172. <commonAttributes ref="animElementAttrs">
  173. <includeAttributes ref="xlinkRefAttrs"/>
  174. <attribute>xlink:href</attribute>
  175. </commonAttributes>
  176. <commonAttributes ref="animAttributeAttrs">
  177. <attribute>attributeName</attribute>
  178. <attribute>attributeType</attribute>
  179. </commonAttributes>
  180. <commonAttributes ref="animTargetAttrs">
  181. <includeAttributes ref="xlinkRefAttrs"/>
  182. <attribute>xlink:href</attribute>
  183. <attribute>attributeName</attribute>
  184. <attribute>attributeType</attribute>
  185. </commonAttributes>
  186. <commonAttributes ref="animTimingAttrs">
  187. <attribute>begin</attribute>
  188. <attribute>dur</attribute>
  189. <attribute>end</attribute>
  190. <attribute>min</attribute>
  191. <attribute>max</attribute>
  192. <attribute>restart</attribute>
  193. <attribute>repeatCount</attribute>
  194. <attribute>repeatDur</attribute>
  195. <attribute>fill</attribute>
  196. </commonAttributes>
  197. <commonAttributes ref="animValueAttrs">
  198. <attribute>calcMode</attribute>
  199. <attribute>values</attribute>
  200. <attribute>keyTimes</attribute>
  201. <attribute>keySplines</attribute>
  202. <attribute>from</attribute>
  203. <attribute>to</attribute>
  204. <attribute>by</attribute>
  205. </commonAttributes>
  206. <commonAttributes ref="animAdditionAttrs">
  207. <attribute>additive</attribute>
  208. <attribute>accumulate</attribute>
  209. </commonAttributes>
  210. <element>
  211. <tagname>a</tagname>
  212. <attributes>
  213. <includeAttributes ref="stdAttrs"/>
  214. <attribute>xmlns:xlink</attribute>
  215. <attribute>xlink:type</attribute>
  216. <attribute>xlink:role</attribute>
  217. <attribute>xlink:arcrole</attribute>
  218. <attribute>xlink:title</attribute>
  219. <attribute>xlink:show</attribute>
  220. <attribute>xlink:actuate</attribute>
  221. <attribute>xlink:href</attribute>
  222. <includeAttributes ref="testAttrs"/>
  223. <includeAttributes ref="langSpaceAttrs"/>
  224. <attribute>externalResourcesRequired</attribute>
  225. <attribute>class</attribute>
  226. <attribute>style</attribute>
  227. <includeAttributes ref="PresentationAttributes-All"/>
  228. <attribute>transform</attribute>
  229. <includeAttributes ref="graphicsElementEvents"/>
  230. <attribute>target</attribute>
  231. </attributes>
  232. </element>
  233. <element>
  234. <tagname>circle</tagname>
  235. <attributes>
  236. <includeAttributes ref="stdAttrs"/>
  237. <includeAttributes ref="testAttrs"/>
  238. <includeAttributes ref="langSpaceAttrs"/>
  239. <attribute>externalResourcesRequired</attribute>
  240. <attribute>class</attribute>
  241. <attribute>style</attribute>
  242. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  243. <includeAttributes ref="PresentationAttributes-Graphics"/>
  244. <attribute>transform</attribute>
  245. <includeAttributes ref="graphicsElementEvents"/>
  246. <attribute>cx</attribute>
  247. <attribute>cy</attribute>
  248. <attribute>r</attribute>
  249. </attributes>
  250. </element>
  251. <element>
  252. <tagname>altGlyph</tagname>
  253. <attributes>
  254. <includeAttributes ref="stdAttrs"/>
  255. <includeAttributes ref="xlinkRefAttrs"/>
  256. <includeAttributes ref="testAttrs"/>
  257. <includeAttributes ref="langSpaceAttrs"/>
  258. <attribute>xlink:href</attribute>
  259. <attribute>glyphRef</attribute>
  260. <attribute>format</attribute>
  261. <attribute>externalResourcesRequired</attribute>
  262. <attribute>class</attribute>
  263. <attribute>style</attribute>
  264. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  265. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  266. <includeAttributes ref="PresentationAttributes-Graphics"/>
  267. <includeAttributes ref="PresentationAttributes-TextContentElements"/>
  268. <includeAttributes ref="graphicsElementEvents"/>
  269. <attribute>x</attribute>
  270. <attribute>y</attribute>
  271. <attribute>dx</attribute>
  272. <attribute>dy</attribute>
  273. <attribute>rotate</attribute>
  274. </attributes>
  275. </element>
  276. <element>
  277. <tagname>altGlyphDef</tagname>
  278. <attributes>
  279. <includeAttributes ref="stdAttrs"/>
  280. </attributes>
  281. </element>
  282. <element>
  283. <tagname>altGlyphItem</tagname>
  284. <attributes>
  285. <includeAttributes ref="stdAttrs"/>
  286. </attributes>
  287. </element>
  288. <element>
  289. <tagname>animate</tagname>
  290. <attributes>
  291. <includeAttributes ref="stdAttrs"/>
  292. <includeAttributes ref="testAttrs"/>
  293. <attribute>externalResourcesRequired</attribute>
  294. <includeAttributes ref="animationEvents"/>
  295. <includeAttributes ref="animElementAttrs"/>
  296. <includeAttributes ref="animAttributeAttrs"/>
  297. <includeAttributes ref="animTimingAttrs"/>
  298. <includeAttributes ref="animValueAttrs"/>
  299. <includeAttributes ref="animAdditionAttrs"/>
  300. </attributes>
  301. </element>
  302. <element>
  303. <tagname>animateColor</tagname>
  304. <attributes>
  305. <includeAttributes ref="stdAttrs"/>
  306. <includeAttributes ref="testAttrs"/>
  307. <attribute>externalResourcesRequired</attribute>
  308. <includeAttributes ref="animationEvents"/>
  309. <includeAttributes ref="animElementAttrs"/>
  310. <includeAttributes ref="animAttributeAttrs"/>
  311. <includeAttributes ref="animTimingAttrs"/>
  312. <includeAttributes ref="animValueAttrs"/>
  313. <includeAttributes ref="animAdditionAttrs"/>
  314. </attributes>
  315. </element>
  316. <element>
  317. <tagname>animateMotion</tagname>
  318. <attributes>
  319. <includeAttributes ref="stdAttrs"/>
  320. <includeAttributes ref="testAttrs"/>
  321. <attribute>externalResourcesRequired</attribute>
  322. <includeAttributes ref="animationEvents"/>
  323. <includeAttributes ref="animElementAttrs"/>
  324. <includeAttributes ref="animTimingAttrs"/>
  325. <attribute>calcMode</attribute>
  326. <attribute>values</attribute>
  327. <attribute>keyTimes</attribute>
  328. <attribute>keySplines</attribute>
  329. <attribute>from</attribute>
  330. <attribute>to</attribute>
  331. <attribute>by</attribute>
  332. <includeAttributes ref="animAdditionAttrs"/>
  333. <attribute>path</attribute>
  334. <attribute>keyPoints</attribute>
  335. <attribute>rotate</attribute>
  336. <attribute>origin</attribute>
  337. </attributes>
  338. </element>
  339. <element>
  340. <tagname>animateTransform</tagname>
  341. <attributes>
  342. <includeAttributes ref="stdAttrs"/>
  343. <includeAttributes ref="testAttrs"/>
  344. <attribute>externalResourcesRequired</attribute>
  345. <includeAttributes ref="animationEvents"/>
  346. <includeAttributes ref="animElementAttrs"/>
  347. <includeAttributes ref="animAttributeAttrs"/>
  348. <includeAttributes ref="animTimingAttrs"/>
  349. <includeAttributes ref="animValueAttrs"/>
  350. <includeAttributes ref="animAdditionAttrs"/>
  351. <attribute>type</attribute>
  352. </attributes>
  353. </element>
  354. <element>
  355. <tagname>clipPath</tagname>
  356. <attributes>
  357. <includeAttributes ref="stdAttrs"/>
  358. <includeAttributes ref="testAttrs"/>
  359. <includeAttributes ref="langSpaceAttrs"/>
  360. <attribute>externalResourcesRequired</attribute>
  361. <attribute>class</attribute>
  362. <attribute>style</attribute>
  363. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  364. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  365. <includeAttributes ref="PresentationAttributes-Graphics"/>
  366. <includeAttributes ref="PresentationAttributes-TextContentElements"/>
  367. <includeAttributes ref="PresentationAttributes-TextElements"/>
  368. <attribute>transform</attribute>
  369. <attribute>clipPathUnits</attribute>
  370. </attributes>
  371. </element>
  372. <element>
  373. <tagname>color-profile</tagname>
  374. <attributes>
  375. <includeAttributes ref="stdAttrs"/>
  376. <includeAttributes ref="xlinkRefAttrs"/>
  377. <attribute>xlink:href</attribute>
  378. <attribute>local</attribute>
  379. <attribute>name</attribute>
  380. <attribute>rendering-intent</attribute>
  381. </attributes>
  382. </element>
  383. <element>
  384. <tagname>cursor</tagname>
  385. <attributes>
  386. <includeAttributes ref="stdAttrs"/>
  387. <includeAttributes ref="xlinkRefAttrs"/>
  388. <attribute>xlink:href</attribute>
  389. <includeAttributes ref="testAttrs"/>
  390. <attribute>externalResourcesRequired</attribute>
  391. <attribute>x</attribute>
  392. <attribute>y</attribute>
  393. </attributes>
  394. </element>
  395. <element>
  396. <tagname>defs</tagname>
  397. <attributes>
  398. <includeAttributes ref="stdAttrs"/>
  399. <includeAttributes ref="testAttrs"/>
  400. <includeAttributes ref="langSpaceAttrs"/>
  401. <includeAttributes ref="PresentationAttributes-All"/>
  402. <includeAttributes ref="graphicsElementEvents"/>
  403. <attribute>externalResourcesRequired</attribute>
  404. <attribute>class</attribute>
  405. <attribute>style</attribute>
  406. <attribute>transform</attribute>
  407. </attributes>
  408. </element>
  409. <element addText="true">
  410. <tagname>desc</tagname>
  411. <attributes>
  412. <includeAttributes ref="stdAttrs"/>
  413. <includeAttributes ref="langSpaceAttrs"/>
  414. <includeAttributes ref="StructuredText"/>
  415. <attribute>class</attribute>
  416. <attribute>style</attribute>
  417. </attributes>
  418. </element>
  419. <element>
  420. <tagname>ellipse</tagname>
  421. <attributes>
  422. <includeAttributes ref="stdAttrs"/>
  423. <includeAttributes ref="testAttrs"/>
  424. <includeAttributes ref="langSpaceAttrs"/>
  425. <attribute>externalResourcesRequired</attribute>
  426. <attribute>class</attribute>
  427. <attribute>style</attribute>
  428. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  429. <includeAttributes ref="PresentationAttributes-Graphics"/>
  430. <attribute>transform</attribute>
  431. <includeAttributes ref="graphicsElementEvents"/>
  432. <attribute>cx</attribute>
  433. <attribute>cy</attribute>
  434. <attribute>rx</attribute>
  435. <attribute>ry</attribute>
  436. </attributes>
  437. </element>
  438. <element>
  439. <tagname>feBlend</tagname>
  440. <attributes>
  441. <includeAttributes ref="stdAttrs"/>
  442. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  443. <attribute>in2</attribute>
  444. <attribute>mode</attribute>
  445. </attributes>
  446. </element>
  447. <element>
  448. <tagname>feColorMatrix</tagname>
  449. <attributes>
  450. <includeAttributes ref="stdAttrs"/>
  451. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  452. <attribute>type</attribute>
  453. <attribute>values</attribute>
  454. </attributes>
  455. </element>
  456. <element>
  457. <tagname>feComponentTransfer</tagname>
  458. <attributes>
  459. <includeAttributes ref="stdAttrs"/>
  460. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  461. </attributes>
  462. </element>
  463. <element>
  464. <tagname>feComposite</tagname>
  465. <attributes>
  466. <includeAttributes ref="stdAttrs"/>
  467. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  468. <attribute>in2</attribute>
  469. <attribute>operator</attribute>
  470. <attribute>k1</attribute>
  471. <attribute>k2</attribute>
  472. <attribute>k3</attribute>
  473. <attribute>k4</attribute>
  474. </attributes>
  475. </element>
  476. <element>
  477. <tagname>feConvolveMatrix</tagname>
  478. <attributes>
  479. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  480. <attribute>order</attribute>
  481. <attribute>kernelMatrix</attribute>
  482. <attribute>divisor</attribute>
  483. <attribute>bias</attribute>
  484. <attribute>targetX</attribute>
  485. <attribute>targetY</attribute>
  486. <attribute>edgeMode</attribute>
  487. <attribute>kernelUnitLength</attribute>
  488. <attribute>preserveAlpha</attribute>
  489. </attributes>
  490. </element>
  491. <element>
  492. <tagname>feDistantLight</tagname>
  493. <attributes>
  494. <includeAttributes ref="stdAttrs"/>
  495. <attribute>azimuth</attribute>
  496. <attribute>elevation</attribute>
  497. </attributes>
  498. </element>
  499. <element>
  500. <tagname>feDiffuseLighting</tagname>
  501. <attributes>
  502. <includeAttributes ref="stdAttrs"/>
  503. <attribute>class</attribute>
  504. <attribute>style</attribute>
  505. <includeAttributes ref="PresentationAttributes-LightingEffects"/>
  506. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  507. <attribute>surfaceScale</attribute>
  508. <attribute>diffuseConstant</attribute>
  509. </attributes>
  510. </element>
  511. <element>
  512. <tagname>feDisplacementMap</tagname>
  513. <attributes>
  514. <includeAttributes ref="stdAttrs"/>
  515. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  516. <attribute>in2</attribute>
  517. <attribute>scale</attribute>
  518. <attribute>xChannelSelector</attribute>
  519. <attribute>yChannelSelector</attribute>
  520. </attributes>
  521. </element>
  522. <element>
  523. <tagname>feFlood</tagname>
  524. <attributes>
  525. <includeAttributes ref="stdAttrs"/>
  526. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  527. <attribute>class</attribute>
  528. <attribute>style</attribute>
  529. <includeAttributes ref="PresentationAttributes-feFlood"/>
  530. </attributes>
  531. </element>
  532. <element>
  533. <tagname>feFuncR</tagname>
  534. <attributes>
  535. <includeAttributes ref="stdAttrs"/>
  536. <includeAttributes ref="component_transfer_function_attributes"/>
  537. </attributes>
  538. </element>
  539. <element>
  540. <tagname>feFuncG</tagname>
  541. <attributes>
  542. <includeAttributes ref="stdAttrs"/>
  543. <includeAttributes ref="component_transfer_function_attributes"/>
  544. </attributes>
  545. </element>
  546. <element>
  547. <tagname>feFuncB</tagname>
  548. <attributes>
  549. <includeAttributes ref="stdAttrs"/>
  550. <includeAttributes ref="component_transfer_function_attributes"/>
  551. </attributes>
  552. </element>
  553. <element>
  554. <tagname>feFuncA</tagname>
  555. <attributes>
  556. <includeAttributes ref="stdAttrs"/>
  557. <includeAttributes ref="component_transfer_function_attributes"/>
  558. </attributes>
  559. </element>
  560. <element>
  561. <tagname>feGaussianBlur</tagname>
  562. <attributes>
  563. <includeAttributes ref="stdAttrs"/>
  564. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  565. <attribute>stdDeviation</attribute>
  566. </attributes>
  567. </element>
  568. <element>
  569. <tagname>feOffset</tagname>
  570. <attributes>
  571. <includeAttributes ref="stdAttrs"/>
  572. </attributes>
  573. </element>
  574. <element>
  575. <tagname>fePointLight</tagname>
  576. <attributes>
  577. <includeAttributes ref="stdAttrs"/>
  578. <attribute>x</attribute>
  579. <attribute>y</attribute>
  580. <attribute>z</attribute>
  581. </attributes>
  582. </element>
  583. <element>
  584. <tagname>feImage</tagname>
  585. <attributes>
  586. <includeAttributes ref="stdAttrs"/>
  587. <includeAttributes ref="xlinkRefAttrs"/>
  588. <attribute>xlink:href</attribute>
  589. <includeAttributes ref="langSpaceAttrs"/>
  590. <attribute>externalResourcesRequired</attribute>
  591. <attribute>class</attribute>
  592. <attribute>style</attribute>
  593. <includeAttributes ref="PresentationAttributes-All"/>
  594. <attribute>transform</attribute>
  595. <includeAttributes ref="filter_primitive_attributes"/>
  596. </attributes>
  597. </element>
  598. <element>
  599. <tagname>feMerge</tagname>
  600. <attributes>
  601. <includeAttributes ref="stdAttrs"/>
  602. <includeAttributes ref="filter_primitive_attributes"/>
  603. </attributes>
  604. </element>
  605. <element>
  606. <tagname>feMergeNode</tagname>
  607. <attributes>
  608. <includeAttributes ref="stdAttrs"/>
  609. <attribute>in</attribute>
  610. </attributes>
  611. </element>
  612. <element>
  613. <tagname>feMorphology</tagname>
  614. <attributes>
  615. <includeAttributes ref="stdAttrs"/>
  616. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  617. <attribute>operator</attribute>
  618. <attribute>radius</attribute>
  619. </attributes>
  620. </element>
  621. <element>
  622. <tagname>feOffset</tagname>
  623. <attributes>
  624. <includeAttributes ref="stdAttrs"/>
  625. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  626. <attribute>dx</attribute>
  627. <attribute>dy</attribute>
  628. </attributes>
  629. </element>
  630. <element>
  631. <tagname>feSpecularLighting</tagname>
  632. <attributes>
  633. <includeAttributes ref="stdAttrs"/>
  634. <attribute>class</attribute>
  635. <attribute>style</attribute>
  636. <includeAttributes ref="PresentationAttributes-LightingEffects"/>
  637. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  638. <attribute>surfaceScale</attribute>
  639. <attribute>specularConstant</attribute>
  640. <attribute>specularExponent</attribute>
  641. </attributes>
  642. </element>
  643. <element>
  644. <tagname>feSpotLight</tagname>
  645. <attributes>
  646. <includeAttributes ref="stdAttrs"/>
  647. <attribute>x</attribute>
  648. <attribute>y</attribute>
  649. <attribute>z</attribute>
  650. <attribute>pointsAtX</attribute>
  651. <attribute>pointsAtY</attribute>
  652. <attribute>pointsAtZ</attribute>
  653. <attribute>specularExponent</attribute>
  654. <attribute>limitingConeAngle</attribute>
  655. </attributes>
  656. </element>
  657. <element>
  658. <tagname>feTile</tagname>
  659. <attributes>
  660. <includeAttributes ref="stdAttrs"/>
  661. <includeAttributes ref="filter_primitive_attributes_with_in"/>
  662. </attributes>
  663. </element>
  664. <element>
  665. <tagname>feTurbulence</tagname>
  666. <attributes>
  667. <includeAttributes ref="stdAttrs"/>
  668. <includeAttributes ref="filter_primitive_attributes"/>
  669. <attribute>baseFrequency</attribute>
  670. <attribute>numOctaves</attribute>
  671. <attribute>seed</attribute>
  672. <attribute>stitchTiles</attribute>
  673. <attribute>type</attribute>
  674. </attributes>
  675. </element>
  676. <element>
  677. <tagname>filter</tagname>
  678. <attributes>
  679. <includeAttributes ref="stdAttrs"/>
  680. <includeAttributes ref="xlinkRefAttrs"/>
  681. <attribute>xlink:href</attribute>
  682. <includeAttributes ref="langSpaceAttrs"/>
  683. <attribute>externalResourcesRequired</attribute>
  684. <attribute>class</attribute>
  685. <attribute>style</attribute>
  686. <includeAttributes ref="PresentationAttributes-All"/>
  687. <attribute>filterUnits</attribute>
  688. <attribute>primitiveUnits</attribute>
  689. <attribute>x</attribute>
  690. <attribute>y</attribute>
  691. <attribute>width</attribute>
  692. <attribute>height</attribute>
  693. <attribute>filterRes</attribute>
  694. </attributes>
  695. </element>
  696. <element>
  697. <tagname>font</tagname>
  698. <attributes>
  699. <includeAttributes ref="stdAttrs"/>
  700. <attribute>externalResourcesRequired</attribute>
  701. <attribute>class</attribute>
  702. <attribute>style</attribute>
  703. <includeAttributes ref="PresentationAttributes-All"/>
  704. <attribute>horiz-origin-x</attribute>
  705. <attribute>horiz-origin-y</attribute>
  706. <attribute>horiz-adv-x</attribute>
  707. <attribute>vert-origin-x</attribute>
  708. <attribute>vert-origin-y</attribute>
  709. <attribute>vert-adv-y</attribute>
  710. </attributes>
  711. </element>
  712. <element>
  713. <tagname>font-face</tagname>
  714. <attributes>
  715. <includeAttributes ref="stdAttrs"/>
  716. <attribute>font-family</attribute>
  717. <attribute>font-style</attribute>
  718. <attribute>font-variant</attribute>
  719. <attribute>font-weight</attribute>
  720. <attribute>font-stretch</attribute>
  721. <attribute>font-size</attribute>
  722. <attribute>unicode-range</attribute>
  723. <attribute>units-per-em</attribute>
  724. <attribute>panose-1</attribute>
  725. <attribute>stemv</attribute>
  726. <attribute>stemh</attribute>
  727. <attribute>slope</attribute>
  728. <attribute>cap-height</attribute>
  729. <attribute>x-height</attribute>
  730. <attribute>accent-height</attribute>
  731. <attribute>ascent</attribute>
  732. <attribute>descent</attribute>
  733. <attribute>widths</attribute>
  734. <attribute>bbox</attribute>
  735. <attribute>ideographic</attribute>
  736. <attribute>alphabetic</attribute>
  737. <attribute>mathematical</attribute>
  738. <attribute>hanging</attribute>
  739. <attribute>v-ideographic</attribute>
  740. <attribute>v-alphabetic</attribute>
  741. <attribute>v-mathematical</attribute>
  742. <attribute>v-hanging</attribute>
  743. <attribute>underline-position</attribute>
  744. <attribute>underline-thickness</attribute>
  745. <attribute>strikethrough-position</attribute>
  746. <attribute>strikethrough-thickness</attribute>
  747. <attribute>overline-position</attribute>
  748. <attribute>overline-thickness</attribute>
  749. </attributes>
  750. </element>
  751. <element>
  752. <tagname>font-face-src</tagname>
  753. <attributes>
  754. <includeAttributes ref="stdAttrs"/>
  755. </attributes>
  756. </element>
  757. <element>
  758. <tagname>font-face-uri</tagname>
  759. <attributes>
  760. <includeAttributes ref="stdAttrs"/>
  761. <includeAttributes ref="xlinkRefAttrs"/>
  762. <attribute>xlink:href</attribute>
  763. </attributes>
  764. </element>
  765. <element>
  766. <tagname>font-face-format</tagname>
  767. <attributes>
  768. <includeAttributes ref="stdAttrs"/>
  769. <attribute>string</attribute>
  770. </attributes>
  771. </element>
  772. <element>
  773. <tagname>font-face-name</tagname>
  774. <attributes>
  775. <includeAttributes ref="stdAttrs"/>
  776. <attribute>name</attribute>
  777. </attributes>
  778. </element>
  779. <element>
  780. <tagname>foreignObject</tagname>
  781. <attributes>
  782. <includeAttributes ref="stdAttrs"/>
  783. <includeAttributes ref="testAttrs"/>
  784. <includeAttributes ref="langSpaceAttrs"/>
  785. <attribute>externalResourcesRequired</attribute>
  786. <attribute>class</attribute>
  787. <attribute>style</attribute>
  788. <includeAttributes ref="PresentationAttributes-All"/>
  789. <attribute>transform</attribute>
  790. <includeAttributes ref="graphicsElementEvents"/>
  791. <attribute>x</attribute>
  792. <attribute>y</attribute>
  793. <attribute>width</attribute>
  794. <attribute>height</attribute>
  795. <includeAttributes ref="StructuredText"/>
  796. </attributes>
  797. </element>
  798. <element>
  799. <tagname>definition-src</tagname>
  800. <attributes>
  801. <includeAttributes ref="stdAttrs"/>
  802. <includeAttributes ref="xlinkRefAttrs"/>
  803. <attribute>xlink:href</attribute>
  804. </attributes>
  805. </element>
  806. <element>
  807. <tagname>g</tagname>
  808. <attributes>
  809. <includeAttributes ref="stdAttrs"/>
  810. <includeAttributes ref="testAttrs"/>
  811. <includeAttributes ref="langSpaceAttrs"/>
  812. <includeAttributes ref="PresentationAttributes-All"/>
  813. <includeAttributes ref="graphicsElementEvents"/>
  814. <attribute>externalResourcesRequired</attribute>
  815. <attribute>style</attribute>
  816. <attribute>transform</attribute>
  817. <attribute>class</attribute>
  818. </attributes>
  819. </element>
  820. <element>
  821. <tagname>glyph</tagname>
  822. <attributes>
  823. <includeAttributes ref="stdAttrs"/>
  824. <attribute>class</attribute>
  825. <attribute>style</attribute>
  826. <includeAttributes ref="PresentationAttributes-All"/>
  827. <attribute>unicode</attribute>
  828. <attribute>glyph-name</attribute>
  829. <attribute>d</attribute>
  830. <attribute>orientation</attribute>
  831. <attribute>arabic-form</attribute>
  832. <attribute>lang</attribute>
  833. <attribute>horiz-adv-x</attribute>
  834. <attribute>vert-origin-x</attribute>
  835. <attribute>vert-origin-y</attribute>
  836. <attribute>vert-adv-y</attribute>
  837. </attributes>
  838. </element>
  839. <element>
  840. <tagname>glyphRef</tagname>
  841. <attributes>
  842. <includeAttributes ref="stdAttrs"/>
  843. <includeAttributes ref="xlinkRefAttrs"/>
  844. <attribute>xlink:href</attribute>
  845. <attribute>class</attribute>
  846. <attribute>style</attribute>
  847. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  848. <attribute>glyphRef</attribute>
  849. <attribute>format</attribute>
  850. <attribute>x</attribute>
  851. <attribute>y</attribute>
  852. <attribute>dx</attribute>
  853. <attribute>dy</attribute>
  854. </attributes>
  855. </element>
  856. <element>
  857. <tagname>hkern</tagname>
  858. <attributes>
  859. <includeAttributes ref="stdAttrs"/>
  860. <attribute>u1</attribute>
  861. <attribute>g1</attribute>
  862. <attribute>u2</attribute>
  863. <attribute>g2</attribute>
  864. <attribute>k</attribute>
  865. </attributes>
  866. </element>
  867. <element>
  868. <tagname>image</tagname>
  869. <attributes>
  870. <includeAttributes ref="stdAttrs"/>
  871. <includeAttributes ref="xlinkRefAttrs"/>
  872. <includeAttributes ref="testAttrs"/>
  873. <includeAttributes ref="langSpaceAttrs"/>
  874. <includeAttributes ref="PresentationAttributes-Graphics"/>
  875. <includeAttributes ref="PresentationAttributes-Images"/>
  876. <includeAttributes ref="PresentationAttributes-Viewports"/>
  877. <includeAttributes ref="graphicsElementEvents"/>
  878. <attribute>externalResourcesRequired</attribute>
  879. <attribute>class</attribute>
  880. <attribute>style</attribute>
  881. <attribute>transform</attribute>
  882. <attribute>preserveAspectRatio</attribute>
  883. <attribute>xlink:href</attribute>
  884. <attribute>x</attribute>
  885. <attribute>y</attribute>
  886. <attribute>width</attribute>
  887. <attribute>height</attribute>
  888. </attributes>
  889. </element>
  890. <element>
  891. <tagname>line</tagname>
  892. <attributes>
  893. <includeAttributes ref="stdAttrs"/>
  894. <includeAttributes ref="testAttrs"/>
  895. <includeAttributes ref="langSpaceAttrs"/>
  896. <attribute>externalResourcesRequired</attribute>
  897. <attribute>class</attribute>
  898. <attribute>style</attribute>
  899. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  900. <includeAttributes ref="PresentationAttributes-Graphics"/>
  901. <includeAttributes ref="PresentationAttributes-Markers"/>
  902. <attribute>transform</attribute>
  903. <includeAttributes ref="graphicsElementEvents"/>
  904. <attribute>x1</attribute>
  905. <attribute>x2</attribute>
  906. <attribute>y1</attribute>
  907. <attribute>y2</attribute>
  908. </attributes>
  909. </element>
  910. <element>
  911. <tagname>linearGradient</tagname>
  912. <attributes>
  913. <includeAttributes ref="stdAttrs"/>
  914. <includeAttributes ref="xlinkRefAttrs"/>
  915. <attribute>xlink:href</attribute>
  916. <attribute>externalResourcesRequired</attribute>
  917. <attribute>class</attribute>
  918. <attribute>style</attribute>
  919. <includeAttributes ref="PresentationAttributes-Gradients"/>
  920. <attribute>gradientUnits</attribute>
  921. <attribute>gradientTransform</attribute>
  922. <attribute>class</attribute>
  923. <attribute>x1</attribute>
  924. <attribute>y1</attribute>
  925. <attribute>x2</attribute>
  926. <attribute>y2</attribute>
  927. <attribute>spreadMethod</attribute>
  928. </attributes>
  929. </element>
  930. <element>
  931. <tagname>marker</tagname>
  932. <attributes>
  933. <includeAttributes ref="stdAttrs"/>
  934. <includeAttributes ref="langSpaceAttrs"/>
  935. <attribute>externalResourcesRequired</attribute>
  936. <attribute>class</attribute>
  937. <attribute>style</attribute>
  938. <includeAttributes ref="PresentationAttributes-All"/>
  939. <attribute>viewBox</attribute>
  940. <attribute>preserveAspectRatio</attribute>
  941. <attribute>refX</attribute>
  942. <attribute>refY</attribute>
  943. <attribute>markerUnits</attribute>
  944. <attribute>markerWidth</attribute>
  945. <attribute>markerHeight</attribute>
  946. <attribute>orient</attribute>
  947. </attributes>
  948. </element>
  949. <element>
  950. <tagname>mask</tagname>
  951. <attributes>
  952. <includeAttributes ref="stdAttrs"/>
  953. <includeAttributes ref="testAttrs"/>
  954. <includeAttributes ref="langSpaceAttrs"/>
  955. <attribute>externalResourcesRequired</attribute>
  956. <attribute>class</attribute>
  957. <attribute>style</attribute>
  958. <includeAttributes ref="PresentationAttributes-All"/>
  959. <attribute>transform</attribute>
  960. <attribute>maskUnits</attribute>
  961. <attribute>maskContentUnits</attribute>
  962. <attribute>x</attribute>
  963. <attribute>y</attribute>
  964. <attribute>width</attribute>
  965. <attribute>height</attribute>
  966. </attributes>
  967. </element>
  968. <element>
  969. <tagname>metadata</tagname>
  970. <attributes>
  971. <includeAttributes ref="stdAttrs"/>
  972. </attributes>
  973. </element>
  974. <element>
  975. <tagname>missing-glyph</tagname>
  976. <attributes>
  977. <includeAttributes ref="stdAttrs"/>
  978. <attribute>class</attribute>
  979. <attribute>style</attribute>
  980. <includeAttributes ref="PresentationAttributes-All"/>
  981. <attribute>d</attribute>
  982. <attribute>horiz-adv-x</attribute>
  983. <attribute>vert-origin-x</attribute>
  984. <attribute>vert-origin-y</attribute>
  985. <attribute>vert-adv-y</attribute>
  986. </attributes>
  987. </element>
  988. <element>
  989. <tagname>mpath</tagname>
  990. <attributes>
  991. <includeAttributes ref="stdAttrs"/>
  992. <includeAttributes ref="xlinkRefAttrs"/>
  993. <attribute>xlink:href</attribute>
  994. <attribute>externalResourcesRequired</attribute>
  995. </attributes>
  996. </element>
  997. <element>
  998. <tagname>path</tagname>
  999. <attributes>
  1000. <includeAttributes ref="stdAttrs"/>
  1001. <includeAttributes ref="testAttrs"/>
  1002. <includeAttributes ref="langSpaceAttrs"/>
  1003. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1004. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1005. <includeAttributes ref="PresentationAttributes-Markers"/>
  1006. <includeAttributes ref="graphicsElementEvents"/>
  1007. <attribute>externalResourcesRequired</attribute>
  1008. <attribute>style</attribute>
  1009. <attribute>transform</attribute>
  1010. <attribute>class</attribute>
  1011. <attribute>d</attribute>
  1012. <attribute>pathLength</attribute>
  1013. </attributes>
  1014. </element>
  1015. <element>
  1016. <tagname>pattern</tagname>
  1017. <attributes>
  1018. <includeAttributes ref="stdAttrs"/>
  1019. <includeAttributes ref="xlinkRefAttrs"/>
  1020. <includeAttributes ref="testAttrs"/>
  1021. <includeAttributes ref="langSpaceAttrs"/>
  1022. <attribute>externalResourcesRequired</attribute>
  1023. <attribute>class</attribute>
  1024. <attribute>style</attribute>
  1025. <includeAttributes ref="PresentationAttributes-All"/>
  1026. <attribute>viewBox</attribute>
  1027. <attribute>preserveAspectRatio</attribute>
  1028. <attribute>xlink:href</attribute>
  1029. <attribute>width</attribute>
  1030. <attribute>height</attribute>
  1031. <attribute>x</attribute>
  1032. <attribute>y</attribute>
  1033. <attribute>patternUnits</attribute>
  1034. <attribute>patternContentUnits</attribute>
  1035. <attribute>patternTransform</attribute>
  1036. </attributes>
  1037. </element>
  1038. <element>
  1039. <tagname>polygon</tagname>
  1040. <attributes>
  1041. <includeAttributes ref="stdAttrs"/>
  1042. <includeAttributes ref="testAttrs"/>
  1043. <includeAttributes ref="langSpaceAttrs"/>
  1044. <attribute>externalResourceRequired</attribute>
  1045. <attribute>class</attribute>
  1046. <attribute>style</attribute>
  1047. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1048. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1049. <includeAttributes ref="PresentationAttributes-Markers"/>
  1050. <attribute>transform</attribute>
  1051. <includeAttributes ref="graphicsElementEvents"/>
  1052. <attribute>points</attribute>
  1053. </attributes>
  1054. </element>
  1055. <element>
  1056. <tagname>polyline</tagname>
  1057. <attributes>
  1058. <includeAttributes ref="stdAttrs"/>
  1059. <includeAttributes ref="testAttrs"/>
  1060. <includeAttributes ref="langSpaceAttrs"/>
  1061. <attribute>externalResourceRequired</attribute>
  1062. <attribute>class</attribute>
  1063. <attribute>style</attribute>
  1064. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1065. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1066. <includeAttributes ref="PresentationAttributes-Markers"/>
  1067. <attribute>transform</attribute>
  1068. <includeAttributes ref="graphicsElementEvents"/>
  1069. <attribute>points</attribute>
  1070. </attributes>
  1071. </element>
  1072. <element>
  1073. <tagname>radialGradient</tagname>
  1074. <attributes>
  1075. <includeAttributes ref="stdAttrs"/>
  1076. <includeAttributes ref="xlinkRefAttrs"/>
  1077. <attribute>externalResourcesRequired</attribute>
  1078. <attribute>style</attribute>
  1079. <attribute>class</attribute>
  1080. <includeAttributes ref="PresentationAttributes-Gradients"/>
  1081. <attribute>gradientTransform</attribute>
  1082. <attribute>xlink:href</attribute>
  1083. <attribute>cx</attribute>
  1084. <attribute>cy</attribute>
  1085. <attribute>r</attribute>
  1086. <attribute>fx</attribute>
  1087. <attribute>fy</attribute>
  1088. <attribute>gradientUnits</attribute>
  1089. <attribute>spreadMethod</attribute>
  1090. </attributes>
  1091. </element>
  1092. <element>
  1093. <tagname>rect</tagname>
  1094. <attributes>
  1095. <includeAttributes ref="stdAttrs"/>
  1096. <includeAttributes ref="testAttrs"/>
  1097. <includeAttributes ref="langSpaceAttrs"/>
  1098. <attribute>externalResourcesRequired</attribute>
  1099. <attribute>class</attribute>
  1100. <attribute>style</attribute>
  1101. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1102. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1103. <attribute>transform</attribute>
  1104. <includeAttributes ref="graphicsElementEvents"/>
  1105. <attribute>x</attribute>
  1106. <attribute>y</attribute>
  1107. <attribute>width</attribute>
  1108. <attribute>height</attribute>
  1109. <attribute>rx</attribute>
  1110. <attribute>ry</attribute>
  1111. </attributes>
  1112. </element>
  1113. <element>
  1114. <tagname>set</tagname>
  1115. <attributes>
  1116. <includeAttributes ref="stdAttrs"/>
  1117. <includeAttributes ref="testAttrs"/>
  1118. <attribute>externalResourcesRequired</attribute>
  1119. <includeAttributes ref="animationEvents"/>
  1120. <includeAttributes ref="animElementAttrs"/>
  1121. <includeAttributes ref="animAttributeAttrs"/>
  1122. <includeAttributes ref="animTimingAttrs"/>
  1123. <attribute>to</attribute>
  1124. </attributes>
  1125. </element>
  1126. <element>
  1127. <tagname>script</tagname>
  1128. <attributes>
  1129. <includeAttributes ref="stdAttrs"/>
  1130. <includeAttributes ref="xlinkRefAttrs"/>
  1131. <attribute>xlink:href</attribute>
  1132. <attribute>externalResourcesRequired</attribute>
  1133. <attribute>type</attribute>
  1134. </attributes>
  1135. </element>
  1136. <element>
  1137. <tagname>stop</tagname>
  1138. <attributes>
  1139. <includeAttributes ref="stdAttrs"/>
  1140. <attribute>class</attribute>
  1141. <attribute>style</attribute>
  1142. <includeAttributes ref="PresentationAttributes-Gradients"/>
  1143. <attribute>offset</attribute>
  1144. </attributes>
  1145. </element>
  1146. <element addText="true">
  1147. <tagname>style</tagname>
  1148. <attributes>
  1149. <includeAttributes ref="stdAttrs"/>
  1150. <attribute>xml:space</attribute>
  1151. <attribute>type</attribute>
  1152. <attribute>media</attribute>
  1153. <attribute>title</attribute>
  1154. </attributes>
  1155. </element>
  1156. <element>
  1157. <tagname>svg</tagname>
  1158. <attributes>
  1159. <includeAttributes ref="stdAttrs"/>
  1160. <includeAttributes ref="testAttrs"/>
  1161. <includeAttributes ref="langSpaceAttrs"/>
  1162. <includeAttributes ref="PresentationAttributes-All"/>
  1163. <includeAttributes ref="graphicsElementEvents"/>
  1164. <includeAttributes ref="documentEvents"/>
  1165. <attribute>externalResourcesRequired</attribute>
  1166. <attribute>class</attribute>
  1167. <attribute>style</attribute>
  1168. <attribute>viewBox</attribute>
  1169. <attribute>preserveAspectRatio</attribute>
  1170. <attribute>zoomAndPan</attribute>
  1171. <attribute>x</attribute>
  1172. <attribute>y</attribute>
  1173. <attribute>width</attribute>
  1174. <attribute>height</attribute>
  1175. <attribute>contentScriptType</attribute>
  1176. <attribute>contentStyleType</attribute>
  1177. </attributes>
  1178. </element>
  1179. <element>
  1180. <tagname>switch</tagname>
  1181. <attributes>
  1182. <includeAttributes ref="stdAttrs"/>
  1183. <includeAttributes ref="testAttrs"/>
  1184. <includeAttributes ref="langSpaceAttrs"/>
  1185. <includeAttributes ref="PresentationAttributes-all"/>
  1186. <includeAttributes ref="graphicsElementEvents"/>
  1187. <attribute>externalResourcesRequired</attribute>
  1188. <attribute>class</attribute>
  1189. <attribute>style</attribute>
  1190. <attribute>transform</attribute>
  1191. </attributes>
  1192. </element>
  1193. <element>
  1194. <tagname>symbol</tagname>
  1195. <attributes>
  1196. <includeAttributes ref="stdAttrs"/>
  1197. <includeAttributes ref="langSpaceAttrs"/>
  1198. <attribute>externalResourcesRequired</attribute>
  1199. <includeAttributes ref="PresentationAttributes-All"/>
  1200. <includeAttributes ref="graphicsElementEvents"/>
  1201. <attribute>class</attribute>
  1202. <attribute>style</attribute>
  1203. <attribute>viewBox</attribute>
  1204. <attribute>preserveAspectRatio</attribute>
  1205. </attributes>
  1206. </element>
  1207. <element>
  1208. <tagname>tref</tagname>
  1209. <attributes>
  1210. <includeAttributes ref="stdAttrs"/>
  1211. <includeAttributes ref="xlinkRefAttrs"/>
  1212. <attribute>xlink:href</attribute>
  1213. <includeAttributes ref="testAttrs"/>
  1214. <includeAttributes ref="langSpaceAttrs"/>
  1215. <attribute>externalResourcesRequired</attribute>
  1216. <attribute>class</attribute>
  1217. <attribute>style</attribute>
  1218. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1219. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  1220. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1221. <includeAttributes ref="PresentationAttributes-TextContentElements"/>
  1222. <includeAttributes ref="graphicsElementEvents"/>
  1223. <attribute>x</attribute>
  1224. <attribute>y</attribute>
  1225. <attribute>dx</attribute>
  1226. <attribute>dy</attribute>
  1227. <attribute>rotate</attribute>
  1228. <attribute>textLength</attribute>
  1229. <attribute>lengthAdjust</attribute>
  1230. </attributes>
  1231. </element>
  1232. <element addText="true">
  1233. <tagname>tspan</tagname>
  1234. <attributes>
  1235. <includeAttributes ref="stdAttrs"/>
  1236. <includeAttributes ref="testAttrs"/>
  1237. <includeAttributes ref="langSpaceAttrs"/>
  1238. <attribute>externalResourcesRequired</attribute>
  1239. <attribute>class</attribute>
  1240. <attribute>style</attribute>
  1241. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1242. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  1243. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1244. <includeAttributes ref="PresentationAttributes-TextContentElements"/>
  1245. <includeAttributes ref="graphicsElementEvents"/>
  1246. <attribute>x</attribute>
  1247. <attribute>y</attribute>
  1248. <attribute>dx</attribute>
  1249. <attribute>dy</attribute>
  1250. <attribute>rotate</attribute>
  1251. <attribute>textLength</attribute>
  1252. <attribute>lengthAdjust</attribute>
  1253. </attributes>
  1254. </element>
  1255. <element addText="true">
  1256. <tagname>text</tagname>
  1257. <attributes>
  1258. <includeAttributes ref="stdAttrs"/>
  1259. <includeAttributes ref="testAttrs"/>
  1260. <includeAttributes ref="langSpaceAttrs"/>
  1261. <attribute>externalResourcesRequired</attribute>
  1262. <attribute>class</attribute>
  1263. <attribute>style</attribute>
  1264. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1265. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  1266. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1267. <includeAttributes ref="PresentationAttributes-TextContentElements"/>
  1268. <includeAttributes ref="PresentationAttributes-TextElements"/>
  1269. <attribute>transform</attribute>
  1270. <includeAttributes ref="graphicsElementEvents"/>
  1271. <attribute>x</attribute>
  1272. <attribute>y</attribute>
  1273. <attribute>textLength</attribute>
  1274. <attribute>lengthAdjust</attribute>
  1275. </attributes>
  1276. </element>
  1277. <element addText="true">
  1278. <tagname>textPath</tagname>
  1279. <attributes>
  1280. <includeAttributes ref="stdAttrs"/>
  1281. <includeAttributes ref="xlinkRefAttrs"/>
  1282. <attribute>xlink:href</attribute>
  1283. <includeAttributes ref="langSpaceAttrs"/>
  1284. <includeAttributes ref="testAttrs"/>
  1285. <attribute>externalResourcesRequired</attribute>
  1286. <attribute>class</attribute>
  1287. <attribute>style</attribute>
  1288. <includeAttributes ref="PresentationAttributes-FillStroke"/>
  1289. <includeAttributes ref="PresentationAttributes-FontSpecification"/>
  1290. <includeAttributes ref="PresentationAttributes-Graphics"/>
  1291. <includeAttributes ref="PresentationAttributes-TextContentElements"/>
  1292. <includeAttributes ref="graphicsElementEvents"/>
  1293. <attribute>startOffset</attribute>
  1294. <attribute>textLength</attribute>
  1295. <attribute>lengthAdjust</attribute>
  1296. <attribute>method</attribute>
  1297. <attribute>spacing</attribute>
  1298. </attributes>
  1299. </element>
  1300. <element addText="true">
  1301. <tagname>title</tagname>
  1302. <attributes>
  1303. <includeAttributes ref="stdAttrs"/>
  1304. <includeAttributes ref="langSpaceAttrs"/>
  1305. <includeAttributes ref="StructuredText"/>
  1306. <attribute>class</attribute>
  1307. <attribute>style</attribute>
  1308. </attributes>
  1309. </element>
  1310. <element>
  1311. <tagname>use</tagname>
  1312. <attributes>
  1313. <includeAttributes ref="stdAttrs"/>
  1314. <includeAttributes ref="xlinkRefAttrs"/>
  1315. <includeAttributes ref="testAttrs"/>
  1316. <includeAttributes ref="langSpaceAttrs"/>
  1317. <includeAttributes ref="PresentationAttributes-All"/>
  1318. <includeAttributes ref="graphicsElementEvents"/>
  1319. <attribute>externalResourcesRequired</attribute>
  1320. <attribute>class</attribute>
  1321. <attribute>style</attribute>
  1322. <attribute>transform</attribute>
  1323. <attribute>xlink:href</attribute>
  1324. <attribute>x</attribute>
  1325. <attribute>y</attribute>
  1326. <attribute>width</attribute>
  1327. <attribute>height</attribute>
  1328. </attributes>
  1329. </element>
  1330. <element>
  1331. <tagname>vkern</tagname>
  1332. <attributes>
  1333. <includeAttributes ref="stdAttrs"/>
  1334. <attribute>u1</attribute>
  1335. <attribute>g1</attribute>
  1336. <attribute>u2</attribute>
  1337. <attribute>g2</attribute>
  1338. <attribute>k</attribute>
  1339. </attributes>
  1340. </element>
  1341. <element>
  1342. <tagname>view</tagname>
  1343. <attributes>
  1344. <includeAttributes ref="stdAttrs"/>
  1345. <attribute>externalResourcesRequired</attribute>
  1346. <attribute>viewBox</attribute>
  1347. <attribute>preserveAspectRatio</attribute>
  1348. <attribute>zoomAndPan</attribute>
  1349. <attribute>viewTarget</attribute>
  1350. </attributes>
  1351. </element>
  1352. </elements>