summaryrefslogtreecommitdiff
path: root/xml/xml-psi-impl/src/com/intellij/xml/util/documentation/html5table.xml
blob: 145b4e7e2c46e9e509d4a3a7c3e2b015d6493c94 (plain)
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
<html-property-table baseHelpRef="http://www.w3.org/html/wg/drafts/html/master/">
<tag name        = "article"
     helpref     = "sections.html#the-article-element"
     description = "Self-contained syndicatable or reusable composition"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "aside"
     helpref     = "sections.html#the-aside-element"
     description = "Sidebar for tangentially related content"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "audio"
     helpref     = "embedded-content.html#the-audio-element"
     description = "Audio player"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "bdi"
     helpref     = "text-level-semantics.html#the-bdi-element"
     description = "Text directionality isolation"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "canvas"
     helpref     = "scripting-1.html#the-canvas-element"
     description = "Scriptable bitmap canvas"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "data"
     helpref     = "text-level-semantics.html#the-data-element"
     description = "Machine-readable equivalent"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "datalist"
     helpref     = "forms.html#the-datalist-element"
     description = "Container for options for "
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "details"
     helpref     = "interactive-elements.html#the-details-element"
     description = "Disclosure control for hiding details"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "dialog"
     helpref     = "interactive-elements.html#the-dialog-element"
     description = "Dialog box or window"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "embed"
     helpref     = "embedded-content.html#the-embed-element"
     description = "Plugin"
     startTag    = "true"
     endTag      = "true"
     empty       = "true"
     dtd         = ""
/>
<tag name        = "figcaption"
     helpref     = "grouping-content.html#the-figcaption-element"
     description = "Caption for "
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "figure"
     helpref     = "grouping-content.html#the-figure-element"
     description = "Figure with optional caption"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "footer"
     helpref     = "sections.html#the-footer-element"
     description = "Footer for a page or section"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "header"
     helpref     = "sections.html#the-header-element"
     description = "Introductory or navigational aids for a page or section"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "keygen"
     helpref     = "forms.html#the-keygen-element"
     description = "Cryptographic key-pair generator form control"
     startTag    = "true"
     endTag      = "true"
     empty       = "true"
     dtd         = ""
/>
<tag name        = "main"
     helpref     = "grouping-content.html#the-main-element"
     description = "Main content of a document
    "
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "mark"
     helpref     = "text-level-semantics.html#the-mark-element"
     description = "Highlight"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "menuitem"
     helpref     = "interactive-elements.html#the-menuitem-element"
     description = "Menu command"
     startTag    = "true"
     endTag      = "true"
     empty       = "true"
     dtd         = ""
/>
<tag name        = "meter"
     helpref     = "forms.html#the-meter-element"
     description = "Gauge"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "nav"
     helpref     = "sections.html#the-nav-element"
     description = "Section with navigational links"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "output"
     helpref     = "forms.html#the-output-element"
     description = "Calculated output value"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "progress"
     helpref     = "forms.html#the-progress-element"
     description = "Progress bar"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "rb"
     helpref     = "text-level-semantics.html#the-rb-element"
     description = "Ruby base"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "rp"
     helpref     = "text-level-semantics.html#the-rp-element"
     description = "Parenthesis for ruby annotation text"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "rt"
     helpref     = "text-level-semantics.html#the-rt-element"
     description = "Ruby annotation text"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "rtc"
     helpref     = "text-level-semantics.html#the-rtc-element"
     description = "Ruby annotation text container"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "ruby"
     helpref     = "text-level-semantics.html#the-ruby-element"
     description = "Ruby annotation(s)"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "section"
     helpref     = "sections.html#the-section-element"
     description = "Generic document or application section"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "source"
     helpref     = "embedded-content.html#the-source-element"
     description = "Media source for "
     startTag    = "true"
     endTag      = "true"
     empty       = "true"
     dtd         = ""
/>
<tag name        = "summary"
     helpref     = "interactive-elements.html#the-summary-element"
     description = "Caption for "
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "template"
     helpref     = "scripting-1.html#the-template-element"
     description = "Template"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "time"
     helpref     = "text-level-semantics.html#the-time-element"
     description = "Machine-readable equivalent of date- or time-related data"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "track"
     helpref     = "embedded-content.html#the-track-element"
     description = "Timed text track"
     startTag    = "true"
     endTag      = "true"
     empty       = "true"
     dtd         = ""
/>
<tag name        = "video"
     helpref     = "embedded-content.html#the-video-element"
     description = "Video player"
     startTag    = "true"
     endTag      = "true"
     empty       = "false"
     dtd         = ""
/>
<tag name        = "wbr"
     helpref     = "text-level-semantics.html#the-wbr-element"
     description = "Line breaking opportunity"
     startTag    = "true"
     endTag      = "true"
     empty       = "true"
     dtd         = ""
/>
<attribute name        = "allowfullscreen"
           helpref     = "embedded-content.html#attr-iframe-allowfullscreen"
           description = "Whether to allow the iframe's contents to use requestFullscreen()"
           relatedTags = "iframe"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "async"
           helpref     = "scripting-1.html#attr-script-async"
           description = "Execute script asynchronously"
           relatedTags = "script"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "autocomplete"
           helpref     = "forms.html#attr-form-autocomplete"
           description = "Default setting for autofill feature for controls in the form"
           relatedTags = "form"
           dtd         = ""
           type        = "on; off"
           default     = "true"
/>
<attribute name        = "autocomplete"
           helpref     = "forms.html#attr-fe-autocomplete"
           description = "Hint for form autofill feature"
           relatedTags = "input; select; textarea"
           dtd         = ""
           type        = "Autofill field name and related tokens*"
           default     = "true"
/>
<attribute name        = "autofocus"
           helpref     = "forms.html#attr-fe-autofocus"
           description = "Automatically focus the form control when the page is loaded"
           relatedTags = "button; input; keygen; select; textarea"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "autoplay"
           helpref     = "embedded-content.html#attr-media-autoplay"
           description = "Hint that the media resource can be started automatically when the page is loaded"
           relatedTags = "audio; video"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "challenge"
           helpref     = "forms.html#attr-keygen-challenge"
           description = "String to package with the generated and signed public key"
           relatedTags = "keygen"
           dtd         = ""
           type        = "Text"
           default     = "true"
/>
<attribute name        = "command"
           helpref     = "interactive-elements.html#attr-menuitem-command"
           description = "Command definition"
           relatedTags = "menuitem"
           dtd         = ""
           type        = "ID*"
           default     = "true"
/>
<attribute name        = "contenteditable"
           helpref     = ""
           description = "Whether the element is editable"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "true; false"
           default     = "true"
/>
<attribute name        = "contextmenu"
           helpref     = ""
           description = "The element's context menu"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "ID*"
           default     = "true"
/>
<attribute name        = "controls"
           helpref     = "embedded-content.html#attr-media-controls"
           description = "Show user agent controls"
           relatedTags = "audio; video"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "crossorigin"
           helpref     = "embedded-content.html#attr-media-crossorigin"
           description = "How the element handles crossorigin requests"
           relatedTags = "audio; img; link; script; video"
           dtd         = ""
           type        = "anonymous; use-credentials"
           default     = "true"
/>
<attribute name        = "default"
           helpref     = "interactive-elements.html#attr-menuitem-default"
           description = "Mark the command as being a default command"
           relatedTags = "menuitem"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "default"
           helpref     = "embedded-content.html#attr-track-default"
           description = "Enable the track if no other text track is more suitable"
           relatedTags = "track"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "dirname"
           helpref     = "forms.html#attr-fe-dirname"
           description = "Name of form field to use for sending the element's directionality in form submission"
           relatedTags = "input; textarea"
           dtd         = ""
           type        = "Text*"
           default     = "true"
/>
<attribute name        = "download"
           helpref     = "links.html#attr-hyperlink-download"
           description = "Whether to download the resource instead of navigating to it, and its file name if so"
           relatedTags = "a; area"
           dtd         = ""
           type        = "Text"
           default     = "true"
/>
<attribute name        = "draggable"
           helpref     = ""
           description = "Whether the element is draggable"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "true; false"
           default     = "true"
/>
<attribute name        = "dropzone"
           helpref     = ""
           description = "Accepted item types for drag-and-drop"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of accepted types and drag feedback*"
           default     = "true"
/>
<attribute name        = "form"
           helpref     = "forms.html#attr-fae-form"
           description = "Associates the control with a form element"
           relatedTags = "button; fieldset; input; keygen; label; object; output; select; textarea"
           dtd         = ""
           type        = "ID*"
           default     = "true"
/>
<attribute name        = "formaction"
           helpref     = "forms.html#attr-fs-formaction"
           description = "URL to use for form submission"
           relatedTags = "button; input"
           dtd         = ""
           type        = "Valid non-empty URL potentially surrounded by spaces"
           default     = "true"
/>
<attribute name        = "formenctype"
           helpref     = "forms.html#attr-fs-formenctype"
           description = "Form data set encoding type to use for form submission"
           relatedTags = "button; input"
           dtd         = ""
           type        = "application/x-www-form-urlencoded; multipart/form-data; text/plain"
           default     = "true"
/>
<attribute name        = "formmethod"
           helpref     = "forms.html#attr-fs-formmethod"
           description = "HTTP method to use for form submission"
           relatedTags = "button; input"
           dtd         = ""
           type        = "GET; POST"
           default     = "true"
/>
<attribute name        = "formnovalidate"
           helpref     = "forms.html#attr-fs-formnovalidate"
           description = "Bypass form control validation for form submission"
           relatedTags = "button; input"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "formtarget"
           helpref     = "forms.html#attr-fs-formtarget"
           description = "Browsing context for form submission"
           relatedTags = "button; input"
           dtd         = ""
           type        = "Valid browsing context name or keyword"
           default     = "true"
/>
<attribute name        = "hidden"
           helpref     = ""
           description = "Whether the element is relevant"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "high"
           helpref     = "forms.html#attr-meter-high"
           description = "Low limit of high range"
           relatedTags = "meter"
           dtd         = ""
           type        = "Valid floating-point number*"
           default     = "true"
/>
<attribute name        = "icon"
           helpref     = "interactive-elements.html#attr-menuitem-icon"
           description = "Icon for the command"
           relatedTags = "menuitem"
           dtd         = ""
           type        = "Valid non-empty URL potentially surrounded by spaces"
           default     = "true"
/>
<attribute name        = "inputmode"
           helpref     = "forms.html#attr-fe-inputmode"
           description = "Hint for selecting an input modality"
           relatedTags = "input; textarea"
           dtd         = ""
           type        = "verbatim"
           default     = "true"
/>
<attribute name        = "itemid"
           helpref     = ""
           description = "Global identifier for a microdata item"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "Valid URL potentially surrounded by spaces"
           default     = "true"
/>
<attribute name        = "itemprop"
           helpref     = ""
           description = "Property names of a microdata item"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "Unordered set of unique space-separated tokens, case-sensitive, consisting of valid absolute URLs, defined property names, or text*"
           default     = "true"
/>
<attribute name        = "itemref"
           helpref     = ""
           description = "Referenced elements"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "Unordered set of unique space-separated tokens, case-sensitive, consisting of IDs*"
           default     = "true"
/>
<attribute name        = "itemscope"
           helpref     = ""
           description = "Introduces a microdata item"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "itemtype"
           helpref     = ""
           description = "Item types of a microdata item"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "Unordered set of unique space-separated tokens, case-sensitive, consisting of valid absolute URL*"
           default     = "true"
/>
<attribute name        = "keytype"
           helpref     = "forms.html#attr-keygen-keytype"
           description = "The type of cryptographic key to generate"
           relatedTags = "keygen"
           dtd         = ""
           type        = "Text*"
           default     = "true"
/>
<attribute name        = "kind"
           helpref     = "embedded-content.html#attr-track-kind"
           description = "The type of text track"
           relatedTags = "track"
           dtd         = ""
           type        = "subtitles"
           default     = "true"
/>
<attribute name        = "list"
           helpref     = "forms.html#attr-input-list"
           description = "List of autocomplete options"
           relatedTags = "input"
           dtd         = ""
           type        = "ID*"
           default     = "true"
/>
<attribute name        = "loop"
           helpref     = "embedded-content.html#attr-media-loop"
           description = "Whether to loop the media resource"
           relatedTags = "audio; video"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "low"
           helpref     = "forms.html#attr-meter-low"
           description = "High limit of low range"
           relatedTags = "meter"
           dtd         = ""
           type        = "Valid floating-point number*"
           default     = "true"
/>
<attribute name        = "manifest"
           helpref     = "semantics.html#attr-html-manifest"
           description = "Application cache manifest"
           relatedTags = "html"
           dtd         = ""
           type        = "Valid non-empty URL potentially surrounded by spaces"
           default     = "true"
/>
<attribute name        = "max"
           helpref     = "forms.html#attr-input-max"
           description = "Maximum value"
           relatedTags = "input"
           dtd         = ""
           type        = "Varies*"
           default     = "true"
/>
<attribute name        = "max"
           helpref     = "forms.html#attr-meter-max"
           description = "Upper bound of range"
           relatedTags = "meter; progress"
           dtd         = ""
           type        = "Valid floating-point number*"
           default     = "true"
/>
<attribute name        = "mediagroup"
           helpref     = "embedded-content.html#attr-media-mediagroup"
           description = "Groups media elements together with an implicit MediaController"
           relatedTags = "audio; video"
           dtd         = ""
           type        = "Text"
           default     = "true"
/>
<attribute name        = "menu"
           helpref     = "forms.html#attr-button-menu"
           description = "Specifies the element's designated pop-up menu"
           relatedTags = "button"
           dtd         = ""
           type        = "ID*"
           default     = "true"
/>
<attribute name        = "min"
           helpref     = "forms.html#attr-input-min"
           description = "Minimum value"
           relatedTags = "input"
           dtd         = ""
           type        = "Varies*"
           default     = "true"
/>
<attribute name        = "min"
           helpref     = "forms.html#attr-meter-min"
           description = "Lower bound of range"
           relatedTags = "meter"
           dtd         = ""
           type        = "Valid floating-point number*"
           default     = "true"
/>
<attribute name        = "minlength"
           helpref     = "forms.html#attr-input-minlength"
           description = "Minimum length of value"
           relatedTags = "input; textarea"
           dtd         = ""
           type        = "Valid non-negative integer"
           default     = "true"
/>
<attribute name        = "muted"
           helpref     = "embedded-content.html#attr-media-muted"
           description = "Whether to mute the media resource by default"
           relatedTags = "audio; video"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "novalidate"
           helpref     = "forms.html#attr-fs-novalidate"
           description = "Bypass form control validation for form submission"
           relatedTags = "form"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "open"
           helpref     = "interactive-elements.html#attr-details-open"
           description = "Whether the details are visible"
           relatedTags = "details"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "open"
           helpref     = "interactive-elements.html#attr-dialog-open"
           description = "Whether the dialog box is showing"
           relatedTags = "dialog"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "optimum"
           helpref     = "forms.html#attr-meter-optimum"
           description = "Optimum value in gauge"
           relatedTags = "meter"
           dtd         = ""
           type        = "Valid floating-point number*"
           default     = "true"
/>
<attribute name        = "pattern"
           helpref     = "forms.html#attr-input-pattern"
           description = "Pattern to be matched by the form control's value"
           relatedTags = "input"
           dtd         = ""
           type        = "Regular expression matching the JavaScript Pattern production"
           default     = "true"
/>
<attribute name        = "placeholder"
           helpref     = "forms.html#attr-input-placeholder"
           description = "User-visible label to be placed within the form control"
           relatedTags = "input; textarea"
           dtd         = ""
           type        = "Text*"
           default     = "true"
/>
<attribute name        = "poster"
           helpref     = "embedded-content.html#attr-video-poster"
           description = "Poster frame to show prior to video playback"
           relatedTags = "video"
           dtd         = ""
           type        = "Valid non-empty URL potentially surrounded by spaces"
           default     = "true"
/>
<attribute name        = "preload"
           helpref     = "embedded-content.html#attr-media-preload"
           description = "Hints how much buffering the media resource will likely need"
           relatedTags = "audio; video"
           dtd         = ""
           type        = "none"
           default     = "true"
/>
<attribute name        = "radiogroup"
           helpref     = "interactive-elements.html#attr-menuitem-radiogroup"
           description = "Name of group of commands to treat as a radio button group"
           relatedTags = "menuitem"
           dtd         = ""
           type        = "Text"
           default     = "true"
/>
<attribute name        = "required"
           helpref     = "forms.html#attr-input-required"
           description = "Whether the control is required for form submission"
           relatedTags = "input; select; textarea"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "reversed"
           helpref     = "grouping-content.html#attr-ol-reversed"
           description = "Number the list backwards"
           relatedTags = "ol"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "sandbox"
           helpref     = "embedded-content.html#attr-iframe-sandbox"
           description = "Security rules for nested content"
           relatedTags = "iframe"
           dtd         = ""
           type        = "Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of"
           default     = "true"
/>
<attribute name        = "spellcheck"
           helpref     = ""
           description = "Whether the element is to have its spelling and grammar checked"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "true; false"
           default     = "true"
/>
<attribute name        = "scoped"
           helpref     = "document-metadata.html#attr-style-scoped"
           description = "Whether the styles apply to the entire document or just the parent subtree"
           relatedTags = "style"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "seamless"
           helpref     = "embedded-content.html#attr-iframe-seamless"
           description = "Whether to apply the document's styles to the nested content"
           relatedTags = "iframe"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "sizes"
           helpref     = "links.html#attr-link-sizes"
           description = "Sizes of the icons (for rel=icon)"
           relatedTags = "link"
           dtd         = ""
           type        = "Unordered set of unique space-separated tokens, ASCII case-insensitive, consisting of sizes*"
           default     = "true"
/>
<attribute name        = "sortable"
           helpref     = "tabular-data.html#attr-table-sortable"
           description = "Enables a sorting interface for the table"
           relatedTags = "table"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "sorted"
           helpref     = "tabular-data.html#attr-th-sorted"
           description = "Column sort direction and ordinality"
           relatedTags = "th"
           dtd         = ""
           type        = "Set of space-separated tokens, ASCII case-insensitive, consisting of neither, one, or both of reversed and a valid non-negative integer greater than zero"
           default     = "true"
/>
<attribute name        = "srcdoc"
           helpref     = "embedded-content.html#attr-iframe-srcdoc"
           description = "A document to render in the iframe"
           relatedTags = "iframe"
           dtd         = ""
           type        = "The source of an iframe srcdoc document*"
           default     = "true"
/>
<attribute name        = "srclang"
           helpref     = "embedded-content.html#attr-track-srclang"
           description = "Language of the text track"
           relatedTags = "track"
           dtd         = ""
           type        = "Valid BCP 47 language tag"
           default     = "true"
/>
<attribute name        = "srcset"
           helpref     = "embedded-content.html#attr-img-srcset"
           description = "Images to use in different situations (e.g. high-resolution displays, small monitors, etc)"
           relatedTags = "img"
           dtd         = ""
           type        = "Comma-separated list of image candidate strings"
           default     = "true"
/>
<attribute name        = "step"
           helpref     = "forms.html#attr-input-step"
           description = "Granularity to be matched by the form control's value"
           relatedTags = "input"
           dtd         = ""
           type        = "Valid floating-point number greater than zero, or any"
           default     = "true"
/>
<attribute name        = "translate"
           helpref     = ""
           description = "Whether the element is to be translated when the page is localized"
           relatedTags = "HTML elements"
           dtd         = ""
           type        = "yes; no"
           default     = "true"
/>
<attribute name        = "typemustmatch"
           helpref     = "embedded-content.html#attr-object-typemustmatch"
           description = "Whether the type attribute and the Content-Type value need to match for the resource to be used"
           relatedTags = "object"
           dtd         = ""
           type        = "Boolean attribute"
           default     = "true"
/>
<attribute name        = "wrap"
           helpref     = "forms.html#attr-textarea-wrap"
           description = "How the value of the form control is to be wrapped for form submission"
           relatedTags = "textarea"
           dtd         = ""
           type        = "soft"
           default     = "true"
/>
</html-property-table>