phlex-validator 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +11 -0
- data/lib/phlex/validator/html/attributes/a.rb +15 -0
- data/lib/phlex/validator/html/attributes/area.rb +20 -0
- data/lib/phlex/validator/html/attributes/audio.rb +19 -0
- data/lib/phlex/validator/html/attributes/base.rb +8 -0
- data/lib/phlex/validator/html/attributes/bdo.rb +7 -0
- data/lib/phlex/validator/html/attributes/blockquote.rb +7 -0
- data/lib/phlex/validator/html/attributes/body.rb +39 -0
- data/lib/phlex/validator/html/attributes/br.rb +7 -0
- data/lib/phlex/validator/html/attributes/button.rb +35 -0
- data/lib/phlex/validator/html/attributes/canvas.rb +8 -0
- data/lib/phlex/validator/html/attributes/caption.rb +7 -0
- data/lib/phlex/validator/html/attributes/col.rb +13 -0
- data/lib/phlex/validator/html/attributes/data.rb +7 -0
- data/lib/phlex/validator/html/attributes/del.rb +8 -0
- data/lib/phlex/validator/html/attributes/details.rb +8 -0
- data/lib/phlex/validator/html/attributes/dfn.rb +7 -0
- data/lib/phlex/validator/html/attributes/dialog.rb +8 -0
- data/lib/phlex/validator/html/attributes/div.rb +7 -0
- data/lib/phlex/validator/html/attributes/embed.rb +10 -0
- data/lib/phlex/validator/html/attributes/fencedframe.rb +9 -0
- data/lib/phlex/validator/html/attributes/fieldset.rb +9 -0
- data/lib/phlex/validator/html/attributes/form.rb +16 -0
- data/lib/phlex/validator/html/attributes/global.rb +73 -0
- data/lib/phlex/validator/html/attributes/head.rb +7 -0
- data/lib/phlex/validator/html/attributes/hr.rb +11 -0
- data/lib/phlex/validator/html/attributes/html.rb +8 -0
- data/lib/phlex/validator/html/attributes/iframe.rb +44 -0
- data/lib/phlex/validator/html/attributes/img.rb +34 -0
- data/lib/phlex/validator/html/attributes/input.rb +228 -0
- data/lib/phlex/validator/html/attributes/ins.rb +8 -0
- data/lib/phlex/validator/html/attributes/label.rb +7 -0
- data/lib/phlex/validator/html/attributes/li.rb +8 -0
- data/lib/phlex/validator/html/attributes/link.rb +40 -0
- data/lib/phlex/validator/html/attributes/map.rb +7 -0
- data/lib/phlex/validator/html/attributes/meta.rb +18 -0
- data/lib/phlex/validator/html/attributes/meter.rb +14 -0
- data/lib/phlex/validator/html/attributes/object.rb +20 -0
- data/lib/phlex/validator/html/attributes/ol.rb +15 -0
- data/lib/phlex/validator/html/attributes/option.rb +10 -0
- data/lib/phlex/validator/html/attributes/output.rb +9 -0
- data/lib/phlex/validator/html/attributes/pre.rb +8 -0
- data/lib/phlex/validator/html/attributes/progress.rb +8 -0
- data/lib/phlex/validator/html/attributes/q.rb +7 -0
- data/lib/phlex/validator/html/attributes/script.rb +24 -0
- data/lib/phlex/validator/html/attributes/select.rb +14 -0
- data/lib/phlex/validator/html/attributes/slot.rb +7 -0
- data/lib/phlex/validator/html/attributes/source.rb +13 -0
- data/lib/phlex/validator/html/attributes/style.rb +11 -0
- data/lib/phlex/validator/html/attributes/table.rb +15 -0
- data/lib/phlex/validator/html/attributes/tbody.rb +11 -0
- data/lib/phlex/validator/html/attributes/td.rb +19 -0
- data/lib/phlex/validator/html/attributes/template.rb +10 -0
- data/lib/phlex/validator/html/attributes/textarea.rb +20 -0
- data/lib/phlex/validator/html/attributes/tfoot.rb +11 -0
- data/lib/phlex/validator/html/attributes/th.rb +24 -0
- data/lib/phlex/validator/html/attributes/thead.rb +11 -0
- data/lib/phlex/validator/html/attributes/time.rb +19 -0
- data/lib/phlex/validator/html/attributes/tr.rb +11 -0
- data/lib/phlex/validator/html/attributes/track.rb +11 -0
- data/lib/phlex/validator/html/attributes/ul.rb +8 -0
- data/lib/phlex/validator/html/attributes/video.rb +20 -0
- data/lib/phlex/validator/html/mixin.rb +586 -0
- data/lib/phlex/validator/html.rb +464 -0
- data/lib/phlex/validator/version.rb +7 -0
- data/lib/phlex/validator.rb +14 -0
- data/lib/phlex-validator.rb +3 -0
- metadata +154 -0
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex::Validator::HTML
|
4
|
+
Attributes::Video = {
|
5
|
+
autoplay: _Boolean,
|
6
|
+
controls: _Boolean,
|
7
|
+
controlslist: Enum(:nodownload, :nofullscreen, :noremoteplayback),
|
8
|
+
crossorigin: CrossOrigin,
|
9
|
+
disablepictureinpicture: _Boolean,
|
10
|
+
disableremoteplayback: _Boolean,
|
11
|
+
height: UInt,
|
12
|
+
loop: _Boolean,
|
13
|
+
muted: _Boolean,
|
14
|
+
playsinline: _Boolean,
|
15
|
+
poster: Href,
|
16
|
+
preload: Enum(:none, :metadata, :auto),
|
17
|
+
src: Href,
|
18
|
+
width: UInt,
|
19
|
+
}.freeze
|
20
|
+
end
|
@@ -0,0 +1,586 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Phlex::Validator::HTML
|
4
|
+
module Mixin
|
5
|
+
def __validate__(attributes, schema)
|
6
|
+
attributes.each do |k, v|
|
7
|
+
# All attributes are nilable
|
8
|
+
next if nil === v
|
9
|
+
|
10
|
+
# Ignore string keys as an escape hatch
|
11
|
+
next if String === k
|
12
|
+
|
13
|
+
# If the key is not a String, it must be a Symbol
|
14
|
+
raise ArgumentError unless Symbol === k
|
15
|
+
|
16
|
+
Literal.check(
|
17
|
+
expected: schema[k] || Attributes::Global[k] || Attribute,
|
18
|
+
actual: v
|
19
|
+
)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def a(**attributes)
|
24
|
+
__validate__(attributes, Attributes::A)
|
25
|
+
super
|
26
|
+
end
|
27
|
+
|
28
|
+
def abbr(**attributes)
|
29
|
+
__validate__(attributes, Attributes::Global)
|
30
|
+
super
|
31
|
+
end
|
32
|
+
|
33
|
+
def address(**attributes)
|
34
|
+
__validate__(attributes, Attributes::Global)
|
35
|
+
super
|
36
|
+
end
|
37
|
+
|
38
|
+
def area(**attributes)
|
39
|
+
__validate__(attributes, Attributes::Area)
|
40
|
+
super
|
41
|
+
end
|
42
|
+
|
43
|
+
def article(**attributes)
|
44
|
+
__validate__(attributes, Attributes::Global)
|
45
|
+
super
|
46
|
+
end
|
47
|
+
|
48
|
+
def aside(**attributes)
|
49
|
+
__validate__(attributes, Attributes::Global)
|
50
|
+
super
|
51
|
+
end
|
52
|
+
|
53
|
+
def audio(**attributes)
|
54
|
+
__validate__(attributes, Attributes::Audio)
|
55
|
+
super
|
56
|
+
end
|
57
|
+
|
58
|
+
def b(**attributes)
|
59
|
+
__validate__(attributes, Attributes::Global)
|
60
|
+
super
|
61
|
+
end
|
62
|
+
|
63
|
+
# TODO: We should validate that this comes before other link like tags
|
64
|
+
# TODO: We should ensure at least one of `href` or `target` are set
|
65
|
+
def base(**attributes)
|
66
|
+
__validate__(attributes, Attributes::Base)
|
67
|
+
super
|
68
|
+
end
|
69
|
+
|
70
|
+
def bdi(**attributes)
|
71
|
+
__validate__(attributes, Attributes::Global)
|
72
|
+
super
|
73
|
+
end
|
74
|
+
|
75
|
+
def bdo(**attributes)
|
76
|
+
__validate__(attributes, Attributes::Bdo)
|
77
|
+
super
|
78
|
+
end
|
79
|
+
|
80
|
+
def blockquote(**attributes)
|
81
|
+
__validate__(attributes, Attributes::Blockquote)
|
82
|
+
super
|
83
|
+
end
|
84
|
+
|
85
|
+
def body(**attributes)
|
86
|
+
__validate__(attributes, Attributes::Body)
|
87
|
+
super
|
88
|
+
end
|
89
|
+
|
90
|
+
def br(**attributes)
|
91
|
+
__validate__(attributes, Attributes::Br)
|
92
|
+
super
|
93
|
+
end
|
94
|
+
|
95
|
+
def button(**attributes)
|
96
|
+
__validate__(attributes, Attributes::Button)
|
97
|
+
super
|
98
|
+
end
|
99
|
+
|
100
|
+
def caption(**attributes)
|
101
|
+
__validate__(attributes, Attributes::Caption)
|
102
|
+
super
|
103
|
+
end
|
104
|
+
|
105
|
+
def cite(**attributes)
|
106
|
+
__validate__(attributes, Attributes::Global)
|
107
|
+
super
|
108
|
+
end
|
109
|
+
|
110
|
+
def code(**attributes)
|
111
|
+
__validate__(attributes, Attributes::Global)
|
112
|
+
super
|
113
|
+
end
|
114
|
+
|
115
|
+
def col(**attributes)
|
116
|
+
__validate__(attributes, Attributes::Col)
|
117
|
+
super
|
118
|
+
end
|
119
|
+
|
120
|
+
def colgroup(**attributes)
|
121
|
+
__validate__(attributes, Attributes::Col)
|
122
|
+
super
|
123
|
+
end
|
124
|
+
|
125
|
+
def data(**attributes)
|
126
|
+
__validate__(attributes, Attributes::Data)
|
127
|
+
super
|
128
|
+
end
|
129
|
+
|
130
|
+
def datalist(**attributes)
|
131
|
+
__validate__(attributes, Attributes::Global)
|
132
|
+
super
|
133
|
+
end
|
134
|
+
|
135
|
+
def dd(**attributes)
|
136
|
+
__validate__(attributes, Attributes::Global)
|
137
|
+
super
|
138
|
+
end
|
139
|
+
|
140
|
+
def del(**attributes)
|
141
|
+
__validate__(attributes, Attributes::Del)
|
142
|
+
super
|
143
|
+
end
|
144
|
+
|
145
|
+
def details(**attributes)
|
146
|
+
__validate__(attributes, Attributes::Details)
|
147
|
+
super
|
148
|
+
end
|
149
|
+
|
150
|
+
def dfn(**attributes)
|
151
|
+
__validate__(attributes, Attributes::Dfn)
|
152
|
+
super
|
153
|
+
end
|
154
|
+
|
155
|
+
def dialog(**attributes)
|
156
|
+
__validate__(attributes, Attributes::Dialog)
|
157
|
+
super
|
158
|
+
end
|
159
|
+
|
160
|
+
def div(**attributes)
|
161
|
+
__validate__(attributes, Attributes::Div)
|
162
|
+
super
|
163
|
+
end
|
164
|
+
|
165
|
+
def dl(**attributes)
|
166
|
+
__validate__(attributes, Attributes::Global)
|
167
|
+
super
|
168
|
+
end
|
169
|
+
|
170
|
+
def dt(**attributes)
|
171
|
+
__validate__(attributes, Attributes::Global)
|
172
|
+
super
|
173
|
+
end
|
174
|
+
|
175
|
+
def em(**attributes)
|
176
|
+
__validate__(attributes, Attributes::Global)
|
177
|
+
super
|
178
|
+
end
|
179
|
+
|
180
|
+
def embed(**attributes)
|
181
|
+
__validate__(attributes, Attributes::Embed)
|
182
|
+
super
|
183
|
+
end
|
184
|
+
|
185
|
+
def fencedframe(**attributes)
|
186
|
+
__validate__(attributes, Attributes::Fencedframe)
|
187
|
+
super
|
188
|
+
end
|
189
|
+
|
190
|
+
def fieldset(**attributes)
|
191
|
+
__validate__(attributes, Attributes::Fieldset)
|
192
|
+
super
|
193
|
+
end
|
194
|
+
|
195
|
+
def figcaption(**attributes)
|
196
|
+
__validate__(attributes, Attributes::Global)
|
197
|
+
super
|
198
|
+
end
|
199
|
+
|
200
|
+
def figure(**attributes)
|
201
|
+
__validate__(attributes, Attributes::Global)
|
202
|
+
super
|
203
|
+
end
|
204
|
+
|
205
|
+
def footer(**attributes)
|
206
|
+
__validate__(attributes, Attributes::Global)
|
207
|
+
super
|
208
|
+
end
|
209
|
+
|
210
|
+
def form(**attributes)
|
211
|
+
__validate__(attributes, Attributes::Form)
|
212
|
+
super
|
213
|
+
end
|
214
|
+
|
215
|
+
def h1(**attributes)
|
216
|
+
__validate__(attributes, Attributes::Global)
|
217
|
+
super
|
218
|
+
end
|
219
|
+
|
220
|
+
def h2(**attributes)
|
221
|
+
__validate__(attributes, Attributes::Global)
|
222
|
+
super
|
223
|
+
end
|
224
|
+
|
225
|
+
def h3(**attributes)
|
226
|
+
__validate__(attributes, Attributes::Global)
|
227
|
+
super
|
228
|
+
end
|
229
|
+
|
230
|
+
def h4(**attributes)
|
231
|
+
__validate__(attributes, Attributes::Global)
|
232
|
+
super
|
233
|
+
end
|
234
|
+
|
235
|
+
def h5(**attributes)
|
236
|
+
__validate__(attributes, Attributes::Global)
|
237
|
+
super
|
238
|
+
end
|
239
|
+
|
240
|
+
def h6(**attributes)
|
241
|
+
__validate__(attributes, Attributes::Global)
|
242
|
+
super
|
243
|
+
end
|
244
|
+
|
245
|
+
def head(**attributes)
|
246
|
+
__validate__(attributes, Attributes::Head)
|
247
|
+
super
|
248
|
+
end
|
249
|
+
|
250
|
+
def header(**attributes)
|
251
|
+
__validate__(attributes, Attributes::Global)
|
252
|
+
super
|
253
|
+
end
|
254
|
+
|
255
|
+
def hgroup(**attributes)
|
256
|
+
__validate__(attributes, Attributes::Global)
|
257
|
+
super
|
258
|
+
end
|
259
|
+
|
260
|
+
def hr(**attributes)
|
261
|
+
__validate__(attributes, Attributes::Hr)
|
262
|
+
super
|
263
|
+
end
|
264
|
+
|
265
|
+
def html(**attributes)
|
266
|
+
__validate__(attributes, Attribute::HTML)
|
267
|
+
super
|
268
|
+
end
|
269
|
+
|
270
|
+
def i(**attributes)
|
271
|
+
__validate__(attributes, Attributes::Global)
|
272
|
+
super
|
273
|
+
end
|
274
|
+
|
275
|
+
def iframe(**attributes)
|
276
|
+
__validate__(attributes, Attributes::Iframe)
|
277
|
+
super
|
278
|
+
end
|
279
|
+
|
280
|
+
def img(**attributes)
|
281
|
+
__validate__(attributes, Attributes::Img)
|
282
|
+
super
|
283
|
+
end
|
284
|
+
|
285
|
+
def input(type:, name:, **attributes)
|
286
|
+
# TODO: handle non existing type
|
287
|
+
type = type.tr("-", "_").to_sym if String === type
|
288
|
+
|
289
|
+
__validate__({ type:, name:, **attributes }, Attributes::Input[type])
|
290
|
+
super
|
291
|
+
end
|
292
|
+
|
293
|
+
def ins(**attributes)
|
294
|
+
__validate__(attributes, Attributes::Ins)
|
295
|
+
super
|
296
|
+
end
|
297
|
+
|
298
|
+
def kbd(**attributes)
|
299
|
+
__validate__(attributes, Attributes::Global)
|
300
|
+
super
|
301
|
+
end
|
302
|
+
|
303
|
+
def label(**attributes)
|
304
|
+
__validate__(attributes, Attributes::Label)
|
305
|
+
super
|
306
|
+
end
|
307
|
+
|
308
|
+
def legend(**attributes)
|
309
|
+
__validate__(attributes, Attributes::Global)
|
310
|
+
super
|
311
|
+
end
|
312
|
+
|
313
|
+
def li(**attributes)
|
314
|
+
__validate__(attributes, Attributes::Li)
|
315
|
+
super
|
316
|
+
end
|
317
|
+
|
318
|
+
def link(**attributes)
|
319
|
+
__validate__(attributes, Attributes::Link)
|
320
|
+
super
|
321
|
+
end
|
322
|
+
|
323
|
+
def main(**attributes)
|
324
|
+
__validate__(attributes, Attributes::Global)
|
325
|
+
super
|
326
|
+
end
|
327
|
+
|
328
|
+
def map(**attributes)
|
329
|
+
__validate__(attributes, Attributes::Map)
|
330
|
+
super
|
331
|
+
end
|
332
|
+
|
333
|
+
def mark(**attributes)
|
334
|
+
__validate__(attributes, Attributes::Global)
|
335
|
+
super
|
336
|
+
end
|
337
|
+
|
338
|
+
def menu(**attributes)
|
339
|
+
__validate__(attributes, Attributes::Global)
|
340
|
+
super
|
341
|
+
end
|
342
|
+
|
343
|
+
def meta(**attributes)
|
344
|
+
__validate__(attributes, Attributes::Meta)
|
345
|
+
super
|
346
|
+
end
|
347
|
+
|
348
|
+
def meter(**attributes)
|
349
|
+
__validate__(attributes, Attributes::Meter)
|
350
|
+
super
|
351
|
+
end
|
352
|
+
|
353
|
+
def nav(**attributes)
|
354
|
+
__validate__(attributes, Attributes::Global)
|
355
|
+
super
|
356
|
+
end
|
357
|
+
|
358
|
+
def noscript(**attributes)
|
359
|
+
__validate__(attributes, Attributes::Global)
|
360
|
+
super
|
361
|
+
end
|
362
|
+
|
363
|
+
def object(**attributes)
|
364
|
+
__validate__(attributes, Attributes::Object)
|
365
|
+
super
|
366
|
+
end
|
367
|
+
|
368
|
+
def ol(**attributes)
|
369
|
+
__validate__(attributes, Attributes::Ol)
|
370
|
+
super
|
371
|
+
end
|
372
|
+
|
373
|
+
def optgroup(**attributes)
|
374
|
+
__validate__(attributes, Attributes::Global)
|
375
|
+
super
|
376
|
+
end
|
377
|
+
|
378
|
+
def output(**attributes)
|
379
|
+
__validate__(attributes, Attributes::Output)
|
380
|
+
super
|
381
|
+
end
|
382
|
+
|
383
|
+
def p(**attributes)
|
384
|
+
__validate__(attributes, Attributes::Global)
|
385
|
+
super
|
386
|
+
end
|
387
|
+
|
388
|
+
def picture(**attributes)
|
389
|
+
__validate__(attributes, Attributes::Global)
|
390
|
+
super
|
391
|
+
end
|
392
|
+
|
393
|
+
def pre(**attributes)
|
394
|
+
__validate__(attributes, Attributes::Pre)
|
395
|
+
end
|
396
|
+
|
397
|
+
def progress(**attributes)
|
398
|
+
__validate__(attributes, Attributes::Progress)
|
399
|
+
super
|
400
|
+
end
|
401
|
+
|
402
|
+
def q(**attributes)
|
403
|
+
__validate__(attributes, Attributes::Q)
|
404
|
+
super
|
405
|
+
end
|
406
|
+
|
407
|
+
def rp(**attributes)
|
408
|
+
__validate__(attributes, Attributes::Global)
|
409
|
+
super
|
410
|
+
end
|
411
|
+
|
412
|
+
def rt(**attributes)
|
413
|
+
__validate__(attributes, Attributes::Global)
|
414
|
+
super
|
415
|
+
end
|
416
|
+
|
417
|
+
def ruby(**attributes)
|
418
|
+
__validate__(attributes, Attributes::Global)
|
419
|
+
super
|
420
|
+
end
|
421
|
+
|
422
|
+
def s(**attributes)
|
423
|
+
__validate__(attributes, Attributes::Global)
|
424
|
+
super
|
425
|
+
end
|
426
|
+
|
427
|
+
def samp(**attributes)
|
428
|
+
__validate__(attributes, Attributes::Global)
|
429
|
+
super
|
430
|
+
end
|
431
|
+
|
432
|
+
def script(**attributes)
|
433
|
+
__validate__(attributes, Attributes::Script)
|
434
|
+
super
|
435
|
+
end
|
436
|
+
|
437
|
+
def search(**attributes)
|
438
|
+
__validate__(attributes, Attributes::Global)
|
439
|
+
end
|
440
|
+
|
441
|
+
def section(**attributes)
|
442
|
+
__validate__(attributes, Attributes::Global)
|
443
|
+
super
|
444
|
+
end
|
445
|
+
|
446
|
+
def select(**attributes)
|
447
|
+
__validate__(attributes, Attributes::Select)
|
448
|
+
super
|
449
|
+
end
|
450
|
+
|
451
|
+
def slot(**attributes)
|
452
|
+
__validate__(attributes, Attributes::Slot)
|
453
|
+
super
|
454
|
+
end
|
455
|
+
|
456
|
+
def small(**attributes)
|
457
|
+
__validate__(attributes, Attributes::Global)
|
458
|
+
super
|
459
|
+
end
|
460
|
+
|
461
|
+
def source(**attributes)
|
462
|
+
__validate__(attributes, Attributes::Source)
|
463
|
+
super
|
464
|
+
end
|
465
|
+
|
466
|
+
def span(**attributes)
|
467
|
+
__validate__(attributes, Attributes::Global)
|
468
|
+
super
|
469
|
+
end
|
470
|
+
|
471
|
+
def strong(**attributes)
|
472
|
+
__validate__(attributes, Attributes::Global)
|
473
|
+
super
|
474
|
+
end
|
475
|
+
|
476
|
+
def style(**attributes)
|
477
|
+
__validate__(attributes, Attributes::Style)
|
478
|
+
super
|
479
|
+
end
|
480
|
+
|
481
|
+
def sub(**attributes)
|
482
|
+
__validate__(attributes, Attributes::Global)
|
483
|
+
super
|
484
|
+
end
|
485
|
+
|
486
|
+
def summary(**attributes)
|
487
|
+
__validate__(attributes, Attributes::Global)
|
488
|
+
super
|
489
|
+
end
|
490
|
+
|
491
|
+
def sup(**attributes)
|
492
|
+
__validate__(attributes, Attributes::Global)
|
493
|
+
super
|
494
|
+
end
|
495
|
+
|
496
|
+
def table(**attributes)
|
497
|
+
__validate__(attributes, Attributes::Table)
|
498
|
+
super
|
499
|
+
end
|
500
|
+
|
501
|
+
def tbody(**attributes)
|
502
|
+
__validate__(attributes, Attributes::Tbody)
|
503
|
+
super
|
504
|
+
end
|
505
|
+
|
506
|
+
def td(**attributes)
|
507
|
+
__validate__(attributes, Attributes::Td)
|
508
|
+
super
|
509
|
+
end
|
510
|
+
|
511
|
+
def template(**attributes)
|
512
|
+
__validate__(attributes, Attributes::Template)
|
513
|
+
super
|
514
|
+
end
|
515
|
+
|
516
|
+
def textarea(**attributes)
|
517
|
+
__validate__(attributes, Attributes::Textarea)
|
518
|
+
super
|
519
|
+
end
|
520
|
+
|
521
|
+
def tfoot(**attributes)
|
522
|
+
__validate__(attributes, Attributes::Tfoot)
|
523
|
+
super
|
524
|
+
end
|
525
|
+
|
526
|
+
def th(**attributes)
|
527
|
+
__validate__(attributes, Attributes::Th)
|
528
|
+
super
|
529
|
+
end
|
530
|
+
|
531
|
+
def thead(**attributes)
|
532
|
+
__validate__(attributes, Attributes::Thead)
|
533
|
+
super
|
534
|
+
end
|
535
|
+
|
536
|
+
def time(**attributes)
|
537
|
+
__validate__(attributes, Attributes::Time)
|
538
|
+
super
|
539
|
+
end
|
540
|
+
|
541
|
+
def title(**attributes)
|
542
|
+
__validate__(attributes, Attributes::Title)
|
543
|
+
super
|
544
|
+
end
|
545
|
+
|
546
|
+
def tr(**attributes)
|
547
|
+
__validate__(attributes, Attributes::Tr)
|
548
|
+
super
|
549
|
+
end
|
550
|
+
|
551
|
+
def track(**attributes)
|
552
|
+
__validate__(attributes, Attributes::Track)
|
553
|
+
super
|
554
|
+
end
|
555
|
+
|
556
|
+
def tt(**attributes)
|
557
|
+
__validate__(attributes, Attributes::Global)
|
558
|
+
super
|
559
|
+
end
|
560
|
+
|
561
|
+
def u(**attributes)
|
562
|
+
__validate__(attributes, Attributes::Global)
|
563
|
+
super
|
564
|
+
end
|
565
|
+
|
566
|
+
def ul(**attributes)
|
567
|
+
__validate__(attributes, Attributes::Ul)
|
568
|
+
super
|
569
|
+
end
|
570
|
+
|
571
|
+
def var(**attributes)
|
572
|
+
__validate__(attributes, Attributes::Global)
|
573
|
+
super
|
574
|
+
end
|
575
|
+
|
576
|
+
def video(**attributes)
|
577
|
+
__validate__(attributes, Attributes::Video)
|
578
|
+
super
|
579
|
+
end
|
580
|
+
|
581
|
+
def wbr(**attributes)
|
582
|
+
__validate__(attributes, Attributes::Global)
|
583
|
+
super
|
584
|
+
end
|
585
|
+
end
|
586
|
+
end
|