-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHTML-forms-ja.html
6762 lines (6257 loc) · 189 KB
/
HTML-forms-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 — Form control(日本語訳)</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
};
Util.switchWordsInit(source_data);
}
function expand(){
const class_map = this.class_map;
const tag_map = this.tag_map;
const link_map = this.link_map;
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':
case 'hH':
text = `"<code class="literal">${text}</code>"`;
break;
case 'bl': // literal bytes
text = `\`<code class="literal">${text}</code>\``;
break;
case 'm':
case 'eI':
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 'smb':
text = `(<span class="char-symbol">${text}</span>)`;
break;
case 'X':
text = `0x${text}`;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
break;
case 'en':
return `<span lang="en">${key}</span>`;
break;
}
let tag = tag_map[klass];
if(tag) {
let classname = class_map[klass];
classname = classname ? ` class="${classname}"` : '';
text = `<${tag}${classname}>${text}</${tag}>`;
}
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>
<script type="text/plain" id="_source_data">
●●options
spec_date:2025-01-14
trans_update:2024-12-27
source_checked:230626
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/form-control-infrastructure.html
abbr_url:HTMLforms
nav_prev:HEinput
nav_next:HEinteractive
trans_1st_pub:2016-09-29
●●class_map
e:element
a:attr
et:event-type
E:error
h:header
st:attr-state
v:value
M:method
U:code-point
cn:cp-name
X:hex-value
●●tag_map
I:code
m:code
eI:code
E:code
c:code
e:code
a:code
M:code
h:code
et:code
st:i
v:code
mt:code
U:span
cn:span
X:span
V:var
i:i
cite:cite
●●original_id_map
concept-fe-dirty:concept-input-value-dirty-flag
concept-fe-dirty:concept-textarea-dirty
form-submission:form-submission-2
create-an-entry:append-an-entry
concept-form-submit:submit-user-involvement
concept-form-submit:submit-subbmitted-from-method
●●mdn_urls
selectionmode:API/SelectionMode
validitystate:API/ValidityState
formdataevent:API/FormDataEvent
formdataeventinit:API/FormDataEventInit
submitevent:API/SubmitEvent
submiteventinit:API/SubmitEventInit
●●link_map
●IDL
E.IndexSizeError:~WEBIDL#indexsizeerror
E.InvalidStateError:~WEBIDL#invalidstateerror
E.NotSupportedError:~WEBIDL#notsupportederror
DOMException:~WEBIDL#idl-DOMException
I.Document:~HTMLdom#document
文書:~HTMLdom#the-document-object
I.SelectionMode:#selectionmode
I.ValidityState:#validitystate
I.HTMLElement:~HTMLdom#htmlelement
I.HTMLInputElement:~HEinput#htmlinputelement
I.File:~FILEAPI#file
I.File:~FILEAPI#dfn-file
I.Blob:~FILEAPI#blob
I.Blob:~FILEAPI#dfn-Blob
I.FormData:~XHR#formdata
I.FormDataEvent:#formdataevent
I.FormDataEventInit:#formdataeventinit
I.SubmitEvent:#submitevent
I.SubmitEventInit:#submiteventinit
I.Event:~DOM4#interface-event
I.EventInit:~DOM4#dictdef-eventinit
I.ElementInternals:~HEcustom#elementinternals
m.action:#dom-fs-action
m.badInput:#dom-validitystate-badinput
m.checkValidity:#dom-cva-checkvalidity
m.customError:#dom-validitystate-customerror
m.disabled:#dom-fe-disabled
m.elements:~HEforms#dom-form-elements
m.encoding:#dom-fs-encoding
m.enctype:#dom-fs-enctype
m.form:#dom-fae-form
m.formAction:#dom-fs-formaction
m.formData:#dom-formdataevent-formdata
m.formEnctype:#dom-fs-formenctype
m.formMethod:#dom-fs-formmethod
m.formNoValidate:#dom-fs-formnovalidate
m.formTarget:#dom-fs-formtarget
m.method:#dom-fs-method
m.~nameF:~FILEAPI#dfn-name
m.name:#dom-fe-name
m.noValidate:#dom-fs-novalidate
m.patternMismatch:#dom-validitystate-patternmismatch
m.rangeOverflow:#dom-validitystate-rangeoverflow
m.rangeUnderflow:#dom-validitystate-rangeunderflow
m.reportValidity:#dom-cva-reportvalidity
m.select:#dom-textarea/input-select
m.selectionDirection:#dom-textarea/input-selectiondirection
m.selectionEnd:#dom-textarea/input-selectionend
m.selectionStart:#dom-textarea/input-selectionstart
m.setCustomValidity:#dom-cva-setcustomvalidity
m.setRangeText:#dom-textarea/input-setrangetext
m.setSelectionRange:#dom-textarea/input-setselectionrange
m.stepMismatch:#dom-validitystate-stepmismatch
m.submit:~HEforms#dom-form-submit
m.target:#dom-fs-target
m.tooLong:#dom-validitystate-toolong
m.tooShort:#dom-validitystate-tooshort
m.typeMismatch:#dom-validitystate-typemismatch
m.valid:#dom-validitystate-valid
m.validationMessage:#dom-cva-validationmessage
m.validity:#dom-cva-validity
m.value:~HEforms#dom-textarea-value
m.valueMissing:#dom-validitystate-valuemissing
m.willValidate:#dom-cva-willvalidate
m.submitter:#dom-submitevent-submitter
m.cancelable:~DOM4#dom-event-cancelable
m.bubbles:~DOM4#dom-event-bubbles
m.innerHTML:~HTMLdynamic#dom-element-innerhtml
eI.setValidity:~HEcustom#dom-elementinternals-setvalidity
eI.checkValidity:#dom-elementinternals-checkvalidity
eI.form:#dom-elementinternals-form
eI.reportValidity:#dom-elementinternals-reportvalidity
eI.validity:#dom-elementinternals-validity
eI.willValidate:#dom-elementinternals-willvalidate
l.end:#dom-selectionmode-end
l.preserve:#dom-selectionmode-preserve
l.select:#dom-selectionmode-select
l.start:#dom-selectionmode-start
●要素/属性/値/状態
e.button:~HEforms#the-button-element
e.datalist:~HEforms#the-datalist-element
e.dialog:~HEinteractive#the-dialog-element
e.fieldset:~HEforms#the-fieldset-element
e.form:~HEforms#the-form-element
e.input:~HEinput#the-input-element
e.legend:~HEforms#the-legend-element
e.option:~HEforms#the-option-element
e.optgroup:~HEforms#the-optgroup-element
e.select:~HEforms#the-select-element
e.textarea:~HEforms#the-textarea-element
et.click:~UIEVENTS#event-type-click
et.formdata:~HTMLindex#event-formdata
et.input:~UIEVENTS#event-type-input
et.invalid:~HTMLindex#event-invalid
et.reset:~HTMLindex#event-reset
et.select:~HTMLindex#event-select
et.submit:~HTMLindex#event-submit
a.accept-charset:~HEforms#attr-form-accept-charset
a.action:#attr-fs-action
a.dirname:#attr-fe-dirname
a.disabled:#attr-fe-disabled
a.~disabled0:~HEforms#attr-fieldset-disabled
a.enctype:#attr-fs-enctype
a.form:#attr-fae-form
a.formaction:#attr-fs-formaction
a.formenctype:#attr-fs-formenctype
a.formmethod:#attr-fs-formmethod
a.formnovalidate:#attr-fs-formnovalidate
a.formtarget:#attr-fs-formtarget
a.hidden:~HTMLinteraction#attr-hidden
a.max:~HEinput#attr-input-max
a.maxlength:#attr-fe-maxlength
a.~maxlengthI:~HEinput#attr-input-maxlength
a.~maxlengthT:~HEforms#attr-textarea-maxlength
a.method:#attr-fs-method
a.min:~HEinput#attr-input-min
a.minlength:#attr-fe-minlength
a.~nameF:~HEforms#attr-form-name
a.~minlengthI:~HEinput#attr-input-minlength
a.~minlengthT:~HEforms#attr-textarea-minlength
a.~multipleI:~HEinput#attr-input-multiple
a.multiple:~HEforms#attr-select-multiple
a.name:#attr-fe-name
a.novalidate:#attr-fs-novalidate
a.pattern:~HEinput#attr-input-pattern
a.~requiredI:~HEinput#attr-input-required
a.~requiredT:~HEforms#attr-textarea-required
a.step:~HEinput#attr-input-step
a.target:#attr-fs-target
a.type:~HEinput#attr-input-type
a.value:~HEinput#attr-input-value
v.dialog:#attr-fs-method-dialog-keyword
v.get:#attr-fs-method-get-keyword
v.post:#attr-fs-method-post-keyword
v._charset_:#attr-fe-name-charset
v.noreferrer:#link-type-noreferrer
v.text/plain:#attr-fs-enctype-text
v.application/x-www-form-urlencoded:#attr-fs-enctype-urlencoded
v.multipart/form-data:#attr-fs-enctype-formdata
mt.application/x-www-form-urlencoded:~URL1#concept-urlencoded
mt.multipart/form-data:~HTMLindex#multipart/form-data
mt.text/plain:~RFCx/rfc2046#section-4.1.3
mt.application/octet-stream:~RFCx/rfc2046#section-4.5.1
st.Checkbox:~HEinput#checkbox-state-(type=checkbox)
st.Date:~HEinput#date-state-(type=date)
st.Email:~HEinput#email-state-(type=email)
st.File:~HEinput#file-upload-state-(type=file)
st.Hidden:~HEinput#hidden-state-(type=hidden)
st.Image:~HEinput#image-button-state-(type=image)
st.Datetime-local:~HEinput#local-date-and-time-state-(type=datetime-local)
st.Month:~HEinput#month-state-(type=month)
st.Number:~HEinput#number-state-(type=number)
st.Password:~HEinput#password-state-(type=password)
st.Radio:~HEinput#radio-button-state-(type=radio)
st.Submit:~HEinput#submit-button-state-(type=submit)
st.Tel:~HEinput#telephone-state-(type=tel)
st.Text:~HEinput#text-(type=text)-state-and-search-state-(type=search)
st.Time:~HEinput#time-state-(type=time)
st.Url:~HEinput#url-state-(type=url)
st.Week:~HEinput#week-state-(type=week)
st.GET:#attr-fs-method-get
st.POST:#attr-fs-method-post
st.dialog:#attr-fs-method-dialog
M.GET:~HTTPsem#GET
M.POST:~HTTPsem#POST
●
~offset:#_insertion-offset
~legend:~HEforms#_fieldset-legend
利用者~妥当性:#user-validity
適用される:~HEinput#concept-input-apply
適用されない:~HEinput#do-not-apply
選定された座標:~HEinput#concept-input-type-image-coordinate
選択された~file~list:~HEinput#concept-input-type-file-selected
~radio~button~group:~HEinput#radio-button-group
~formに所有され得る要素:~HEforms#form-associated-element
~listされ:~HEforms#category-listed
再設定-可能:~HEforms#category-reset
提出-可能:~HEforms#category-submit
opt.選択状態:~HEforms#concept-option-selectedness
提出-~button:~HEforms#concept-submit-button
選択肢~list:~HEforms#concept-select-option-list
行l折返ng:~HEforms#textarea-wrapping-transformation
opt.値:~HEforms#concept-option-value
opt.不能化されて:~HEforms#concept-option-disabled
tA.生の値:~HEforms#concept-textarea-raw-value
~dialogを閉じる:~HEinteractive#close-the-dialog
●form
所有させる:#concept-form-association
~form所有者:#form-owner
所有して:#form-owner
構文解析器が挿入したか:#parser-inserted-flag
fe.値:#concept-fe-value
fe.値~群:#concept-fe-values
fe.値は~dirtyか:#concept-fe-dirty
fe.~API値:#concept-fe-api-value
fe.~check有りか:#concept-fe-checked
fe.変異-可能:#concept-fe-mutable
fe.不能化されて:#concept-fe-disabled
~form~control~maxlength属性:#attr-fe-maxlength
~form~control~minlength属性:#attr-fe-minlength
既定の~button:#default-button
再設定~algo:#concept-form-reset-control
~formを再設定する:#concept-form-reset
~form所有者を設定し直す:#reset-the-form-owner
関連な値:#concept-textarea/input-relevant-value
~text手入力~cursor位置:#concept-textarea/input-cursor
選択:#concept-textarea/input-selection
選択~方向:#selection-direction
選択~範囲を設定する:#set-the-selection-range
選択~方向を設定する:#set-the-selection-direction
~text選択:#concept-textarea/input-selection
~text手入力~cursor:#concept-textarea/input-cursor
●提出 fs
~formを提出する:#concept-form-submit
%利用者-関与i:#submit-user-involvement
submit() ~method:submit-subbmitted-from-method
~form提出:#form-submission
動作:#concept-fs-action
~enctype:#concept-fs-enctype
~method:#concept-fs-method
検証なし状態:#concept-fs-novalidate
~Get動作~URL:#submit-get-action
本体として~Mailする:#submit-mailto-body
~header列を伴う~Mail:#submit-mailto-headers
変異-動作~URL:#submit-mutate-action
~entity本体として提出する:#submit-body
~navigateを計画する:#plan-to-navigate
計画された~navi:#planned-navigation
~entry~listを構築する:#constructing-the-form-data-set
~entry~list構築-中か:#constructing-entry-list
提出~event発火-中か:#firing-submission-events
~entryを作成する:#create-an-entry
~entry~list:#entry-list
fD.~entry~list:~XHR#concept-formdata-entry-list
fD.~entry:#form-entry
fD.名:#form-entry-name
fD.値:#form-entry-value
~form提出用の属性:#attributes-for-form-submission
form.符号化法:#picking-an-encoding-for-the-form
~mp_form_data境界~文字列:#multipart/form-data-boundary-string
~mp_form_dataとして符号化する:#multipart/form-data-encoding-algorithm
~text_plainとして符号化する:#text/plain-encoding-algorithm
名値~pair~listに変換する:#convert-to-a-list-of-name-value-pairs
改行文字を~form~data用に正規化する:#_normalize-newlines-for-form-data
暗黙的な提出を阻む欄:#field-that-blocks-implicit-submission
●妥当性
拘束を対話的に検証する:#interactively-validate-the-constraints
拘束を静的に検証する:#statically-validate-the-constraints
拘束~検証の対象外:#barred-from-constraint-validation
拘束~検証の候補:#candidate-for-constraint-validation
~custom妥当性~error~message:#custom-validity-error-message
自身の拘束を満たして:#concept-fv-valid
妥当性~状態:#validity-states
妥当性を検査する:#check-validity-steps
妥当性を報告する:#report-validity-steps
~pattern不一致の難あり:#suffering-from-a-pattern-mismatch
~step不一致の難あり:#suffering-from-a-step-mismatch
型~不一致の難あり:#suffering-from-a-type-mismatch
~overflowの難あり:#suffering-from-an-overflow
~underflowの難あり:#suffering-from-an-underflow
不良~入力の難あり:#suffering-from-bad-input
欠落である難あり:#suffering-from-being-missing
長過ぎる難あり:#suffering-from-being-too-long
短か過ぎる難あり:#suffering-from-being-too-short
~custom~errorの難あり:#suffering-from-a-custom-error
値に許容される最大~長さ:#maximum-allowed-value-length
値に許容される最小~長さ:#minimum-allowed-value-length
●用語 HTML
~button:~HEforms#concept-button
~DOM操作~task~source:~WAPI#dom-manipulation-task-source
~taskを~queueする:~WAPI#queue-a-task
要素~taskを~queueする:~WAPI#queue-an-element-task
~task~queue:~WAPI#task-queue
~task~source:~WAPI#task-source
~task:~WAPI#concept-task
利用者~対話~task~source:~WAPI#user-interaction-task-source
~click~eventを発火する:~WAPI#fire-a-click-event
~node~navigable:~HTMLds#node-navigable
nav.作動中な文書:~HTMLds#nav-document
妥当な~navigable~target名または~keyword:~HTMLds#valid-navigable-target-name-or-keyword
~navigableを選ぶ規則:~HTMLds#the-rules-for-choosing-a-navigable
作動中な~sandbox法~flag集合:~ORIGIN#active-sandboxing-flag-set
閲覧~文脈~sandbox化( ~form )~flag:~ORIGIN#sandboxed-forms-browsing-context-flag
~navigableを~URLへ~navigateする:~HTMLnav#navigate
~navigate:~HTMLnav#navigate
hH.auto:~HTMLnav#navigationhistorybehavior-auto
hH.replace:~HTMLnav#navigationhistorybehavior-replace
i.作動化:~HTMLnav#uni-activation
i.履歴~取扱い:~HTMLnav#navigation-hh
i.~referrer施策:~HTMLnav#navigation-referrer-policy
i.文書~資源:~HTMLnav#navigation-resource
i.~form~data~entry~list:~HTMLnav#navigation-form-data-entry-list
i.利用者-関与i:~HTMLnav#navigation-user-involvement
~POST資源:~HTMLnav#post-resource
pR.要請~本体:~HTMLnav#post-resource-request-body
pR.要請~内容~型:~HTMLnav#post-resource-request-content-type
~naviに対する利用者-関与i:~HTMLnav#user-navigation-involvement
i.なし:~HTMLnav#uni-none
完全に読込まれ:~HTMLlifecycle#completely-loaded
~formに所有され得る~custom要素:~HEcustom#form-associated-custom-element
iN.~target要素:~HEcustom#internals-target
cF.~entry構築~algo:~HEcustom#face-entry-construction
cF.妥当性~flag群:~HEcustom#_validity-flags
cF.検証~anchor:~HEcustom#face-validation-anchor
~HTML構文解析器:~HTMLparsing#html-parser
構文解析-~error:~HTMLparsing#parse-errors
構文解析を停止-:~HTMLparsing#stop-parsing
~navigateできない:~HTMLlinks#cannot-navigate
要素の~noopenerを取得する:~HTMLlinks#get-an-element's-noopener
~link型:~HTMLlinks#linkTypes
左横書き:~HTMLdom#concept-ltr
右横書き:~HTMLdom#concept-rtl
方向性:~HTMLdom#the-directionality
自動~方向性を伴う~formに所有され得る要素:~HTMLdom#auto-directionality-form-associated-elements
要素の~targetを取得する:~HEmetadata#get-an-element's-target
~focusされて:~HTMLinteraction#focused
~objを~focusする:~HTMLinteraction#focusing-steps
具現化されて:~HTMLrendering#being-rendered
~HTML要素~挿入-時の手続き:~HTMLINFRA#html-element-insertion-steps
~DOM4#concept-node-insert-ext
~HTML要素~除去-時の手続き:~HTMLINFRA#html-element-removing-steps
~DOM4#concept-node-remove-ext
中へ挿入された:~HTMLINFRA#insert-an-element-into-a-document
から除去された:~HTMLINFRA#remove-an-element-from-a-document
~live:~HTMLINFRA#live
反映する:~HTMLcdom#reflect
既知な値のみに制限され:~HTMLcdom#limited-to-only-known-values
h.Content-Type:~HTMLurl#content-type
前後~空白~可の妥当かつ空でない~URL:~HTMLurl#valid-non-empty-url-potentially-surrounded-by-spaces
~URLを符号化法の下で相対的に構文解析する:~HTMLurl#encoding-parsing-a-url
真偽-属性:~HTMLcms#boolean-attribute
列挙d属性:~HTMLcms#enumerated-attribute
欠落~値~用の既定の状態:~HTMLcms#missing-value-default
妥当でない値~用の既定の状態:~HTMLcms#invalid-value-default
妥当な負でない整数:~HTMLcms#valid-non-negative-integer
負でない整数として構文解析-:~HTMLcms#rules-for-parsing-non-negative-integers
●用語(他
符号単位:~INFRA#code-unit
~ASCII大小無視:~INFRA#ascii-case-insensitive
~ASCII空白で分割する:~INFRA#split-on-ascii-whitespace
改行文字を正規化する:~INFRA#normalize-newlines
長さ:~INFRA#string-length
連結する:~INFRA#string-concatenate
~list:~INFRA#list
付加する:~INFRA#list-append
~listを~cloneする:~INFRA#list-clone
~scalar値~文字列:~INFRA#scalar-value-string
~scalar値~文字列に変換する:~INFRA#javascript-string-convert
同型に符号化する:~INFRA#isomorphic-encode
~ID:~DOM4#concept-id
doc.~URL:~DOM4#concept-document-url
doc.符号化法:~DOM4#concept-document-encoding
接続されて:~DOM4#connected
~node文書:~DOM4#concept-node-document
~tree順序:~DOM4#concept-tree-order
~tree:~DOM4#concept-tree
~eventを発火する:~DOM4#concept-event-fire
作動化の挙動:~DOM4#eventtarget-activation-behavior
文字列を~UTF-8~percent-符号化する:~URL1#string-utf-8-percent-encode
~form_urlencoded直列化器:~URL1#concept-urlencoded-serializer
~path~percent-符号化-集合:~URL1#path-percent-encode-set
既定の符号化-集合:~URL1#default-encode-set = ~path~percent-符号化-集合
~URL:~URL1#concept-url
url.~query:~URL1#concept-url-query
url.~scheme:~URL1#concept-url-scheme
~UTF-8:~ENCODING#utf-8
符号化法:~ENCODING#encoding
符号化法を利用して符号化する:~ENCODING#encode
~UTF-8符号化する:~ENCODING#utf-8-encode
~labelから符号化法を取得する:~ENCODING#concept-encoding-get
符号化法から出力~符号化法を取得する:~ENCODING#get-an-output-encoding
enc.名前:~ENCODING#name
●●words_table1
disabled0:disabled
maxlengthI:maxlength
maxlengthT:maxlength
minlengthI:minlength
minlengthT:minlength
multipleI:multiple
requiredI:required
requiredT:required
targetB:target
nameF:name
form_urlencoded:<code>application/x-www-form-urlencoded</code>
mp_form_data:<code>multipart/form-data</code>
text_plain:<code>text/plain</code>
awesomeAt:[email protected]
rtlWord1:%D9%85%D8%B1%D8%AD%D8%A8%D8%A7
●●words_table
●network/url/保安
payload::::ペイロード
percent-::: %-
noopener:
entity:
Get:
Mail:
multipart:
計画-:plan::~
提出元:submitter::~
multipart:
提出用の:submission::~
-:submitted from
迂回-:bypass:~
POST:
%~POST資源:postResource
●構文/直列化
charset:
連結-:concatenate:~
連結-:concatenation
16 進:hexadecimal
3 桁ごと:thousand
16 進:hexadecimal
●状態/妥当性
check::::チェック
~check有りか:checkedness
overflow::::オーバーフロー
underflow::::アンダーフロー
step:
enctype:
難あり:suffer from/suffering from
対象外:barred from
不一致:mismatch::~
未取扱い:unhandled:未取り扱い
~unhandled-invalid:#5
選択状態:selectedness:~
候補:candidate:~
そのまま変化しない:remain unchanged
検証なし:no-validate::~
dirty::::
折返ng:wrapping::折り返し
肯定的:positive:~
否定的:negative:~
合う/合わない:fit
各~部位:parts
部位:part
●UI
legend:
alert:
caret::::キャレット
欄:field::~::フィールド
picker:::選択 UI
color-well:
radio::::ラジオ
scrolling::::スクロール
選択肢:option::~::オプション
連関:interaction
指名-:designate::~
改行:line break:~
書字:writing::~
編集-:edit:~
autofill:
地域化-:localize::~::ローカル化
側:side:~
注目:attention:~
注目を引かせる:brings 〜 attention
方向:dir
graphical-cue:graphical cue:::グラフィックな指示記号
保存-:save:~
●UI 入力
右横書き:right-to-left::~
左横書き:left-to-right::~
ltr/rtl
-:letter
Shift +:Shift modifier
email::::メール
選択-:select:~
選択:selection:~
~~始端:beginning
始端~offset 〜 終端~offset: sequence of characters starting with the character at the 始端th position (in logical order) and ending with the character at the (終端-1)th position
範囲:size
途中:in the middle
留める:snap
埋めら:fillさ:~
埋める:fillする:~
予め〜埋められ:prefill
直後:just before
直前:just after
Shift +:Shift modifier
低い:low
高い:high
16 進:hexadecimal
●処理
名値:name-value:名-値
切詰める:clampする:切り詰める
識別情報:identity:~
翻訳-:translate:~
合体-:coalesce:~
変異-能:mutability
渡-:pass
保たれ:keepされ
〜ないよう:prevent
%C
%F:-
%L:-
%charset:charset
%form
%option:option element
%x:x
%x名:namex
%y:y
%y名:namey
%~MIME型:mimeType
%~POST資源:postResource
%~URL:url
%~control群:controls
%~enctype:enctype
%~entry:entry
%~entry~list:entry list
%~file:file
%~filename:filename
%~file~list:selected files
%~form:-
%~form:form
%~form~data:form data
%~form~target:formTarget
%~form文書:form document
%~header列:headers
%~list:list
%~method:method
%~noopener:noopener
%~pair:pair
%~pair群:pairs
%~query:-
%~referrer施策:referrerPolicy
%~scheme:scheme
%~subject:subject
%~target:target
%~target~navigable:targetNavigable
%~token
%値:value
%再設定するか:reset
%利用者-関与i:userInvolvement
%動作~URL:action
%取消されなかったか:notCanceled
%名:name
%報告するか:report
%境界~文字列:boundary string
%妥当でない~control群:invalid controls
%始端:-
%始端:start
%履歴~取扱い:historyHandling
%差分:delta
%提出元:submitter
%提出元~button:submitterButton
%文字列:-
%新~終端:new end
%方向:
%方向:-
%方向:direction
%方向~名:dirname
%未取扱いな妥当でない~control群:unhandled invalid controls
%本体:body
%構文解析した動作:parsed action
%欄:field
%欄:field
%状態:-
%符号化法:encoding
%終端:-
%終端:end
%結果:-
%結果:result
%継続するか:shouldContinue
%要素:-
%要素:element
%選択~始端:-
%選択~始端:selection start
%選択~終端:-
%選択~終端:selection end
●仕様
事実:fact:~
複雑:complicated:~
概略的:brief:~
旧式:older
旧:old
を通して:in terms of
わけではない:imply
解釈し直される問題:problematic reinterpretation
表出できない:not expressible
対処:work around
欠いて:lack of
ではなく:as opposed to
足りる:suffice
~~判断:think
およそ:probably
伝わって:inform
可視でない:invisible
称され:called
満たす:satisfy
望み:wishes
読まれる用途:readable
次の様:might be something like
反し:go against
他所:other parts
ものと:ought
申し分ない:fine
考える:consider
似た様な:something like
ない限り,in the absence of
全く:quite
担当する:has claimed responsibility
以前は:previously
魔法の:magic
conclude
examine
overall
stood
follow
-:causing
-:loop
nothing
overall
~~有効になる:kick in
in the face of
を以って:by means of
優先される:takes precedence over
●未分類
閉じる:closeする:~
maxlength:
minlength:
-:variable
差分:delta:~
矢印:arrow:~
有さない:missing
映し出:mirror
数え:count
~~空に戻す:clear
数:number
減る:decrease
指す:point to
消える:away
過ぎて:now past
^en:clobbering
directional arrow
省略時は/optionally
種類:kind
-:long
( 名, 値):name-value
非 file:non-file
下限:lower bound
cover
occurrence
now:
+:pair
-:long
-:mark
1 個の:one
code片:snippet
cue:
directional
first-in-form
focusing
made
occurrence
pointing
previous
using
●指示語
先頭:leading
一時的:temporary
後に:subsequently
finally
~~最後の:final
すべて:everything
対応する:respective
高い:high
低い:low
following
時点:instant
最も近い:nearest
当の:main
まるごと:altogether
●●html_code_list
■association-of-controls-and-forms-1 bad
...
<form id="a">
<div id="b"></div>
</form>
<%script>
document.getElementById('b').innerHTML =
'<table><tr><td></form><form id="c"><input id="d"></table>' +
'<input id="e">';
</%script>
...
■directionality-1
<form action="addcomment.cgi" method=post>
<p><label>コメント: <input type=text name="comment" <dirname="comment.dir"> required></label></p>
<p><button name="mode" type=submit value="add">コメントを投稿する</button></p>
</form>
<form action="addcomment.cgi" method=post>
<p><label>Comment: <input type=text name="comment" dirname="comment.dir" required></label></p>
<p><button name="mode" type=submit value="add">Post Comment</button></p>
</form>
■minimum-input-length-1
<form action="/events/menu.cgi" method="post">
<p><label>競技種目: <input required minlength=5 maxlength=50 name=event></label></p>
<p><label>朝食を希望される場合は記入してください:
<textarea name="breakfast" minlength="10"></textarea></label></p>
<p><label>昼食を希望される場合は記入してください:
<textarea name="lunch" minlength="10"></textarea></label></p>
<p><label>夕食を希望される場合は記入してください:
<textarea name="dinner" minlength="10"></textarea></label></p>
<p><input type=submit value="request を submit する"></p>