-
Notifications
You must be signed in to change notification settings - Fork 8
/
HTML-form-elements-ja.html
9386 lines (8513 loc) · 251 KB
/
HTML-form-elements-ja.html
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
<!DOCTYPE html><html lang="ja"><head><meta charset="utf-8">
<title>HTML Standard — Forms (各種フォーム用の要素)(日本語訳)</title>
<link rel="stylesheet" href="common.css" type="text/css">
<link rel="stylesheet" href="common-whatwg.css" type="text/css">
<script src="common0.js"></script>
<script src="common1.js" async></script>
<script>
Util.ready = function(){
const source_data = {
toc_main: 'MAIN',
generate: expand
};
source_data.collectParts = (parts) => {
const tbody = C('tbody');
tbody.innerHTML = PAGE_DATA.form_category_data
.replace(/\./g, '<td>')
.replace(/\d/g, '<td>●')
.replace(/\n([\w\-]+): */g,
'\n<tr><th><code class="element">$1</code>'
);
parts._form_category_body = tbody;
delete PAGE_DATA.form_category_data;
}
Util.switchWordsInit(source_data);
}
function expand(){
const class_map = this.class_map;
const tag_map = this.tag_map;
const link_map = this.link_map;
let context = '';
return this.html.replace(
/%[\w\-~一-鿆あ-ん]+|``?(.+?)([$@\^])(\w*)/g,
create_html
);
function create_html(match, key, indicator, klass){
if(!key) {//%
return `<var>${match.slice(1)}</var>`;
}
let href = '';
let href1 = '';
{
const n = key.indexOf('@');
if(n > 0) {
href1 = key.slice(n + 1);
key = key.slice(0, n);
}
}
let text = key;
switch(klass){
case 'r':
text = `[${key}]`;
href = `HTML-references.html#refs${key}`;
break;
case 'l':
text = `"<code class="literal">${text}</code>"`;
break;
case 'eI':
case 'm':
const n = text.indexOf('(');
if(n > 0){
key = text.slice(0, n);
text = key + text.slice(n).replace(/\w+/g, '<var>$&</var>');
}
break;
case 'U':
text = `U+${key}`;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`
break;
case 'en':
text = `<span lang="en">${key}</span>`;
break;
case 'AA':
return `<a href="~HTMLARIA#el-${key}">作者~向け</a>/<a href="~HTMLAAM#el-${key}">実装者~向け</a>`;
break;
case 'obsMb':
text = '廃用にされた~memberもある';
href= `~HTMLLS/obsolete.html#${key}-partial`;
break;
}
let tag = tag_map[klass];
if(tag) {
let classname = class_map[klass];
classname = classname ? ` class="${classname}"` : '';
text = `<${tag}${classname}>${text}</${tag}>`;
}
if(match[1] === '`') {//文脈依存
if(indicator === '^'){
context = key;
} else {
klass = `${klass}!${context}`;
}
}
if(indicator !== '^'){
href = href1 || link_map[ klass ? `${klass}.${key}` : key ] || href;
if(!href){
console.log(match); // check error
return match;
}
switch(indicator){
case '$':
text = `<a href="${href}">${text}</a>`;
break;
case '@':
text = `<dfn id="${href.slice(1)}">${text}</dfn>`;
break;
}
}
return text;
}
}
</script>
<!--%form 分類データ
1 = own可
2 = listed
3 = submit可
4 = reset可
5 = label可
-->
<script type="text/plain" id="_source_data">
●●options
spec_date:2024-12-17
trans_update:2024-12-27
source_checked:230626
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/form-elements.html
abbr_url:HEforms
nav_prev:HTML-forms-intro-ja.html
nav_next:HEinput
trans_1st_pub:2016-09-25
●●class_map
e:element
a:attr
p:property
et:event-type
st:attr-state
v:value
E:error
M:method
U:code-point
op:op
obsMb:comment
cn:cp-name
●●tag_map
I:code
m:code
eI:code
E:code
c:code
e:code
a:code
M:code
et:code
st:i
p:code
v:code
U:span
op:span
i:i
em:em
obsMb:span
cn:span
●●original_urls
introduction-4:https://html.spec.whatwg.org/multipage/forms.html
categories:https://html.spec.whatwg.org/multipage/forms.html
the-form-element:https://html.spec.whatwg.org/multipage/forms.html
the-label-element:https://html.spec.whatwg.org/multipage/forms.html
the-input-element:https://html.spec.whatwg.org/multipage/input.html
●●form_category_data
button: 123.56
fieldset: 12..5.
input: 123456
meter: .....6
object: 123...
output: 12.456
progress: .....6
select: 123456
textarea: 123456
img: 1.....
x-custom: 1234.6
●●original_id_map
●●mdn_urls
the-button-element:HTML/Element/button
the-datalist-element:HTML/Element/datalist
the-fieldset-element:HTML/Element/fieldset
the-form-element:HTML/Element/form
the-legend-element:HTML/Element/legend
the-label-element:HTML/Element/label
the-meter-element:HTML/Element/meter
the-output-element:HTML/Element/output
the-optgroup-element:HTML/Element/optgroup
the-option-element:HTML/Element/option
the-progress-element:HTML/Element/progress
the-select-element:HTML/Element/select
the-textarea-element:HTML/Element/textarea
htmlformelement:API/HTMLFormElement
htmllabelelement:API/HTMLLabelElement
htmlbuttonelement:API/HTMLButtonElement
htmlselectelement:API/HTMLSelectElement
htmldatalistelement:API/HTMLDataListElement
htmloptgroupelement:API/HTMLOptGroupElement
htmloptionelement:API/HTMLOptionElement
htmltextareaelement:API/HTMLTextAreaElement
htmloutputelement:API/HTMLOutputElement
htmlprogresselement:API/HTMLProgressElement
htmlmeterelement:API/HTMLMeterElement
htmlfieldsetelement:API/HTMLFieldSetElement
htmllegendelement:API/HTMLLegendElement
●●link_map
●IDL, event
CEReactions:~HEcustom#cereactions
HTMLConstructor:~HTMLdom#htmlconstructor
LegacyOverrideBuiltIns:~WEBIDLjs#LegacyOverrideBuiltIns
LegacyUnenumerableNamedProperties:~WEBIDLjs#LegacyUnenumerableNamedProperties
LegacyFactoryFunction:~WEBIDLjs#LegacyFactoryFunction
LegacyNullToEmptyString:~WEBIDLjs#LegacyNullToEmptyString
I.DOMException:~WEBIDL#idl-DOMException
E.HierarchyRequestError:~WEBIDL#hierarchyrequesterror
E.NotFoundError:~WEBIDL#notfounderror
E.NotSupportedError:~WEBIDL#notsupportederror
E.InvalidStateError:~WEBIDL#invalidstateerror
E.NotAllowedError:~WEBIDL#notallowederror
E.SecurityError:~WEBIDL#securityerror
E.TypeError:~TC39#sec-native-error-types-used-in-this-standard-typeerror
I.HTMLFormElement:#htmlformelement
I.HTMLLabelElement:#htmllabelelement
I.HTMLButtonElement:#htmlbuttonelement
I.HTMLSelectElement:#htmlselectelement
I.HTMLDataListElement:#htmldatalistelement
I.HTMLOptGroupElement:#htmloptgroupelement
I.HTMLOptionElement:#htmloptionelement
I.HTMLTextAreaElement:#htmltextareaelement
I.HTMLOutputElement:#htmloutputelement
I.HTMLProgressElement:#htmlprogresselement
I.HTMLMeterElement:#htmlmeterelement
I.HTMLFieldSetElement:#htmlfieldsetelement
I.HTMLLegendElement:#htmllegendelement
I.HTMLMenuElement:~HEgrouping#htmlmenuelement
I.ElementInternals:~HEcustom#elementinternals
I.PopoverInvokerElement:~HTMLpopover#popoverinvokerelement
I.SelectionMode:~HTMLforms#selectionmode
I.ValidityState:~HTMLforms#validitystate
I.ChildNode:~DOM4#interface-childnode
I.DOMTokenList:~DOM4#interface-domtokenlist
I.Element:~DOM4#interface-element
I.HTMLCollection:~DOM4#interface-htmlcollection
I.HTMLElement:~HTMLdom#htmlelement
I.HTMLFormControlsCollection:~HTMLcdom#htmlformcontrolscollection
I.HTMLOptionsCollection:~HTMLcdom#htmloptionscollection
I.RadioNodeList:~HTMLcdom#radionodelist
I.NodeList:~DOM4#interface-nodelist
I.Text:~DOM4#interface-text
m.value:~DOM4#dom-domtokenlist-value
m.createElement:~DOM4#dom-document-createelement
m.bubbles:~DOM4#dom-event-bubbles
m.composed:~DOM4#dom-event-composed → 入力~eventを発火する
m.document.forms:~HTMLdom#dom-document-forms
m.forms:~HTMLdom#dom-document-forms
m.item:~DOM4#dom-htmlcollection-item
m.namedItem:~DOM4#dom-htmlcollection-nameditem
m.textContent:~DOM4#dom-node-textcontent
m.length:~HTMLcdom#dom-htmloptionscollection-length
m.add:~HTMLcdom#dom-htmloptionscollection-add
m.remove:~HTMLcdom#dom-htmloptionscollection-remove
m.labels:#dom-lfe-labels
m.labels:#dom-elementinternals-labels
m.select:~HTMLforms#dom-textarea/input-select
m.selectionDirection:~HTMLforms#dom-textarea/input-selectiondirection
m.selectionEnd:~HTMLforms#dom-textarea/input-selectionend
m.selectionStart:~HTMLforms#dom-textarea/input-selectionstart
m.setRangeText:~HTMLforms#dom-textarea/input-setrangetext
m.setSelectionRange:~HTMLforms#dom-textarea/input-setselectionrange
m.checkValidity:~HTMLforms#dom-cva-checkvalidity
m.reportValidity:~HTMLforms#dom-cva-reportvalidity
m.setCustomValidity:~HTMLforms#dom-cva-setcustomvalidity
m.validationMessage:~HTMLforms#dom-cva-validationmessage
m.validity:~HTMLforms#dom-cva-validity
m.willValidate:~HTMLforms#dom-cva-willvalidate
m.action:~HTMLforms#dom-fs-action
m.encoding:~HTMLforms#dom-fs-encoding
m.enctype:~HTMLforms#dom-fs-enctype
m.formAction:~HTMLforms#dom-fs-formaction
m.formEnctype:~HTMLforms#dom-fs-formenctype
m.formMethod:~HTMLforms#dom-fs-formmethod
m.formNoValidate:~HTMLforms#dom-fs-formnovalidate
m.formTarget:~HTMLforms#dom-fs-formtarget
m.method:~HTMLforms#dom-fs-method
m.noValidate:~HTMLforms#dom-fs-novalidate
m.target:~HTMLforms#dom-fs-target
m.autocomplete:~HTMLautofill#dom-fe-autocomplete
m.disabled:~HTMLforms#dom-fe-disabled
m.name:~HTMLforms#dom-fe-name
m.form:~HTMLforms#dom-fae-form
m.form.elements:#dom-form-elements
m.fieldset.elements:#dom-fieldset-elements
m!form.acceptCharset:#dom-form-acceptcharset
m!form.autocomplete:#dom-form-autocomplete
m!form.checkValidity:#dom-form-checkvalidity
m!form.elements:#dom-form-elements
m!form.length:#dom-form-length
m!form.name:#dom-form-name
m!form.rel:#dom-form-rel
m!form.relList:#dom-form-rellist
m!form.reportValidity:#dom-form-reportvalidity
m!form.reset:#dom-form-reset
m!form.requestSubmit:#dom-form-requestsubmit
m!form.submit:#dom-form-submit
m!form.getter:#dom-form-item
m!form.~getterN:#dom-form-nameditem
m!label.control:#dom-label-control
m!label.form:#dom-label-form
m!label.htmlFor:#dom-label-htmlfor
m!button.type:#dom-button-type
m!button.value:#dom-button-value
m!datalist.options:#dom-datalist-options
m!fieldset.disabled:#dom-fieldset-disabled
m!fieldset.elements:#dom-fieldset-elements
m!fieldset.type:#dom-fieldset-type
m!legend.form:#dom-legend-form
m!meter.high:#dom-meter-high
m!meter.low:#dom-meter-low
m!meter.max:#dom-meter-max
m!meter.min:#dom-meter-min
m!meter.optimum:#dom-meter-optimum
m!meter.value:#dom-meter-value
m!optgroup.disabled:#dom-optgroup-disabled
m!optgroup.label:#dom-optgroup-label
m!option.Option:#dom-option
m!option.defaultSelected:#dom-option-defaultselected
m!option.disabled:#dom-option-disabled
m!option.form:#dom-option-form
m!option.index:#dom-option-index
m!option.label:#dom-option-label
m!option.selected:#dom-option-selected
m!option.text:#dom-option-text
m!option.value:#dom-option-value
m!output.defaultValue:#dom-output-defaultvalue
m!output.htmlFor:#dom-output-htmlfor
m!output.type:#dom-output-type
m!output.value:#dom-output-value
m!progress.max:#dom-progress-max
m!progress.position:#dom-progress-position
m!progress.value:#dom-progress-value
m!select.add:#dom-select-add
m!select.item:#dom-select-item
m!select.length:#dom-select-length
m!select.multiple:#dom-select-multiple
m!select.namedItem:#dom-select-nameditem
m!select.options:#dom-select-options
m!select.remove:#dom-select-remove
m!select.required:#dom-select-required
m!select.selectedIndex:#dom-select-selectedindex
m!select.selectedOptions:#dom-select-selectedoptions
m!select.getter:#dom-select-getter
m!select.setter:#dom-select-setter
m!select.showPicker:~HEinput#dom-select-showpicker
m!select.size:#dom-select-size
m!select.type:#dom-select-type
m!select.value:#dom-select-value
m!textarea.cols:#dom-textarea-cols
m!textarea.defaultValue:#dom-textarea-defaultvalue
m!textarea.dirName:#dom-textarea-dirname
m!textarea.maxLength:#dom-textarea-maxlength
m!textarea.minLength:#dom-textarea-minlength
m!textarea.placeholder:#dom-textarea-placeholder
m!textarea.readOnly:#dom-textarea-readonly
m!textarea.required:#dom-textarea-required
m!textarea.rows:#dom-textarea-rows
m!textarea.textLength:#dom-textarea-textlength
m!textarea.type:#dom-textarea-type
m!textarea.value:#dom-textarea-value
m!textarea.wrap:#dom-textarea-wrap
eI.labels:#dom-elementinternals-labels
et.change:~HTMLindex#event-change
et.click:~UIEVENTS#event-type-click
et.input:~UIEVENTS#event-type-input
et.submit:~HTMLindex#event-submit
●e, a
e.form:#the-form-element
e.label:#the-label-element
e.button:#the-button-element
e.select:#the-select-element
e.datalist:#the-datalist-element
e.optgroup:#the-optgroup-element
e.option:#the-option-element
e.textarea:#the-textarea-element
e.output:#the-output-element
e.progress:#the-progress-element
e.meter:#the-meter-element
e.fieldset:#the-fieldset-element
e.legend:#the-legend-element
e.menu:~HEgrouping#the-menu-element
e.input:~HEinput#the-input-element
e.hr:~HEgrouping#the-hr-element
e.img:~HEimages#the-img-element
e.samp:~HEtextlevel#the-samp-element
e.script:~HEscripting#the-script-element
e.object:~HEembed#the-object-element
e.iframe:~HEembed#the-iframe-element
a.id:~HTMLdom#the-id-attribute
a.dir:~HTMLdom#attr-dir
a.title:~HTMLdom#attr-title
a.~nameI:~HTMLobs#attr-img-name
a.tabindex:~HTMLinteraction#attr-tabindex
a.autofocus:~HTMLinteraction#attr-fe-autofocus
a.autocapitalize:~HTMLinteraction#attr-autocapitalize
a.autocorrect:~HTMLinteraction#attr-autocorrect
a.autocomplete:~HTMLautofill#attr-fe-autocomplete
a.dirname:~HTMLforms#attr-fe-dirname
a.disabled:~HTMLforms#attr-fe-disabled
a.maxlength:~HTMLforms#attr-fe-maxlength
a.minlength:~HTMLforms#attr-fe-minlength
a.name:~HTMLforms#attr-fe-name
a.action:~HTMLforms#attr-fs-action
a.enctype:~HTMLforms#attr-fs-enctype
a.formaction:~HTMLforms#attr-fs-formaction
a.formenctype:~HTMLforms#attr-fs-formenctype
a.formmethod:~HTMLforms#attr-fs-formmethod
a.formnovalidate:~HTMLforms#attr-fs-formnovalidate
a.formtarget:~HTMLforms#attr-fs-formtarget
a.method:~HTMLforms#attr-fs-method
a.novalidate:~HTMLforms#attr-fs-novalidate
a.target:~HTMLforms#attr-fs-target
a.form:~HTMLforms#attr-fae-form
a.popovertarget:~HTMLpopover#attr-popovertarget
a.popovertargetaction:~HTMLpopover#attr-popovertargetaction
a.list:~HEinput#attr-input-list
a.type:~HEinput#attr-input-type
a!img.name
a!option.selected
a!option.name
a!optgroup.disabled
a!button.type:#attr-button-type
a!button.value:#attr-button-value
a!fieldset.disabled:#attr-fieldset-disabled
a!form.accept-charset:#attr-form-accept-charset
a!form.autocomplete:#attr-form-autocomplete
a!form.name:#attr-form-name
a!form.rel:#attr-form-rel
a!label.for:#attr-label-for
a!meter.high:#attr-meter-high
a!meter.low:#attr-meter-low
a!meter.max:#attr-meter-max
a!meter.min:#attr-meter-min
a!meter.optimum:#attr-meter-optimum
a!meter.value:#attr-meter-value
a!optgroup.disabled:#attr-optgroup-disabled
a!optgroup.label:#attr-optgroup-label
a!option.disabled:#attr-option-disabled
a!option.label:#attr-option-label
a!option.name:~HTMLobs#attr-option-name
a!option.selected:#attr-option-selected
a!option.value:#attr-option-value
a!output.for:#attr-output-for
a!progress.max:#attr-progress-max
a!progress.value:#attr-progress-value
a!select.multiple:#attr-select-multiple
a!select.required:#attr-select-required
a!select.size:#attr-select-size
a!textarea.cols:#attr-textarea-cols
a!textarea.maxlength:#attr-textarea-maxlength
a!textarea.minlength:#attr-textarea-minlength
a!textarea.placeholder:#attr-textarea-placeholder
a!textarea.readonly:#attr-textarea-readonly
a!textarea.required:#attr-textarea-required
a!textarea.rows:#attr-textarea-rows
a!textarea.wrap:#attr-textarea-wrap
●value, state
v.off:~HTMLautofill#attr-fe-autocomplete-off
v.on:~HTMLautofill#attr-fe-autocomplete-on
v!form.on:#attr-form-autocomplete-on
v!form.off:#attr-form-autocomplete-off
v.ltr:~HTMLdom#attr-dir-ltr
v.rtl:~HTMLdom#attr-dir-rtl
v.submit:#attr-button-type-submit
v.reset:#attr-button-type-reset
v.button:#attr-button-type-button
v.soft:#attr-textarea-wrap-soft
v.hard:#attr-textarea-wrap-hard
v.noreferrer:#link-type-noreferrer
v.opener:#link-type-opener
v.noopener:#link-type-noopener
st.Hidden:~HEinput#hidden-state-(type=hidden)
st.Image:~HEinput#image-button-state-(type=image)
st.Button:#attr-button-type-button-state
st.Reset:#attr-button-type-reset-state
st.Submit:#attr-button-type-submit-state
st.off:#attr-form-autocomplete-off-state
st.on:#attr-form-autocomplete-on-state
st.Hard:#attr-textarea-wrap-hard-state
st.Soft:#attr-textarea-wrap-soft-state
●用語
~formに所有され得る要素:#form-associated-element
~formに所有され得る:#form-associated-element
提出-可能:#category-submit
再設定-可能:#category-reset
自動頭字化-と自動訂正-を継承-:#category-autocapitalize
~listされる要素:#category-listed
~listされる:#category-listed
~label可能:#category-label
~button:#concept-button
!form
再設定~lockか:#locked-for-reset
過去~名~map:#past-names-map
!label
~label先~control:#labeled-control
!button
提出-~button:#concept-submit-button
!output
!output.上書き既定~値:#concept-output-default-value-override
!output.既定~値:#concept-output-default-value
!textarea
!textarea.生の値:#concept-textarea-raw-value
~textarea用に行lを折返す:#textarea-wrapping-transformation
行数:#attr-textarea-rows-value
一行分の字数:#attr-textarea-cols-value
!fieldset.不能化されて:#concept-fieldset-disabled
!meter.実際の値:#concept-meter-actual
!meter.上界:#concept-meter-high
!meter.下界:#concept-meter-low
!meter.最大~値:#concept-meter-maximum
!meter.最小~値:#concept-meter-minimum
!meter.最適~点p:#concept-meter-optimum
!select
!select.選ばれ:#concept-select-pick
!select.表示~size:#concept-select-size
!select.~toggle:#concept-select-toggle
!select.選択肢~list:#concept-select-option-list
選択肢~list:#concept-select-option-list
選択-更新の通知を送信する:#send-select-update-notifications
仮入力~label選択肢:#placeholder-label-option
選択状態を設定する~algo:#selectedness-setting-algorithm
設定し直すよう依頼-:#ask-for-a-reset
~option群:#_options-collection
!option
opt.~dirtyか:#concept-option-dirtiness
opt.不能化されて:#concept-option-disabled
opt.~index:#concept-option-index
opt.~label:#concept-option-label
opt.選択状態:#concept-option-selectedness
opt.値:#concept-option-value
!progress.値:#concept-progress-value
!progress.現在の値:#concept-progress-current-value
!progress.最大~値:#concept-progress-maximum
!legend
~legend:#_fieldset-legend
●用語(forms
~formを提出する:~HTMLforms#concept-form-submit
%利用者-関与i:~HTMLforms#submit-user-involvement
~formを再設定する:~HTMLforms#concept-form-reset
再設定される:~HTMLforms#concept-form-reset
再設定~algo:~HTMLforms#concept-form-reset-control
選択~方向を設定する:~HTMLforms#set-the-selection-direction
~text手入力~cursor位置:~HTMLforms#concept-textarea/input-cursor
fe.~API値:~HTMLforms#concept-fe-api-value
fe.不能化されて:~HTMLforms#concept-fe-disabled
fe.変異-可能:~HTMLforms#concept-fe-mutable
fe.値:~HTMLforms#concept-fe-value
fe.値は~dirtyか:~HTMLforms#concept-fe-dirty
利用者~妥当性:~HTMLforms#user-validity
~form所有者:~HTMLforms#form-owner
所有され:~HTMLforms#form-owner
~form提出:~HTMLforms#form-submission
~form提出用の属性:~HTMLforms#attributes-for-form-submission
~autofill欄~名:~HTMLautofill#autofill-field-name
拘束~検証の対象外:~HTMLforms#barred-from-constraint-validation
拘束~検証~API:~HTMLforms#the-constraint-validation-api
*a/option.disabled:#attr-option-disabled
:~HTMLforms#attr-fe-maxlength
:~HTMLforms#attr-fe-minlength
拘束を対話的に検証する:~HTMLforms#interactively-validate-the-constraints
拘束を静的に検証する:~HTMLforms#statically-validate-the-constraints
値に許容される最大~長さ:~HTMLforms#maximum-allowed-value-length
~menu~command:~HEinteractive#using-the-option-element-to-define-a-command
欠落である難あり:~HTMLforms#suffering-from-being-missing
~entry~list:~HTMLforms#entry-list
~entry~listを構築する:~HTMLforms#constructing-the-form-data-set
●用語(HTML
入力~eventを発火する:~HEinput#_fire-input-event
~formに所有され得る~custom要素:~HEcustom#form-associated-custom-element
iN.~target要素:~HEcustom#internals-target
分類:~HTMLdom#concept-element-categories
内容~属性:~HTMLdom#concept-element-attributes
内容~model:~HTMLdom#concept-element-content-model
この要素を利用できる文脈:~HTMLdom#concept-element-contexts
~accessibilityの考慮点:~HTMLdom#concept-element-accessibility-considerations
~DOM~interface:~HTMLdom#concept-element-dom
~flow内容:~HTMLdom#flow-content-2
大域~属性:~HTMLdom#global-attributes
対話的~内容:~HTMLdom#interactive-content-2
なし:~HTMLdom#concept-content-nothing
可触~内容:~HTMLdom#palpable-content-2
句ng内容:~HTMLdom#phrasing-content-2
見出し内容:~HTMLdom#heading-content-2
text/html における~tag省略:~HTMLdom#concept-element-tag-omission
~text:~HTMLdom#text-content
方向性:~HTMLdom#the-directionality
*has rendering requirements involving the bidirectional algorithm:~HTMLdom#bidireq
要素間~空白:~HTMLdom#inter-element-whitespace
表現-:~HTMLdom#represents
参照-:~HTMLdom#referenced
~scriptを~supportする要素:~HTMLdom#script-supporting-elements-2
~hyperlink:~HTMLlinks#hyperlink
§ ~HTML~link型:~HTMLlinks#linkTypes
~navigable:~HTMLds#navigable
全部的に作動中:~HTMLds#fully-active
結付けられた文書:~WINDOW#concept-document-window
要素~taskを~queueする:~WAPI#queue-an-element-task
現在の大域~obj:~WAPI#current-global-object
利用者~対話~task~source:~WAPI#user-interaction-task-source
~click~eventを発火-:~WAPI#fire-a-click-event
反映する:~HTMLcdom#reflect
既定の値:~HTMLcdom#default-value
正な数のみに制限され:~HTMLcdom#limited-to-numbers-greater-than-zero
既知な値のみに制限され:~HTMLcdom#limited-to-only-known-values
~fallbackありの下で正な整数のみに制限され:~HTMLcdom#limited-to-only-non-negative-numbers-greater-than-zero-with-fallback
負でない整数のみに制限され:~HTMLcdom#limited-to-only-non-negative-numbers
~live:~HTMLINFRA#live
~HTML要素~挿入-時の手続き:~HTMLINFRA#html-element-insertion-steps
~HTML要素~除去-時の手続き:~HTMLINFRA#html-element-removing-steps
真偽-属性:~HTMLcms#boolean-attribute
列挙d属性:~HTMLcms#enumerated-attribute
欠落~値~用の既定の状態:~HTMLcms#missing-value-default
妥当でない値~用の既定の状態:~HTMLcms#invalid-value-default
妥当な負でない整数:~HTMLcms#valid-non-negative-integer
妥当な浮動小数点数:~HTMLcms#valid-floating-point-number
浮動小数点数として最良な表現:~HTMLcms#best-representation-of-the-number-as-a-floating-point-number
浮動小数点数として構文解析する:~HTMLcms#rules-for-parsing-floating-point-number-values
負でない整数として構文解析する:~HTMLcms#rules-for-parsing-non-negative-integers
~space等で分離された~token集合:~HTMLcms#set-of-space-separated-tokens
~XML構文解析器:~HTMLxml#xml-parser
~microdata:~HTMLLS/microdata.html#microdata
~focusされ:~HTMLinteraction#focused
一過な作動化を有して:~HTMLinteraction#transient-activation
~popover要素:~HTMLpopover#_popover-element
~popover~target属性~作動化の挙動:~HTMLpopover#popover-target-attribute-activation-behavior
~event用の~naviに対する利用者-関与i:~HTMLnav#event-uni
終了~tag:~HTMLwriting#syntax-end-tag
~HTML構文解析器:~HTMLparsing#html-parser
~open要素~stack:~HTMLparsing#stack-of-open-elements
具現化されて:~HTMLrendering#being-rendered
●用語(外部
実装定義:~INFRA#implementation-defined
~HTML名前空間:~INFRA#html-namespace
~ASCII大小無視:~INFRA#ascii-case-insensitive
~ASCII空白を剥いで縮約する:~INFRA#strip-and-collapse-ascii-whitespace
長さ:~INFRA#string-length
改行文字を正規化する:~INFRA#normalize-newlines
~map:~INFRA#ordered-map
~URL:~URL1#concept-url
~ID:~DOM4#concept-id
~eventを発火する:~DOM4#concept-event-fire
~clone時の手続き:~DOM4#concept-node-clone-ext
~target:~DOM4#event-target
要素を作成する:~DOM4#concept-create-element
~data:~DOM4#concept-cd-data
~node文書:~DOM4#concept-node-document
~collectionにより表現され:~DOM4#represented-by-the-collection
属性~値を設定する:~DOM4#concept-element-attributes-set-value
~tree順序:~DOM4#concept-tree-order
根:~DOM4#concept-tree-root
~tree:~DOM4#concept-tree
*~DOM4#in-a-document
作動化の挙動:~DOM4#eventtarget-activation-behavior
最初の子:~DOM4#concept-tree-first-child
子~群~変更-時の手続き:~DOM4#concept-node-children-changed-ext
子~text内容:~DOM4#concept-child-text-content
子孫~text内容:~DOM4#concept-descendant-text-content
全~内容を文字列に置換する:~DOM4#string-replace-all
tL.~supportする~token集合:~DOM4#concept-supported-tokens
the method of the same name:~DOM4#dom-htmlcollection-item
the method of the same name:~DOM4#dom-htmlcollection-nameditem
有index~prop取得子:~WEBIDL#dfn-indexed-property-getter
有名~prop取得子:~WEBIDL#dfn-named-property-getter
有名~propの値を決定する手続き:~WEBIDL#dfn-determine-the-value-of-a-named-property
有index~propの値を決定する手続き:~WEBIDL#dfn-determine-the-value-of-an-indexed-property
~supportする~prop名:~WEBIDL#dfn-supported-property-names
新たな有index~propの値を設定する手続き:~WEBIDL#dfn-set-the-value-of-a-new-indexed-property
既存の有index~propの値を設定する手続き:~WEBIDL#dfn-set-the-value-of-an-existing-indexed-property
~supportする~prop~index:~WEBIDL#dfn-supported-property-indices
●●words_table1
nameI:name
getterN:getter
●●words_table
●network/url/保安
提出用の:submission::~
●DOM/IDL/data構造/操作
同名の:namesake:~
設定し直す:reset
要素間:inter-element::~
子たち:children
●構文
open:
連結-:concatenate::~
省略:omission:~
省略不可:omissibleでない:~
浮動小数点数:floating-point number:~
実数:number::~
剥いで:stripして::~
normalization
区切られ:delimitされ:~
●一般処理
迂回-:bypass:~
factory::::ファクトリ
持続-:persist:~
旧-:old:~
%挿入される~node:insertedNode
%除去される~node:removedNode
%旧-親:oldParent
%所有者:-
%select:-
%select:selectElement
%S:-
%親:-
%O:-
%option:-
%O:optionElement
%~node:node
%複製:copy
-:subtree
●状態/妥当性
check::::チェック
用意:available
必須:required::~
必須の:required::~
不定:indeterminate:~
確定的:determinate:~
最適:optimum:~
最適でないsuboptimal
点p:point:点
下界:lower bound:~
上界:upper bound:~
有界な:known
有界でない:arbitrary
~dirtyか:dirtiness
dirtiness:::dirty 有無
dirty::::
●UI
textarea:
選択肢:option::~::オプション
欄:field::~::フィールド
checkbox::::チェックボックス
drop-down::::ドロップダウン
unfocus
help::::ヘルプ
keystroke::::キーストローク
radio::::ラジオ
tooltip::::ツールチップ
pop-up::::ポップアップ
雛形:template::ひな形::テンプレート
popover:
picker:::選択 UI
~picker:picker UI
編集-:edit:~
編集:edit:~
autofill:
自動頭字化-:autocapitalize::~
自動訂正-:autocorrect::~
選択-:select:~
選択:selection:~
選択状態:selectedness:~
未選択に:unselect:~
折返され:wrapされ::折り返され
折返した:wrapした::折り返した
折返す:wrapする::折り返す
改行:line break:~
縮約-:collapse::~
自由-:free-:~
複数行:multiline:~
双方向-:bidirectional::~
右横書き:right-to-left::~
左横書き:left-to-right::~
書字:writing::~
計器:gauge::~
計算機:calculator:~
隠す:hideする:~
示す:showする:~
示され:showされ:~
示さな:showしな:~
肯定的:positive:~
否定的:negative:~
仮入力:placeholder::~
一過:transient::~
●呈示
●内容
legend:
microdata::::
outline::::アウトライン
句ng:phrasing::句::フレージング
見出し:heading::~
文脈に応じた:context-sensitive
可触:palpable::~
分類:categories:~
分類-:categorize:~
機械読取可能:machine-readable:機械読み取り可能
句:phrase::~
生の:raw:~
~~混在-:intermix
●仕様
適切でない:inappropriate
関連度:relevance:~
不十分:insufficient:~
概略的:brief:~
対照:contrast:~
微妙:subtle:~
それでも:still
明らか:clear
に基づく:refer
間違い:wrong
手の込んだ:elaborate
間違い:wrong
一例として:for instance,
〜ほど良い:better
良く:good
-:similarly
よく似る:very similar
それまで:so far been
概要:brief description
-:down-level
saying
§:in an earlier
§:section
制約されない:unrestricted
要
適合していない:non-conforming
でない,:as opposed to
呼ばれる:known as a
結び付けられる:hook-up
-:fall into
伝える:inform
〜でも:nonetheless
ときには:Occasionally it can be
●未分類
隠され:hideされ:~
-:present
年月t:year&month::年&月
milli::::ミリ
disk::::ディスク
候補:candidate:~