-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHTML-input-ja.html
11694 lines (10754 loc) · 362 KB
/
HTML-input-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 — The input element(日本語訳)</title>
<link rel="stylesheet" href="common.css" type="text/css">
<link rel="stylesheet" href="common-whatwg.css" type="text/css">
<style>
@supports (writing-mode: vertical-rl) {
#_input-type-attr-value i {
font-style: normal;
}
/* td, th に対する writing-mode のバグ対策(本来は span, nowrap 不要) */
#_input-type-attr-head th > span,
#_input-type-attr-value td > span {
writing-mode: vertical-rl;
white-space: nowrap;
}
}
.bookkeeping-body > tr > th {
white-space: nowrap;
}
</style>
<script src="common0.js"></script>
<script src="common1.js" async></script>
<script>
Util.ready = () => {
const source_data = {
toc_main: 'MAIN',
bookkeeping: parse_bookkeeping(),
generate: expand
};
Util.switchWordsInit(source_data);
function parse_bookkeeping(){
const map = Object.create(null);
const data = PAGE_DATA.bookkeeping;
delete PAGE_DATA.bookkeeping;
const parse1 = (input) => {
const result = ['','','','','','','','','','','','','','',''];
input
.replace(/^([\w+()]+) +(.+)/mg, (match, name, bits) => {
switch(name){
case 'value':
case 'select()':
bits = bits
.replace(/[オフ既値テ]/g, '適');
}
for(let i = 0; i < 15; i++){
result[i] += bits[i] + name;
}
return '';
});
return result;
// 否accept 否alt ....
}
const parse2 = (input) => {
input = input
.replace(/ +/g, ':')
.replace(/否/g, '・');
return Util.get_mapping(`\n${input}`)
}
const rxp = /■(.+)((?:\n.+)+)/g;
let m;
while(m = rxp.exec(data)){
map[m[1]] = m[2].trim();
}
map.a = parse1(map.BKa);
map.m = parse1(map.BKm);
map.et = parse1(map.BKet);
map.BKa = parse2(map.BKa);
map.BKm = parse2(map.BKm);
map.BKet = parse2(map.BKet);
const states = Object.create(null);
map.states = states;
map.stateS.match(/([\w\-\/]+)$/mg)
.forEach((st, index) => {
for( const state of st.split('/') ){
states[state] = index;
}
});
return map;
}
}
function expand(){
const class_map = this.class_map;
const tag_map = this.tag_map;
const link_map = this.link_map;
const bookkeeping = this.bookkeeping;
let bk = null;
const create_bookkeeping = (state) => {
const table = bookkeeping.template;
const pointer = bookkeeping.states[state];
return table.replace(/([適否])(\w+)/g, (m, a0, klass) => {
let className = class_map[klass];
className = className ? ` class="${className}"` : '';
let first = true;
return bookkeeping[klass][pointer]
.replace( /([適否])(\w+)([()]*)/g, (m, a1, name, paren) => {
if(a0 !== a1) return '';
const comma = first ? '': ', ';
first = false;
return (
`${comma}<a href="${link_map[klass + '.' + name]}"><code${className}>${name}${paren}</code></a>`
);
});
});
}
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 'm':
bk = bookkeeping[`BK${klass}`][key];
const n = text.indexOf('(');
if(n > 0){
key = text.slice(0, n);
text = key + text.slice(n).replace(/\w+/g, '<var>$&</var>');
}
break;
case 'a':
case 'et':
bk = bookkeeping[`BK${klass}`][key];
break;
case 'l':
text = `"<code class="literal">${text}</code>"`;
break;
case 'U':
text = `U+${key}`;
break;
case 'smb':
text = `(<span class="char-symbol">${text}</span>)`;
break;
case 'en':
text = `<span lang="en">${key}</span>`;
break;
case 'bk': // bookkeeping
return create_bookkeeping(key);
break;
case 'BK': //
// return '';
text = bk.replace(/[適テ・]/g, '<td> $&');
bk = null;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
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(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-03-14
trans_update:2025-03-15
source_checked:250227
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/input.html
nav_prev:HEforms
nav_next:HTMLforms
trans_1st_pub:2016-09-17
●●class_map
e:element
a:attr
E:error
et:event-type
P:production
p:property
st:attr-state
h:header
U:code-point
v:value
jA:abstract
obsMb:comment
●●tag_map
I:code
m:code
E:code
c:code
et:code
e:code
a:code
P:code
h:code
p:code
st:i
U:span
t:var
jA:span
v:code
V:var
i:i
obsMb:span
em:em
●●bookkeeping
■stateS
H = Hidden
T = Text/Search
U = Url/Tel
E = Email
P = Password
D = Date/Month/Week/Time
L = Datetime-local
N = Number
R = Range
C = Color
X = Checkbox/Radio
F = File
S = Submit
I = Image
R = Reset/Button
H T U E P D L N R C X F S I B
■BKa
accept 否否否否否否否否否否否適否否否
alpha 否否否否否否否否否適否否否否否
alt 否否否否否否否否否否否否否適否
autocomplete 適適適適適適適適適適否否否否否
checked 否否否否否否否否否否適否否否否
colorspace 否否否否否否否否否適否否否否否
dirname 適適適適適否否否否否否否適否否
formaction 否否否否否否否否否否否否適適否
formenctype 否否否否否否否否否否否否適適否
formmethod 否否否否否否否否否否否否適適否
formnovalidate 否否否否否否否否否否否否適適否
formtarget 否否否否否否否否否否否否適適否
height 否否否否否否否否否否否否否適否
list 否適適適否適適適適適否否否否否
max 否否否否否適適適適否否否否否否
maxlength 否適適適適否否否否否否否否否否
min 否否否否否適適適適否否否否否否
minlength 否適適適適否否否否否否否否否否
multiple 否否否適否否否否否否否適否否否
pattern 否適適適適否否否否否否否否否否
placeholder 否適適適適否否適否否否否否否否
popovertarget 否否否否否否否否否否否否適適適
popovertargetaction 否否否否否否否否否否否否適適適
readonly 否適適適適適適適否否否否否否否
required 否適適適適適適適否否適適否否否
size 否適適適適否否否否否否否否否否
src 否否否否否否否否否否否否否適否
step 否否否否否適適適適否否否否否否
width 否否否否否否否否否否否否否適否
■BKm
checked 否否否否否否否否否否適否否否否
files 否否否否否否否否否否否適否否否
value 既値値値値値値値値値オフ既既既
valueAsDate 否否否否否適否否否否否否否否否
valueAsNumber 否否否否否適適適適否否否否否否
list 否適適適否適適適適適否否否否否
select() 否適適テ適テテテ否テ否テ否否否
selectionStart 否適適否適否否否否否否否否否否
selectionEnd 否適適否適否否否否否否否否否否
selectionDirection 否適適否適否否否否否否否否否否
setRangeText() 否適適否適否否否否否否否否否否
setSelectionRange() 否適適否適否否否否否否否否否否
stepDown() 否否否否否適適適適否否否否否否
stepUp() 否否否否否適適適適否否否否否否
■BKet
input 否適適適適適適適適適適適否否否
change 否適適適適適適適適適適適否否否
■template
<table>
<caption>各種[
内容~属性, ~IDL~member, ~event
]の適用-可否</caption>
<thead><tr><td><th><a href="#concept-input-apply">適用される</a>
<th><a href="#do-not-apply">適用されない</a>
<tbody class="bookkeeping-body">
<tr><th>内容~属性<td>適a<td>否a
<tr><th>~IDL~member<td>適m<td>否m
<tr><th>~event<td>適et<td>否et
</table>
●●words_table
●network/url/保安
IDN:
Content-Type:
client側:client-side
punycode::::
ピュニコード
~message用:messaging
提出用の:submission::~
遮られ:obscureされ:~
遮る:obscureする:~
識別情報:identity:~
●仕様
傾向:tend:~
実用:practical use:~
導入:introduction:~
必要性:needs:~
拙い:poorな:~
支援-:assist:~
支援技術:assistive technology:~
~~通例と同じく:as always
相関-:correlate:~
下位節:subsection:~
自明:trivial:~
概略的:brief:~
選択肢:option:~
~~選択:choice
機能-:function:~
曖昧:vague:~
複雑:complicated:~
自立的:standalone:~
背後:behind:~
正解:right choice:~
自由度:freedom:~
尊重-:respect:~
免除-:exempt:~
末端-:end:~
為す:makeする:~
為して:makeして:~
流儀:fashion:~
program的:programmatic
代替として:alternatively
-:possible
特に/でもある:specifically
~~相応に:suitably
考える
記され:spell-out
~~区別:distinction
依拠できない:unreliable
ただし、:with the caveat that
実在:actual value seen
その場で:on the fly
たまたま:happens to be
他方:on the other hand
考える:consider
一緒に:in conjunction with
~~期待する:looking for
留意-:remind
もちろん:of course
意味論も:extra-semantic
種々の:variety
多様:wide variety
現実的:realistic
かかわらず:despite
最後に:finally
いくつあるかわからない:untold number
ごく:quite
用心深く:with caution
微妙:subtle
残念な出来事:sad-accident
利するように:behalf of
もう少し:slightly more
少しばかりの:few bit s of
この程度に限られる:only so much
委ねられる:up to
真の:true
甘い:lax
~~導入:phase
~~早期:early-part
生じたとき:occurrence
style 上の:stylistic
その場:on demand
的に:fashion
よく似る:very similar
しようと:tries to
すなわち:viz
accordingly
likely
merely
note
refer
respective
very
nonetheless
事情:circumstances
等:alike
かまわない:free to
~~領域:area
両面:twofold
〜にある理由:reasoning
一つは:First
もう一つは:Second
それなりの:good deal of
変更しないまま:leaves unchanged
アリ性:possibility
片方だけ:exactly one of these will be true
数える:count
誤りを正す:applying correction
少数の~~具体例を挙げる:for illustration, a few examples include
導く:leadする
〜一方で、:Recall that 〜
真に:true
~~過去:earlier
●暦
Date:
Gregorian::::グレゴリオ
UTC:
milli::::ミリ
milli秒:millisecond
午前 0 時:midnight
閏:leap::~
年t:year::年
月t:month::月
日t:day::日
時t:hour::時
分t:minute::分
秒t:second::秒
年月t:year&month::年&月
月日t:month&date::月&日
週t:week::週
年週t:year&week::年&週
週年t:week-year::週年
日時t:date&time::日時
時間帯:time zone::~
偏差:time-zone offset::~
~~時間:hours
milli::::ミリ
~milli秒t:millisecond
暦:calendar::~
月曜:Monday::~
世紀:century:~
紀元前:BCE
1000 分の 1 秒:thousandth-of-a-second
1970 年 1 月:January 1970
1 ヶ月後:month late
1970 年の第 1 週:1970-W01
~UTC午前 0 時:midnight UTC on the morning of
〜の午前 0 時:midnight on the morning of
午後 9 時:9pm
午前 6 時:6am
現今の:contemporary
●構文
perl:
compile::::コンパイル
省略:omission:~
正規表現:regular expression:~
regexp:
%~regexp完了:regexpCompletion
%起点付き~pattern:anchoredPattern
起点にする:anchored
起点:anchor
改行:line break:~
約物:punctuation:~
自由形:free-form:~
変形-:transform:~
丸めて:roundして:~
浮動小数点数:floating-point number:~
小数部:fraction:~
fractional
引用符付き:quoted:~
剥ぐ:stripする:~
剥いだ:stripした:~
突き合わせて:against
照合-:matched against
括った:surrounded
直列化-法:serialization path
●状態/妥当性
dirty:
overflow::::オーバーフロー
underflow::::アンダーフロー
check::::チェック
~check有りか:checkedness
~check有無:checkedness
on:
欠落:missing::~
無毒化:sanitization::~
不一致:mismatch::~
対象外:barred
〜の難あり:suffering
可用にできない:unavailable
肯定的:positive:~
否定的:negative:~
不定:indeterminate:~
中間的:intermediate:~
固定的:fixed:~
型を有する:typed
実数:number:~
番号:number:~
裏返され:reverseされ::~
粒度:granularity:~
step::::
周期的範囲:periodic domain::~
整数倍:integral multiple:~
拡張子:extension:~
閾値:threshold:~
倍率:scale factor:~
-:delta
不連続:discontinuous:~
連続的:continuous:~
linear and continuous
2 状態をとり得る:two-state
3 状態をとり得る:tri-state
●UI
alert:
input:
commit::::コミット
checkbox::::チェックボックス
clipboard::::クリップボード
color-well::color well
dial::::ダイアル
drag::::ドラッグ
drop::::ドロップ
drag-and-drop
drop-down::::ドロップダウン
email::::メール
filesystem::::ファイルシステム
~focus可能:focusable
help::::ヘルプ
hover::::
keystroke::::キーストローク
locale::::ロケール
microphone::::マイクロフォン
password::::パスワード
account::::アカウント
search::::
paste::::ペースト
picker:::選択 UI
~picker:selection picker
~picker:picker UI
pointing::::ポインタ指示
popover:
slider::::スライダ
打込んだ:typeした:打ち込んだ:::タイプした
打込む:typeする:打ち込む:::タイプする
tooltip::::ツールチップ
undo::::
色環:color wheel:~
directory::::ディレクトリ
radio::::ラジオ
camera::::カメラ
headset::::ヘッドセット
編集-:edit:~
編集:edit:~
選択-:select:~
未選択に:unselect:~
選択:selection:~
退ける:dismissする:~
退けた:dismissした:~
退けら:dismissさ:~
退けたものと:dismissal
退化-:degrade::~
欄:field::~::フィールド
増減~button:spinbox
増減~button付き:spinner
“増減”:"up" and "down"
autofill:
自動補完-:autocomplete::~
自動補完:autocompletion::~
自動頭字化-:autocapitalize::~
自動訂正-:autocorrect::~
一行の:one-line:~
intelligent:
一過:transient::~
変動:variation:~
埋める:fillする:~
埋めて:fillして:~
~~未入力:not yet filled in
予め埋める:prefilling
閉じら:closeさ:~
閉じる:closeする:~
開かれ:openされ:~
隠す:hideする:~
示す:showする:~
示され:showされ:~
示して:showして:~
負担:burden:~
木目細か:fine-grained:~
元に戻せ:return to
紛らわしく:confusing
つまみを離して:let go of the knob
叩く:hit する
手を止めた:pause
簡素:terse
~pageをめくるような~UI:paged
応える:serve
~clickに反応する:clickable
でなくする:stop
抑える:capping
読み上げ:read out
文面:word
見かけ:look
過度な:undue
より容易:easier
合わせ/沿うように:consistent
小さな:minor
間違い/誤認:mistake
~~調製済み:preconfigured
~~出現:brings up
得る:gain
選択し直す:re-select
選ぶ:pick
選ぶ:chooseする
●呈示
sRGB:
Display-P3:Display P3
~animate化:animated
red:
green:
blue:
alpha:
光量:light:~
黒:black:~
ベージュ
灰色に霞んだ:gray-out
描く:drawする:~
アキ:spacing::~
縦方向:vertical::~
横方向:horizontal::~
生来:natural::~
解像度:resolution::~
目盛り:tick mark:~
-:arrow
-:edge
●地域
American:::米国
Arabic::::アラビア語
British:::英国
French::::フランス語
Persian::::ペルシャ語
Devanagari::::デヴァーナーガリー
Thai::::タイ語
英語:English::~
Roman
地域化:localization::~::ローカル化
地域的:local::~::ローカル
双方向-:bidirectional::~
双方向的:bidirectional::~
右横書き:right-to-left::~
左横書き:left-to-right::~
書字:writing::~
文化的:cultural:~
●内容
句ng:phrasing::句::フレージング
可触:palpable::~
分類:categories:~
credit-card:credit card::クレジットカード
database::::データベース
clip::::クリップ
句:phrase:~
音響:sound:~
電話:telephone:~
phone
●処理/event
経過-:elapse:~
中途完了:abrupt completion::~
composed:
load:
持続-:persist:~
復旧-:restore::~
-:htmlCompatible
●例
仮名:kana:~
漢字:kanji:~
発音区別符:accent:~
綴り:spelling:~
写真:photograph
写真集:photo collection
友人:friend
履歴:history
会話:conversation
開幕:going to be showing
~~宣伝:claim
チケット:ticket
購入:purchase
世界中:everywhere
~~堅い~~論説:intelligent discourse
~~抑制:discourage
-:US
~~写真:picture
撮られた:take
市場:market
早期の:earlier
空港:airport
航空便予約:flight booking
製品:product
国:country
●未分類
代用:replacement:~
到着-:arrive:~
迂回-:bypass:~
録音-:record:~
sniff:
重複:duplicate:~
-:subset
時機:time:~
速度:speed:~
連絡先:contact:~
絞込む:filterする:絞り込む
絞込みつ:filterしつ:絞り込みつ
絞込まれ:filterされ:絞り込まれ
数量-:numeric:~
数量的:numerical:~
近過去:recent:~
合成な:syntheticな:~
防護-:guard:~
WebDriver-BiDi:
近過去:recent past
bit
~~精度:accuracy
code片:snippet
-:original
part::::
複数~pageからなる:multipage
各 `option^e に指定した値:completion value
片:fragment/snippet
~~数字:numeral
numeral
ふるい落とす:filter out
-:living
~scriptで動かす:scripted
示-:show
-:saying
-:put
-:speaking
-:letting
:getting
bookkeeping
found
labeled
having
結果の:parsed
戻-:back
-:letter
追う:follow
並び:sequence
正整数:whole numbers greater than zero
の小数部:fractional/fraction
10 進/10 進法/10 進数:decimal
3 桁ごとにピリオドで分離して,小数点に~commaを用いて:apostrophes between thousands and commas before the decimals
−:subtracted
そのままの順序で:maintaining the listの order
右手:right hand side
相互に:vice versa
同時:simultaneous
~~頻度:how frequent
~~導入:phase
途中:partway through
列目:column
行:row
端:extremity/extreme
長い:long
longer
最も幅広な:broadest
またぐ:span
旧~値:valueBeforeStepping
加えた:made
右方:right
下方:downwards
成す:from
~~成分:part
~data内容:file body (the contents of the file)
email:mail
:maybe
-:latest
-:opposite
-:indeed
-:primary
中心:midpoint
-:extract
大きい:large
largest
最も小さい:smallest
書-:write
書いた:writing
最も近い:nearest
短い:short
間:break
with-no
おおよそ:somewhat
go
nor
neither
amongst
themself
-:placeholder
-:cluster
-:anchor
few
period
-:remote
sensitive
wide
丸める:roundする
●●words_table1
FORMSintro:HTML-forms-intro-ja.html
valueO:value
titleG:title
NaN:<code>NaN</code>
RxpEmail:/^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/
●●original_id_map
●●mdn_urls
the-input-element:HTML/Element/input
htmlinputelement:API/HTMLInputElement
●●link_map
●IDL
CEReactions:~HEcustom#cereactions
HTMLConstructor:~HTMLdom#htmlconstructor
LegacyNullToEmptyString:~WEBIDLjs#LegacyNullToEmptyString
I.HTMLElement:~HTMLdom#htmlelement
I.HTMLDataListElement:~HEforms#htmldatalistelement
I.HTMLSelectElement:~HEforms#htmlselectelement
I.SelectionMode:~HTMLforms#selectionmode
I.ValidityState:~HTMLforms#validitystate
I.HTMLInputElement:#htmlinputelement
I.FileList:~FILEAPI#filelist-section
I.HTMLFormElement:~HEforms#htmlformelement
I.NodeList:~DOM4#interface-nodelist
I.PopoverTargetElement:~HTMLpopover#popovertargetelement
I.PopoverInvokerElement:~HTMLpopover#popoverinvokerelement
E.TypeError:~TC39#sec-native-error-types-used-in-this-standard-typeerror
E.InvalidStateError:~WEBIDL#invalidstateerror
E.NotAllowedError:~WEBIDL#notallowederror
E.SecurityError:~WEBIDL#securityerror
I.Date:~TC39#sec-date-objects
js.object:~WEBIDL#idl-object
m.accept:#dom-input-accept
m.alpha:#dom-input-alpha
m.alt:#dom-input-alt
m.checked:#dom-input-checked
m.colorSpace:#dom-input-colorspace
m.defaultChecked:#dom-input-defaultchecked
m.defaultValue:#dom-input-defaultvalue
m.dirName:#dom-input-dirname
m.files:#dom-input-files
m.height:#dom-input-height
m.indeterminate:#dom-input-indeterminate
m.list:#dom-input-list
m.max:#dom-input-max
m.maxLength:#dom-input-maxlength
m.min:#dom-input-min
m.minLength:#dom-input-minlength
m.multiple:#dom-input-multiple
m.pattern:#dom-input-pattern
m.placeholder:#dom-input-placeholder
m.readOnly:#dom-input-readonly
m.required:#dom-input-required
m.showPicker:#dom-input-showpicker
m.showPicker:#dom-select-showpicker
m.size:#dom-input-size
m.src:#dom-input-src
m.step:#dom-input-step
m.stepDown:#dom-input-stepdown
m.stepUp:#dom-input-stepup
m.type:#dom-input-type
m.value:#dom-input-value
m.valueAsDate:#dom-input-valueasdate
m.valueAsNumber:#dom-input-valueasnumber
m.width:#dom-input-width
m.autocomplete:~HTMLautofill#dom-fe-autocomplete
m.checkValidity:~HTMLforms#dom-cva-checkvalidity
m.disabled:~HTMLforms#dom-fe-disabled
m.form.elements:~HEforms#dom-form-elements
m.form:~HTMLforms#dom-fae-form
m.formAction:~HTMLforms#dom-fs-formaction
m.formEnctype:~HTMLforms#dom-fs-formenctype