1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
//! SVG Elements

use self::{
    attributes::{
        AnimationTiming, AnimationValue, ConditionalProcessing, FilterPrimitives, OtherAnimation,
        Presentation, TransferFunction,
    },
    content_type::{AutoOrLength, Length},
};
use crate::{dom::Dom, elements::svg::content_type::NumberOrPercentage};

pub mod attributes;
pub mod content_type;
pub mod path;

svg_element!(
    /// The `<a>` SVG element creates a hyperlink to other web pages, files,
    /// locations in the same page, email addresses, or any other URL. It is
    /// very similar to HTML's `<a>` element.
    ///
    /// SVG's `<a>` element is a container, which means you can create a link
    /// around text (like in HTML) but also around any shape.
    a = {
        dom_type: web_sys::SvgaElement;
        attributes {
            /// Instructs browsers to download a URL instead of navigating to
            /// it, so the user will be prompted to save it as a local file.
            /// Value type: `<string>` ; Default value: none; Animatable: no
            download: String,

            /// The URL or URL fragment the hyperlink points to.
            /// Value type: `<URL>` ;
            /// Default value: none; Animatable: yes
            href: String,

            /// The human language of the URL or URL fragment that the hyperlink
            /// points to.
            /// Value type: `<string>` ;
            /// Default value: none; Animatable: yes
            hreflang: String,

            /// A space-separated list of URLs to which, when the hyperlink is
            /// followed, POST requests with the body PING will be sent by the
            /// browser (in the background). Typically used for tracking. For a
            /// more widely-supported feature addressing the same use cases, see
            /// Navigator.sendBeacon().
            /// Value type: `<list-of-URLs>` ;
            /// Default value: none; Animatable: no
            ping: String,

            /// Which referrer to send when fetching the URL.
            /// Value type:
            /// no-referrer|no-referrer-when-downgrade|same-origin|origin|strict-origin|origin-when-cross-origin|strict-origin-when-cross-origin|unsafe-url
            /// ; Default value: none; Animatable: no
            referrerpolicy: String,

            /// The relationship of the target object to the link object.
            /// Value type: `<list-of-Link-Types>` ;
            /// Default value: none; Animatable: yes
            rel: String,

            /// Where to display the linked URL.
            /// Value type: _self|_parent|_top|_blank|`<name>` ;
            /// Default value: _self; Animatable: yes
            target: String,

            /// A MIME type for the linked URL.
            /// Value type: `<string>` ; Default value: none; Animatable: yes
            r#type: String,
        };
    }
);

parent_element!(a);
impl<D: Dom> ConditionalProcessing for A<D> {}
impl<D: Dom> Presentation for A<D> {}

svg_element!(
    /// The SVG `<animate>` element provides a way to animate an attribute of an
    /// element over time.
    animate = {
        dom_type: web_sys::SvgaElement;
    }
);

impl<D: Dom> AnimationTiming for Animate<D> {}
impl<D: Dom> AnimationValue for Animate<D> {}
impl<D: Dom> OtherAnimation for Animate<D> {}

svg_element!(
    /// The `<circle>` SVG element is an SVG basic shape, used to draw circles
    /// based on a center point and a radius.
    circle = {
        dom_type: web_sys::SvgCircleElement;
        attributes {
            /// The x-axis coordinate of the center of the circle. Value type:
            /// `<length>`|`<percentage>` ; Default value: 0; Animatable: yes
            cx: Length,

            /// The y-axis coordinate of the center of the circle. Value type:
            /// `<length>`|`<percentage>` ; Default value: 0; Animatable: yes
            cy: Length,

            /// The radius of the circle. A value lower or equal to zero
            /// disables rendering of the circle. Value type:
            /// `<length>`|`<percentage>` ; Default value: 0; Animatable: yes
            r: Length,

            /// The total length for the circle's circumference, in user units.
            /// Value type: `<number>` ; Default value: none; Animatable: yes
            path_length("pathLength"): f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for Circle<D> {}
impl<D: Dom> Presentation for Circle<D> {}

parent_element!(circle);

svg_element!(
    /// The `<clipPath>` SVG element defines a clipping path, to be used by the
    /// clip-path property.
    ///
    /// A clipping path restricts the region to which paint can be applied.
    /// Conceptually, parts of the drawing that lie outside of the region
    /// bounded by the clipping path are not drawn.
    clip_path("clipPath") = {
        dom_type: web_sys::SvgClipPathElement;
        attributes {
            /// Defines the coordinate system for the contents of the `<clipPath>`
            /// element. Value type: userSpaceOnUse|objectBoundingBox ; Default
            /// value: userSpaceOnUse; Animatable: yes
            clip_path_units("clipPathUnits"): String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for ClipPath<D> {}
impl<D: Dom> Presentation for ClipPath<D> {}

parent_element!(clip_path);

svg_element!(
    /// The `<defs>` element is used to store graphical objects that will be
    /// used at a later time. Objects created inside a `<defs>` element are
    /// not rendered directly. To display them you have to reference them
    /// (with a `<use>` element for example).
    ///
    /// Graphical objects can be referenced from anywhere, however, defining
    /// these objects inside of a `<defs>` element promotes understandability of
    /// the SVG content and is beneficial to the overall accessibility of the
    /// document.
    defs = {
        dom_type: web_sys::SvgDefsElement;
    }
);

parent_element!(defs);
impl<D: Dom> ConditionalProcessing for Defs<D> {}
impl<D: Dom> Presentation for Defs<D> {}

svg_element!(
    /// The `<desc>` element provides an accessible, long-text description of
    /// any SVG container element or graphics element.
    ///
    /// Text in a `<desc>` element is not rendered as part of the graphic. If
    /// the element can be described by visible text, it is possible to
    /// reference that text with the aria-describedby attribute. If
    /// aria-describedby is used, it will take precedence over `<desc>`.
    ///
    /// The hidden text of a `<desc>` element can also be concatenated with the
    /// visible text of other elements using multiple IDs in an aria-describedby
    /// value. In that case, the `<desc>` element must provide an ID for
    /// reference.
    desc = {
        dom_type: web_sys::SvgDescElement;
    }
);

parent_element!(desc);

svg_element!(
    /// The `<ellipse>` element is an SVG basic shape, used to create ellipses
    /// based on a center coordinate, and both their x and y radius.
    ellipse = {
        dom_type: web_sys::SvgEllipseElement;

        attributes {
            /// The x position of the ellipse. Value type:
            /// `<length>`|`<percentage>` ; Default value: 0;
            /// Animatable: yes
            cx: Length,

            /// The y position of the ellipse. Value type:
            /// `<length>`|`<percentage>` ; Default value: 0;
            /// Animatable: yes
            cy: Length,

            /// The radius of the ellipse on the x axis. Value type:
            /// auto|`<length>`|`<percentage>` ; Default value: auto;
            /// Animatable: yes
            rx: AutoOrLength,

            /// The radius of the ellipse on the y axis. Value type:
            /// auto|`<length>`|`<percentage>` ; Default value: auto;
            /// Animatable: yes
            ry: AutoOrLength,
        };
    }
);

parent_element!(ellipse);
impl<D: Dom> ConditionalProcessing for Ellipse<D> {}
impl<D: Dom> Presentation for Ellipse<D> {}

svg_element!(
    fe_blend("feBlend") = {
        dom_type: web_sys::SvgfeBlendElement;

        attributes {
            r#in: String,
            in2: String,
            mode: String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeBlend<D> {}
impl<D: Dom> Presentation for FeBlend<D> {}
impl<D: Dom> FilterPrimitives for FeBlend<D> {}

parent_element!(fe_blend);

svg_element!(
    fe_color_matrix("feColorMatrix") = {
        dom_type: web_sys::SvgfeColorMatrixElement;

        attributes {
            r#in: String,
            r#type: String,
            values: String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeColorMatrix<D> {}
impl<D: Dom> Presentation for FeColorMatrix<D> {}
impl<D: Dom> FilterPrimitives for FeColorMatrix<D> {}

parent_element!(fe_color_matrix);

svg_element!(
    fe_component_transfer("feComponentTransfer") = {
        dom_type: web_sys::SvgfeComponentTransferElement;

        attributes { r#in: String };
    }
);

impl<D: Dom> ConditionalProcessing for FeComponentTransfer<D> {}
impl<D: Dom> Presentation for FeComponentTransfer<D> {}
impl<D: Dom> FilterPrimitives for FeComponentTransfer<D> {}

parent_element!(fe_component_transfer);

svg_element!(
    fe_composite("feComposite") = {
        dom_type: web_sys::SvgfeCompositeElement;

        attributes {
            r#in: String,
            in2: String,
            operator: String,
            k1: f64,
            k2: f64,
            k3: f64,
            k4: f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeComposite<D> {}
impl<D: Dom> Presentation for FeComposite<D> {}
impl<D: Dom> FilterPrimitives for FeComposite<D> {}

parent_element!(fe_composite);

svg_element!(
    fe_convolve_matrix("feConvolveMatrix") = {
        dom_type: web_sys::SvgfeConvolveMatrixElement;

        attributes {
            r#in: String,
            order: String,
            kernel_matrix("kernelMatrix"): String,
            divisor: f64,
            bias: f64,
            target_x("targetX"): u64,
            target_y("targetY"): u64,
            edge_mode("edgeMode"): String,
            preserve_alpha("preserveAlpha"): bool,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeConvolveMatrix<D> {}
impl<D: Dom> Presentation for FeConvolveMatrix<D> {}
impl<D: Dom> FilterPrimitives for FeConvolveMatrix<D> {}

parent_element!(fe_convolve_matrix);

svg_element!(
    fe_diffuse_lighting("feDiffuseLighting") = {
        dom_type: web_sys::SvgfeDiffuseLightingElement;

        attributes {
            r#in: String,
            surface_scale("surfaceScale"): f64,
            diffuse_constant("diffuseConstant"): f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeDiffuseLighting<D> {}
impl<D: Dom> Presentation for FeDiffuseLighting<D> {}
impl<D: Dom> FilterPrimitives for FeDiffuseLighting<D> {}

parent_element!(fe_diffuse_lighting);

svg_element!(
    fe_displacement_map("feDisplacementMap") = {
        dom_type: web_sys::SvgfeDisplacementMapElement;

        attributes {
            r#in: String,
            in2: String,
            scale: f64,
            x_channel_selector("xChannelSelector"): String,
            y_channel_selector("yChannelSelector"): String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeDisplacementMap<D> {}
impl<D: Dom> Presentation for FeDisplacementMap<D> {}
impl<D: Dom> FilterPrimitives for FeDisplacementMap<D> {}

parent_element!(fe_displacement_map);

svg_element!(
    fe_distant_light("feDistantLight") = {
        dom_type: web_sys::SvgfeDistantLightElement;

        attributes {
            azimuth: f64,
            elevation: f64,
        };
    }
);

parent_element!(fe_distant_light);

svg_element!(
    fe_flood("feFlood") = {
        dom_type: web_sys::SvgfeFloodElement;

        attributes {
            flood_color: String,
            flood_opacity: NumberOrPercentage,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeFlood<D> {}
impl<D: Dom> Presentation for FeFlood<D> {}
impl<D: Dom> FilterPrimitives for FeFlood<D> {}

parent_element!(fe_flood);

svg_element!(
    fe_func_a("feFuncA") = {
        dom_type: web_sys::SvgfeFuncAElement;

        attributes {};
    }
);

impl<D: Dom> TransferFunction for FeFuncA<D> {}

parent_element!(fe_func_a);

svg_element!(
    fe_func_b("feFuncB") = {
        dom_type: web_sys::SvgfeFuncBElement;

        attributes {};
    }
);

impl<D: Dom> TransferFunction for FeFuncB<D> {}

parent_element!(fe_func_b);

svg_element!(
    fe_func_g("feFuncG") = {
        dom_type: web_sys::SvgfeFuncGElement;

        attributes {};
    }
);

impl<D: Dom> TransferFunction for FeFuncG<D> {}

parent_element!(fe_func_g);

svg_element!(
    fe_func_r("feFuncR") = {
        dom_type: web_sys::SvgfeFuncRElement;

        attributes {};
    }
);

impl<D: Dom> TransferFunction for FeFuncR<D> {}

parent_element!(fe_func_r);

svg_element!(
    fe_gaussian_blur("feGaussianBlur") = {
        dom_type: web_sys::SvgfeGaussianBlurElement;

        attributes {
            r#in: String,
            std_deviation("stdDeviation"): String,
            edge_mode("edgeMode"): String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeGaussianBlur<D> {}
impl<D: Dom> Presentation for FeGaussianBlur<D> {}
impl<D: Dom> FilterPrimitives for FeGaussianBlur<D> {}

parent_element!(fe_gaussian_blur);

svg_element!(
    fe_image("feImage") = {
        dom_type: web_sys::SvgfeImageElement;

        attributes {
            preserve_aspect_ratio("preserveAspectRatio"): String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeImage<D> {}
impl<D: Dom> Presentation for FeImage<D> {}
impl<D: Dom> FilterPrimitives for FeImage<D> {}

parent_element!(fe_image);

svg_element!(
    fe_merge("feMerge") = {
        dom_type: web_sys::SvgfeMergeElement;

        attributes {};
    }
);

impl<D: Dom> ConditionalProcessing for FeMerge<D> {}
impl<D: Dom> Presentation for FeMerge<D> {}
impl<D: Dom> FilterPrimitives for FeMerge<D> {}

parent_element!(fe_merge);

svg_element!(
    fe_merge_node("feMergeNode") = {
        dom_type: web_sys::SvgfeMergeNodeElement;

        attributes { r#in: String };
    }
);

parent_element!(fe_merge_node);

svg_element!(
    fe_morphology("feMorphology") = {
        dom_type: web_sys::SvgfeMorphologyElement;

        attributes {
            r#in: String,
            operator: String,
            radius: String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeMorphology<D> {}
impl<D: Dom> Presentation for FeMorphology<D> {}
impl<D: Dom> FilterPrimitives for FeMorphology<D> {}

parent_element!(fe_morphology);

svg_element!(
    fe_offset("feOffset") = {
        dom_type: web_sys::SvgfeOffsetElement;

        attributes {
            r#in: String,
            dx: f64,
            dy: f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeOffset<D> {}
impl<D: Dom> Presentation for FeOffset<D> {}
impl<D: Dom> FilterPrimitives for FeOffset<D> {}

parent_element!(fe_offset);

svg_element!(
    fe_point_light("fePointLight") = {
        dom_type: web_sys::SvgfePointLightElement;

        attributes {
            x: f64,
            y: f64,
            z: f64,
        };
    }
);

parent_element!(fe_point_light);

svg_element!(
    fe_specular_lighting("feSpecularLighting") = {
        dom_type: web_sys::SvgfeSpecularLightingElement;

        attributes {
            r#in: String,
            surface_scale("surfaceScale"): f64,
            specular_constant("specularConstant"): f64,
            specular_exponent("specularExponent"): f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeSpecularLighting<D> {}
impl<D: Dom> Presentation for FeSpecularLighting<D> {}
impl<D: Dom> FilterPrimitives for FeSpecularLighting<D> {}

parent_element!(fe_specular_lighting);

svg_element!(
    fe_spot_light("feSpotLight") = {
        dom_type: web_sys::SvgfeSpotLightElement;

        attributes {
            x: f64,
            y: f64,
            z: f64,
            points_at_x("pointsAtX"): f64,
            points_at_y("pointsAtY"): f64,
            points_at_z("pointsAtZ"): f64,
            specular_exponent("specularExponent"): f64,
            limiting_cone_angle("limitingConeAngle"): f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeSpotLight<D> {}
impl<D: Dom> Presentation for FeSpotLight<D> {}
impl<D: Dom> FilterPrimitives for FeSpotLight<D> {}

parent_element!(fe_spot_light);

svg_element!(
    fe_tile("feTile") = {
        dom_type: web_sys::SvgfeTileElement;

        attributes { r#in: String };
    }
);

impl<D: Dom> ConditionalProcessing for FeTile<D> {}
impl<D: Dom> Presentation for FeTile<D> {}
impl<D: Dom> FilterPrimitives for FeTile<D> {}

parent_element!(fe_tile);

svg_element!(
    fe_turbulence("feTurbulence") = {
        dom_type: web_sys::SvgfeTurbulenceElement;

        attributes {
            base_frequency("baseFrequency"): String,
            num_octaves("numOctaves"): u64,
            seed: f64,
            stitch_tiles("stitchTiles"): String,
            r#type: String,
        };
    }
);

impl<D: Dom> ConditionalProcessing for FeTurbulence<D> {}
impl<D: Dom> Presentation for FeTurbulence<D> {}
impl<D: Dom> FilterPrimitives for FeTurbulence<D> {}

parent_element!(fe_turbulence);

svg_element!(
    filter = {
        dom_type: web_sys::SvgFilterElement;

        attributes {
            x: Length,
            y: Length,
            width: Length,
            height: Length,
            filter_units("filterUnits"): String,
            primitive_units("primitiveUnits"): String,
        };
    }
);

parent_element!(filter);

impl<D: Dom> Presentation for Filter<D> {}

svg_element!(
    foreign_object("foreignObject") = {
        dom_type: web_sys::SvgFilterElement;

        attributes {
            width: AutoOrLength,
            height: AutoOrLength,
            x: Length,
            y: Length,
        };
    }
);

parent_element!(foreign_object);

impl<D: Dom> ConditionalProcessing for ForeignObject<D> {}

svg_element!(
    /// The `<g>` SVG element is a container used to group other SVG elements.
    ///
    /// Transformations applied to the `<g>` element are performed on its child
    /// elements, and its attributes are inherited by its children. It can also
    /// group multiple elements to be referenced later with the `<use>` element.
    g = {
        dom_type: web_sys::SvggElement;
    }
);

parent_element!(g);
impl<D: Dom> ConditionalProcessing for G<D> {}
impl<D: Dom> Presentation for G<D> {}

svg_element!(
    line = {
        dom_type: web_sys::SvgLineElement;

        attributes {
            /// Defines the x-axis coordinate of the line starting point. Value
            /// type: `<length>`|`<percentage>`|`<number>` ; Default value: 0;
            /// Animatable: yes
            x1: Length,

            /// Defines the x-axis coordinate of the line ending point. Value
            /// type: `<length>`|`<percentage>`|`<number>` ; Default value: 0;
            /// Animatable: yes
            x2: Length,

            /// Defines the y-axis coordinate of the line starting point. Value
            /// type: `<length>`|`<percentage>`|`<number>` ; Default value: 0;
            /// Animatable: yes
            y1: Length,

            /// Defines the y-axis coordinate of the line ending point. Value
            /// type: `<length>`|`<percentage>`|`<number>` ; Default value: 0;
            /// Animatable: yes
            y2: Length,

            /// Defines the total path length in user units. Value type:
            /// `<number>` ; Default value: none; Animatable: yes
            path_length("pathLength"): f64,
        };
    }
);

parent_element!(line);

impl<D: Dom> ConditionalProcessing for Line<D> {}
impl<D: Dom> Presentation for Line<D> {}

svg_element!(
    marker = {
        dom_type: web_sys::SvgMarkerElement;

        attributes {
            /// This attribute defines the height of the marker viewport. Value
            /// type: `<length>` ; Default value: 3; Animatable: yes
            marker_height("markerHeight"): Length,

            /// This attribute defines the coordinate system for the attributes
            /// markerWidth, markerHeight and the contents of the `<marker>`.
            /// Value type: userSpaceOnUse|strokeWidth ; Default value:
            /// strokeWidth; Animatable: yes
            marker_units("markerUnits"): String,

            /// This attribute defines the width of the marker viewport. Value
            /// type: `<length>` ; Default value: 3; Animatable: yes
            marker_width("markerWidth"): Length,

            /// This attribute defines the orientation of the marker relative to
            /// the shape it is attached to. Value type:
            /// auto|auto-start-reverse|`<angle>` ; Default value: 0; Animatable:
            /// yes
            orient: String,

            /// This attribute defines how the svg fragment must be deformed if
            /// it is embedded in a container with a different aspect ratio.
            /// Value type: (none| xMinYMin| xMidYMin| xMaxYMin| xMinYMid|
            /// xMidYMid| xMaxYMid| xMinYMax| xMidYMax| xMaxYMax) (meet|slice)?
            /// ; Default value: xMidYMid meet; Animatable: yes
            preserve_aspect_ratio("preserveAspectRatio"): String,

            /// This attribute defines the x coordinate for the reference point
            /// of the marker. Value type: left|center|right|`<coordinate>` ;
            /// Default value: 0; Animatable: yes
            ref_x("refX"): String,

            /// This attribute defines the y coordinate for the reference point
            /// of the marker. Value type: top|center|bottom|`<coordinate>` ;
            /// Default value: 0; Animatable: yes
            ref_y("refY"): String,

            /// This attribute defines the bound of the SVG viewport for the
            /// current SVG fragment. Value type: `<list-of-numbers>` ; Default
            /// value: none; Animatable: yes
            view_box("viewBox"): String,
        };
    }
);

parent_element!(marker);

impl<D: Dom> ConditionalProcessing for Marker<D> {}
impl<D: Dom> Presentation for Marker<D> {}

svg_element!(
    mask = {
        dom_type: web_sys::SvgMaskElement;

        attributes {
            /// This attribute defines the height of the masking area. Value
            /// type: `<length>` ; Default value: 120%; Animatable: yes
            height: Length,

            /// This attribute defines the coordinate system for the contents of
            /// the `<mask>`. Value type: userSpaceOnUse|objectBoundingBox ;
            /// Default value: userSpaceOnUse; Animatable: yes
            mask_content_units("maskContentUnits"): String,

            /// This attribute defines the coordinate system for attributes x,
            /// y, width and height on the `<mask>`. Value type:
            /// userSpaceOnUse|objectBoundingBox ; Default value:
            /// objectBoundingBox; Animatable: yes
            mask_units("maskUnits"): String,

            /// This attribute defines the x-axis coordinate of the top-left
            /// corner of the masking area. Value type: `<coordinate>` ; Default
            /// value: -10%; Animatable: yes
            x: Length,

            /// This attribute defines the y-axis coordinate of the top-left
            /// corner of the masking area. Value type: `<coordinate>` ; Default
            /// value: -10%; Animatable: yes
            y: Length,

            /// This attribute defines the width of the masking area. Value
            /// type: `<length>` ; Default value: 120%; Animatable: yes
            width: Length,
        };
    }
);

parent_element!(mask);

impl<D: Dom> ConditionalProcessing for Mask<D> {}
impl<D: Dom> Presentation for Mask<D> {}

svg_element!(
    metadata = {
        dom_type: web_sys::SvgMetadataElement;

        attributes {};
    }
);

parent_element!(metadata);

svg_element!(
    mpath = {
        dom_type: web_sys::SvgmPathElement;

        attributes {};
    }
);

parent_element!(mpath);

svg_element!(
    /// The `path` SVG element is the generic element to define a shape. All the
    /// basic shapes can be created with a path element.
    path  = { dom_type: web_sys::SvgPathElement;
        attributes {
            /// This attribute lets authors specify the total length for the
            /// path, in user units.
            /// Value type: `<number>` ; Default value: none; Animatable: yes
            path_length("pathLength"): f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for Path<D> {}
impl<D: Dom> Presentation for Path<D> {}

parent_element!(path);

svg_element!(
    pattern = {
        dom_type: web_sys::SvgPatternElement;

        attributes {
            /// This attribute determines the height of the pattern tile. Value
            /// type: `<length>`|`<percentage>`; Default value: 0; Animatable: yes
            height: Length,

            /// This attribute reference a template pattern that provides
            /// default values for the `<pattern>` attributes. Value type: `<URL>`;
            /// Default value: none; Animatable: yes
            href: String,

            /// This attribute defines the coordinate system for the contents of
            /// the `<pattern>`. Value type: userSpaceOnUse|objectBoundingBox;
            /// Default value: userSpaceOnUse; Animatable: yes Note:
            /// This attribute has no effect if a viewBox attribute is specified
            /// on the `<pattern>` element.
            pattern_content_units("patternContentUnits"): String,

            /// This attribute contains the definition of an optional additional
            /// transformation from the pattern coordinate system onto the
            /// target coordinate system. Value type: `<transform-list>`; Default
            /// value: none; Animatable: yes
            pattern_transform("patternTransform"): String,

            /// This attribute defines the coordinate system for attributes x,
            /// y, width, and height. Value type:
            /// userSpaceOnUse|objectBoundingBox; Default value:
            /// objectBoundingBox; Animatable: yes
            pattern_units("patternUnits"): String,

            /// This attribute defines how the SVG fragment must be deformed if
            /// it is embedded in a container with a different aspect ratio.
            /// Value type: (none| xMinYMin| xMidYMin| xMaxYMin| xMinYMid|
            /// xMidYMid| xMaxYMid| xMinYMax| xMidYMax| xMaxYMax) (meet|slice)?
            /// ; Default value: xMidYMid meet; Animatable: yes
            preserve_aspect_ratio("preserveAspectRatio"): String,

            /// This attribute defines the bound of the SVG viewport for the
            /// pattern fragment. Value type: `<list-of-numbers>` ; Default value:
            /// none; Animatable: yes
            view_box("viewBox"): String,

            /// This attribute determines the width of the pattern tile. Value
            /// type: `<length>`|`<percentage>` ; Default value: 0; Animatable: yes
            width: Length,

            /// This attribute determines the x coordinate shift of the pattern
            /// tile. Value type: `<length>`|`<percentage>` ; Default value: 0;
            /// Animatable: yes
            x: Length,

            /// This attribute determines the y coordinate shift of the pattern
            /// tile. Value type: `<length>`|`<percentage>` ; Default value: 0;
            /// Animatable: yes
            y: Length,
        };
    }
);

parent_element!(pattern);

impl<D: Dom> ConditionalProcessing for Pattern<D> {}
impl<D: Dom> Presentation for Pattern<D> {}

svg_element!(
    polygon = {
        dom_type: web_sys::SvgPolygonElement;

        attributes {
            /// This attribute defines the list of points (pairs of x,y absolute
            /// coordinates) required to draw the polygon. Value type: `<number>`+
            /// ; Default value: ""; Animatable: yes
            points: String,

            /// This attribute lets specify the total length for the path, in
            /// user units. Value type: `<number>` ; Default value: none;
            /// Animatable: yes
            path_length("pathLength"): f64,
        };
    }
);

parent_element!(polygon);

impl<D: Dom> ConditionalProcessing for Polygon<D> {}
impl<D: Dom> Presentation for Polygon<D> {}

svg_element!(
    polyline = {
        dom_type: web_sys::SvgPolylineElement;

        attributes {
            /// This attribute defines the list of points (pairs of x,y absolute
            /// coordinates) required to draw the polyline Value type: `<number>`+
            /// ; Default value: ""; Animatable: yes
            points: String,

            /// This attribute lets specify the total length for the path, in
            /// user units. Value type: `<number>` ; Default value: none;
            /// Animatable: yes
            path_length("pathLength"): f64,
        };
    }
);

parent_element!(polyline);

impl<D: Dom> ConditionalProcessing for Polyline<D> {}
impl<D: Dom> Presentation for Polyline<D> {}

svg_element!(
    /// The `<rect>` element is a basic SVG shape that draws rectangles, defined
    /// by their position, width, and height. The rectangles may have their
    /// corners rounded.
    rect  = { dom_type: web_sys::SvgRectElement;
        attributes {
            /// The x coordinate of the rect. Value type: `<length>`|`<percentage>` ; Default
            /// value: 0; Animatable: yes
            x: Length,

            /// The y coordinate of the rect. Value type: `<length>`|`<percentage>` ; Default
            /// value: 0; Animatable: yes
            y: Length,

            /// The width of the rect. Value type: auto|`<length>`|`<percentage>` ; Default
            /// value: auto; Animatable: yes
            width: Length,

            /// The height of the rect. Value type: auto|`<length>`|`<percentage>` ; Default
            /// value: auto; Animatable: yes
            height: Length,

            /// The horizontal corner radius of the rect. Defaults to ry if it is specified.
            /// Value type: auto|`<length>`|`<percentage>` ; Default value: auto; Animatable:
            /// yes
            rx: Length,

            /// The vertical corner radius of the rect. Defaults to rx if it is specified.
            /// Value type: auto|`<length>`|`<percentage>` ; Default value: auto; Animatable:
            /// yes
            ry: Length,

            /// The total length of the rectangle's perimeter, in user units. Value type:
            /// `<number>` ; Default value: none; Animatable: yes
            path_length("pathLength"): f64,
        };
    }
);

impl<D: Dom> ConditionalProcessing for Rect<D> {}
impl<D: Dom> Presentation for Rect<D> {}

parent_element!(rect);

svg_element!(
    script = {
        dom_type: web_sys::SvgScriptElement;

        attributes {
            /// This attribute defines CORS settings as define for the HTML
            /// `<script>` element. Value type: `<string>`; Default value: ?;
            /// Animatable: yes
            crossorigin: String,

            /// The URL to the script to load. Value type: `<URL>` ; Default
            /// value: none; Animatable: no
            href: String,

            /// This attribute defines type of the script language to use. Value
            /// type: `<string>`; Default value: application/ecmascript;
            /// Animatable: no
            r#type: String,
        };
    }
);

parent_element!(script);

svg_element!(
    set = {
        dom_type: web_sys::SvgSetElement;

        attributes {
            /// This attribute defines the value to be applied to the target
            /// attribute for the duration of the animation. The value must
            /// match the requirements of the target attribute. Value type:
            /// `<anything>`; Default value: none; Animatable: no
            to: String,
        };
    }
);

parent_element!(set);

impl<D: Dom> AnimationTiming for Set<D> {}
impl<D: Dom> OtherAnimation for Set<D> {}

svg_element!(
    stop = {
        dom_type: web_sys::SvgStopElement;

        attributes {
            /// This attribute defines where the gradient stop is placed along
            /// the gradient vector. Value type: `<number>`|`<percentage>`;
            /// Default value: 0; Animatable: yes
            offset: Length,

            /// This attribute defines the color of the gradient stop. It can be
            /// used as a CSS property. Value type:
            /// currentcolor|`<color>`|`<icccolor>`; Default value: black;
            /// Animatable: yes
            stop_color: String,

            /// This attribute defines the opacity of the gradient stop. It can
            /// be used as a CSS property. Value type: `<opacity>`; Default
            /// value: 1; Animatable: yes
            stop_opacity: f64,
        };
    }
);

parent_element!(stop);

impl<D: Dom> Presentation for Stop<D> {}

svg_element!(
    style = {
        dom_type: web_sys::SvgStyleElement;

        attributes {
            /// This attribute defines type of the style sheet language to use
            /// as a media type string. Value type: `<string>`; Default value:
            /// text/css; Animatable: no
            r#type: String,

            /// This attribute defines to which media the style applies. Value
            /// type: `<string>`; Default value: all; Animatable: no
            media: String,

            /// This attribute the title of the style sheet which can be used to
            /// switch between alternate style sheets. Value type: `<string>`;
            /// Default value: none; Animatable: no
            title: String,
        };
    }
);

parent_element!(style);

svg_element!(
    /// The svg element is a container that defines a new coordinate system and
    /// viewport. It is used as the outermost element of SVG documents, but it
    /// can also be used to embed an SVG fragment inside an SVG or HTML
    /// document.
    ///
    /// Note: The xmlns attribute is only required on the outermost svg element
    /// of SVG documents. It is unnecessary for inner svg elements or inside
    /// HTML documents.
    svg  = { dom_type: web_sys::SvgsvgElement;
        attributes {
            /// The displayed height of the rectangular viewport. (Not the
            /// height of its coordinate system.)
            /// Value type: `<length>`|`<percentage>` ; Default value: auto;
            /// Animatable: yes
            height: AutoOrLength,

            /// How the svg fragment must be deformed if it is displayed with a
            /// different aspect ratio.
            /// Value type: (none| xMinYMin| xMidYMin| xMaxYMin| xMinYMid| xMidYMid| xMaxYMid| xMinYMax| xMidYMax| xMaxYMax) (meet|slice)? ;
            /// Default value: xMidYMid meet; Animatable: yes
            preserve_aspect_ratio("preserveAspectRatio"): String,

            /// The SVG viewport coordinates for the current SVG fragment.
            /// Value type: `<list-of-numbers>` ; Default value: none;
            /// Animatable: yes
            view_box("viewBox"): String,

            /// The displayed width of the rectangular viewport. (Not the width
            /// of its coordinate system.) Value type: `<length>`|`<percentage>` ;
            /// Default value: auto; Animatable: yes
            width: AutoOrLength,

            /// The displayed x coordinate of the svg container. No effect on
            /// outermost svg elements. Value type: `<length>`|`<percentage>` ;
            /// Default value: 0; Animatable: yes
            x: Length,

            /// The displayed y coordinate of the svg container. No effect on
            /// outermost svg elements. Value type: `<length>`|`<percentage>` ;
            /// Default value: 0; Animatable: yes
            y: Length,
        };
    }
);

impl<D: Dom> ConditionalProcessing for Svg<D> {}
impl<D: Dom> Presentation for Svg<D> {}

parent_element!(svg);

svg_element!(
    switch = {
        dom_type: web_sys::SvgSwitchElement;

        attributes {};
    }
);

parent_element!(switch);

impl<D: Dom> ConditionalProcessing for Switch<D> {}
impl<D: Dom> Presentation for Switch<D> {}

svg_element!(
    symbol = {
        dom_type: web_sys::SvgSymbolElement;

        attributes {
            /// This attribute determines the height of the symbol. Value type:
            /// `<length>`|`<percentage>` ; Default value: auto; Animatable: yes
            height: Length,

            /// This attribute defines how the svg fragment must be deformed if
            /// it is embedded in a container with a different aspect ratio.
            /// Value type: (none| xMinYMin| xMidYMin| xMaxYMin| xMinYMid|
            /// xMidYMid| xMaxYMid| xMinYMax| xMidYMax| xMaxYMax) (meet|slice)?
            /// ; Default value: xMidYMid meet; Animatable: yes
            preserve_aspect_ratio("preserveAspectRatio"): String,

            /// This attribute determines the x coordinate of the reference
            /// point of the symbol. Value type:
            /// `<length>`|`<percentage>`|left|center|right ; Default value: None;
            /// Animatable: yes
            ref_x("refX"): String,

            /// This attribute determines the y coordinate of the reference
            /// point of the symbol. Value type:
            /// `<length>`|`<percentage>`|top|center|bottom ; Default value: None;
            /// Animatable: yes
            ref_y("refY"): String,

            /// This attribute defines the bound of the SVG viewport for the
            /// current symbol. Value type: `<list-of-numbers>` ; Default value:
            /// none; Animatable: yes
            view_box("viewBox"): String,

            /// This attribute determines the width of the symbol. Value type:
            /// `<length>`|`<percentage>` ; Default value: auto; Animatable: yes
            width: Length,

            /// This attribute determines the x coordinate of the symbol. Value
            /// type: `<length>`|`<percentage>` ; Default value: 0; Animatable: yes
            x: Length,

            /// This attribute determines the y coordinate of the symbol. Value
            /// type: `<length>`|`<percentage>` ; Default value: 0; Animatable: yes
            y: Length,
        };
    }
);

parent_element!(symbol);

impl<D: Dom> Presentation for Symbol<D> {}

svg_element!(
    text = {
        dom_type: web_sys::SvgTextElement;

        attributes {
            /// The x coordinate of the starting point of the text baseline.
            /// Value type: `<length>`|`<percentage>` ; Default value: 0;
            /// Animatable: yes
            x: Length,

            /// The y coordinate of the starting point of the text baseline.
            /// Value type: `<length>`|`<percentage>` ; Default value: 0;
            /// Animatable: yes
            y: Length,

            /// Shifts the text position horizontally from a previous text
            /// element. Value type: `<length>`|`<percentage>` ; Default value:
            /// none; Animatable: yes
            dx: Length,

            /// Shifts the text position vertically from a previous text
            /// element. Value type: `<length>`|`<percentage>` ; Default value:
            /// none; Animatable: yes
            dy: Length,

            /// Rotates orientation of each individual glyph. Can rotate glyphs
            /// individually. Value type: `<list-of-number>` ; Default value:
            /// none; Animatable: yes
            rotate: String,

            /// How the text is stretched or compressed to fit the width defined
            /// by the textLength attribute. Value type:
            /// spacing|spacingAndGlyphs; Default value: spacing; Animatable:
            /// yes
            length_adjust("lengthAdjust"): String,

            /// A width that the text should be scaled to fit. Value type:
            /// `<length>`|`<percentage>` ; Default value: none; Animatable: yes
            text_length("textLength"): Length,
        };
    }
);

parent_element!(text);

impl<D: Dom> ConditionalProcessing for Text<D> {}
impl<D: Dom> Presentation for Text<D> {}

svg_element!(
    text_path("textPath") = {
        dom_type: web_sys::SvgTextPathElement;

        attributes {
            /// The URL to the path or basic shape on which to render the text.
            /// If the path attribute is set, href has no effect. Value type:
            /// `<URL>` ; Default value: none; Animatable: yes
            href: String,

            /// Where length adjustment should be applied to the text: the space
            /// between glyphs, or both the space and the glyphs themselves.
            /// Value type: spacing|spacingAndGlyphs; Default value: spacing;
            /// Animatable: yes
            length_adjust("lengthAdjust"): String,

            /// Which method to render individual glyphs along the path. Value
            /// type: align|stretch ; Default value: align; Animatable: yes
            method: String,

            /// The path on which the text should be rendered. Value type:
            /// `<path_data>` ; Default value: none; Animatable: yes
            path: String,

            /// Which side of the path the text should be rendered. Value type:
            /// left|right ; Default value: left; Animatable: yes
            side: String,

            /// How space between glyphs should be handled. Value type:
            /// auto|exact ; Default value: exact; Animatable: yes
            spacing: String,

            /// How far the beginning of the text should be offset from the
            /// beginning of the path. Value type:
            /// `<length>`|`<percentage>`|`<number>` ; Default value: 0; Animatable:
            /// yes
            start_offset("startOffset"): Length,

            /// The width of the space into which the text will render. Value
            /// type: `<length>`|`<percentage>`|`<number>` ; Default value: auto;
            /// Animatable: yes
            text_length("textLength"): Length,
        };
    }
);

parent_element!(text_path);

impl<D: Dom> ConditionalProcessing for TextPath<D> {}
impl<D: Dom> Presentation for TextPath<D> {}

svg_element!(
    title = {
        dom_type: web_sys::SvgTitleElement;

        attributes {};
    }
);

parent_element!(title);

svg_element!(
    tspan = {
        dom_type: web_sys::SvgtSpanElement;

        attributes {
            /// The x coordinate of the starting point of the text baseline.
            /// Value type: `<length>`|`<percentage>` ; Default value: none;
            /// Animatable: yes
            x: Length,

            /// The y coordinate of the starting point of the text baseline.
            /// Value type: `<length>`|`<percentage>` ; Default value: none;
            /// Animatable: yes
            y: Length,

            /// Shifts the text position horizontally from a previous text
            /// element. Value type: `<length>`|`<percentage>` ; Default value:
            /// none; Animatable: yes
            dx: Length,

            /// Shifts the text position vertically from a previous text
            /// element. Value type: `<length>`|`<percentage>` ; Default value:
            /// none; Animatable: yes
            dy: Length,

            /// Rotates orientation of each individual glyph. Can rotate glyphs
            /// individually. Value type: `<list-of-number>` ; Default value:
            /// none; Animatable: yes
            rotate: String,

            /// How the text is stretched or compressed to fit the width defined
            /// by the textLength attribute. Value type:
            /// spacing|spacingAndGlyphs; Default value: spacing; Animatable:
            /// yes
            length_adjust("lengthAdjust"): String,

            /// A width that the text should be scaled to fit. Value type:
            /// `<length>`|`<percentage>` ; Default value: none; Animatable: yes
            text_length("textLength"): Length,
        };
    }
);

parent_element!(tspan);

impl<D: Dom> ConditionalProcessing for Tspan<D> {}
impl<D: Dom> Presentation for Tspan<D> {}

svg_element!(
    /// The `<use>` element takes nodes from within the SVG document, and
    /// duplicates them somewhere else.
    r#use = {
        dom_type: web_sys::SvgUseElement;
        attributes {
            /// The URL to an element/fragment that needs to be duplicated.
            /// Value type: `<URL>` ; Default value: none; Animatable: yes
            href: String,
            /// The x coordinate of the use element.
            /// Value type: `<coordinate>` ; Default value: 0; Animatable: yes
            x: Length,
            /// The y coordinate of the use element.
            /// Value type: `<coordinate>` ; Default value: 0; Animatable: yes
            y: Length,
            /// The width of the use element.
            /// Value type: `<length>` ; Default value: 0; Animatable: yes
            width: Length,
            /// The height of the use element.
            /// Value type: `<length>` ; Default value: 0; Animatable: yes
            height: Length,
        };
    }
);

impl<D: Dom> ConditionalProcessing for Use<D> {}
impl<D: Dom> Presentation for Use<D> {}

parent_element!(use);

svg_element!(
    view = {
        dom_type: web_sys::SvgViewElement;

        attributes {
            view_box("viewBox"): String,
            preserve_aspect_ratio("preserveAspectRatio"): String,
        };
    }
);

parent_element!(view);