-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHTML-interaction-ja.html
11822 lines (11039 loc) · 352 KB
/
HTML-interaction-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 — User interaction(日本語訳)</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: 'editing',
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':
text = `"<code class="literal">${text}</code>"`;
break;
case 'm':
case 'mE':
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':
text = text.slice(text.indexOf('.') + 1);
break;
case 'h':
text = `<code class="header">${text}</code>`;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
break;
case 'ps':
text = `:${key}`;
break;
case 'Key':
text = `<kbd><kbd>${key}</kbd></kbd>`;
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-21
trans_update:2025-01-21
source_checked:240603
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/interaction.html
abbr_url:HTMLinteraction
site_nav:uievents,html
nav_prev:HTMLselectors
nav_next:HTMLdnd
trans_1st_pub:2016-11-06
●●class_map
e:element
a:attr
et:event-type
p:property
ps:pseudo
st:attr-state
stS:attr-state
stW:attr-state
aH:attr-state
css:css
v:value
vS:value
vC:value
vW:value
E:error
h:header
M:method
●●tag_map
I:code
m:code
mE:code
mb:code
E:code
c:code
e:code
a:code
et:code
st:i
stS:i
stW:i
aH:span
h:code
M:code
p:code
ps:code
css:code
samp:samp
v:code
vS:code
vC:value
vW:code
i:i
kbd:kbd
em:em
cite:cite
●●original_id_map
dom-document-designmode:designMode
system-focus:tlbc-system-focus
currently-focused-area-of-a-top-level-traversable:currently-focused-area-of-a-top-level-browsing-context
current-focus-chain-of-a-top-level-traversable:current-focus-chain-of-a-top-level-browsing-context
●●mdn_urls
elementcontenteditable:API/ElementContentEditable
focusoptions:API/FocusOptions
the-accesskey-attribute:HTML/Global_attributes/accesskey
attr-enterkeyhint:HTML/Global_attributes/enterkeyhint
attr-hidden:HTML/Global_attributes/hidden
attr-contenteditable:HTML/Global_attributes/contenteditable
attr-autocapitalize:HTML/Global_attributes/autocapitalize
attr-fe-autofocus:HTML/Global_attributes/autofocus
attr-inputmode:HTML/Global_attributes/inputmode
attr-tabindex:HTML/Global_attributes/tabindex
●●link_map
CEReactions:~HEcustom#cereactions
E.SyntaxError:~WEBIDL#syntaxerror
E.InvalidStateError:~WEBIDL#invalidstateerror
I.AbortSignal:~DOM4#abortsignal
I.CloseWatcher:#closewatcher
I.CloseWatcherOptions:#closewatcheroptions
I.DOMHighResTimeStamp:~HRTIME#dom-domhighrestimestamp
I.Document:~HTMLdom#document
I.DocumentOrShadowRoot:~HTMLdom#documentorshadowroot
I.Element:~DOM4#interface-element
I.ElementContentEditable:#elementcontenteditable
I.Event:~DOM4#interface-event
I.EventHandler:~WAPI#eventhandler
I.EventInit:~DOM4#dictdef-eventinit
I.EventTarget:~DOM4#interface-eventtarget
I.FocusEvent:~UIEVENTS#focusevent
I.FocusOptions:#focusoptions
I.Navigator:~HTMLnavigator#navigator
I.Node:~DOM4#interface-node
I.PerformanceEntry:~TIMELINE#dom-performanceentry
I.Selection:~SELECTIONAPI#dom-selection
I.Text:~DOM4#interface-text
I.ToggleEvent:#toggleevent
I.ToggleEventInit:#toggleeventinit
I.UserActivation:#useractivation
I.VisibilityStateEntry:#visibilitystateentry
I.Window:~WINDOW#window
~window:~WINDOW#the-window-object
■DOM
m.isTrusted:~DOM4#dom-event-istrusted
m.bubbles:~DOM4#dom-event-bubbles
m.type:~DOM4#dom-event-type
m.autofocus:#dom-fe-autofocus
m.accessKey:#dom-accesskey
m.accessKeyLabel:#dom-accesskeylabel
m.activeElement:#dom-documentorshadowroot-activeelement
m.autocapitalize:#dom-autocapitalize
m.autocorrect:#dom-autocorrect
m.blur:#dom-window-blur
mE.blur:#dom-blur
m.focus:#dom-window-focus
mE.focus:#dom-focus
m.enterKeyHint:#dom-enterkeyhint
m.click:#dom-click
m.contentEditable:#dom-contenteditable
m.hasFocus:#dom-document-hasfocus
m.hidden:#dom-document-hidden
mE.hidden:#dom-hidden
m.isContentEditable:#dom-iscontenteditable
m.inert:#dom-inert
m.inputMode:#dom-inputmode
m.newState:#dom-toggleevent-newstate
m.oldState:#dom-toggleevent-oldstate
m.preventScroll:#dom-focusoptions-preventscroll
m.focusVisible:#dom-focusoptions-focusvisible
m.visibilityState:#dom-document-visibilitystate
m.writingSuggestions:#dom-writingsuggestions
m.navigator:~HTMLnavigator#dom-window-navigator
m.userActivation:#dom-navigator-useractivation
m.hasBeenActive:#dom-useractivation-hasbeenactive
m.isActive:#dom-useractivation-isactive
m.name:#visibilitystateentry-name
m.entryType:#visibilitystateentry-entrytype
m.startTime:#visibilitystateentry-starttime
m.duration:#visibilitystateentry-duration
m.execCommand:#execCommand
m.execCommand:~EXEC-COMMAND#execcommand%28%29
m.queryCommandEnabled:~EXEC-COMMAND#dom-document-querycommandenabled%28%29
m.queryCommandIndeterm:~EXEC-COMMAND#dom-document-querycommandindeterm%28%29
m.queryCommandState:~EXEC-COMMAND#dom-document-querycommandstate%28%29
m.queryCommandSupported:~EXEC-COMMAND#dom-document-querycommandsupported%28%29
m.queryCommandValue:~EXEC-COMMAND#dom-document-querycommandvalue%28%29
m.spellcheck:#dom-spellcheck
m.tabIndex:#dom-tabindex
m.relatedTarget:~UIEVENTS#dom-focusevent-relatedtarget
m.detail:~UIEVENTS#dom-uievent-detail
m.view:~UIEVENTS#dom-uievent-view
m.show:~HEinteractive#dom-dialog-show
m.showModal:~HEinteractive#dom-dialog-showmodal
m.designMode:#dom-document-designmode
m.new CloseWatcher:#dom-closewatcher
m.requestClose:#dom-closewatcher-requestclose
m.close:#dom-closewatcher-close
m.destroy:#dom-closewatcher-destroy
m.oncancel:#handler-closewatcher-oncancel
m.onclose:#handler-closewatcher-onclose
m.preventDefault:~DOM4#dom-event-preventdefault
m.cancelable:~DOM4#dom-event-cancelable
m.pointerType:~POINTEREVENTS#dom-pointerevent-pointertype
mb.signal:#dom-closewatcheroptions-signal
■css
p.outline:~CSSUI#propdef-outline
p.overflow:~CSSOVERFLOW3#propdef-overflow
p.white-space:~CSSTEXT#propdef-white-space
p.pointer-events:~CSSUI#pointer-events-control
p.user-select:~CSSUI#content-selection
p.content-visibility:~CSSCONTAIN#propdef-content-visibility
p.display:~CSSDISP#propdef-display
■e
e.a:~HEtextlevel#the-a-element
e.area:~HEimages#the-area-element
e.iframe:~HEembed#the-iframe-element
e.img:~HEimages#the-img-element
e.frame:~HTMLobs#frame
e.canvas:~HEcanvas#the-canvas-element
e.input:~HEinput#the-input-element
e.button:~HEforms#the-button-element
e.form:~HEforms#the-form-element
e.label:~HEforms#the-label-element
e.output:~HEforms#the-output-element
e.select:~HEforms#the-select-element
e.textarea:~HEforms#the-textarea-element
e.details:~HEinteractive#the-details-element
e.dialog:~HEinteractive#the-dialog-element
e.summary:~HEinteractive#the-summary-element
e.div:~HEgrouping#the-div-element
e.link:~HEmetadata#the-link-element
e.object:~HEembed#the-object-element
e.video:~HEmedia#the-video-element
e.slot:~HEscripting#the-slot-element
e.a:~SVGlinking#elementdef-a
■#attr-
a.accesskey:#the-accesskey-attribute
a.aria-describedby:~ARIA1#aria-describedby
a.autocapitalize:#attr-autocapitalize
a.autocorrect:#attr-autocorrect
a.autofocus:#attr-fe-autofocus
a.contenteditable:#attr-contenteditable
a.disabled:~HTMLforms#attr-fe-disabled
a.draggable:~HTMLdnd#attr-draggable
a.enterkeyhint:#attr-enterkeyhint
a.form:~HTMLforms#attr-fae-form
a.hidden:#attr-hidden
a.href:~HTMLlinks#attr-hyperlink-href
a.inert:#the-inert-attribute
a.inputmode:#attr-inputmode
a.open:~HEinteractive#attr-details-open
a.pattern:~HEinput#attr-input-pattern
a.readonly:~HEinput#attr-input-readonly
a.spellcheck:#attr-spellcheck
a.src:~HEimages#attr-img-src
a.tabindex:#attr-tabindex
a.title:~HTMLdom#attr-title
a.type:~HEinput#attr-input-type
a.~readonly0:~HEforms#attr-textarea-readonly
a.writingsuggestions:#attr-writingsuggestions
v.none:#attr-inputmode-keyword-none
v.text:#attr-inputmode-keyword-text
v.tel:#attr-inputmode-keyword-tel
v.url:#attr-inputmode-keyword-url
v.email:#attr-inputmode-keyword-email
v.numeric:#attr-inputmode-keyword-numeric
v.decimal:#attr-inputmode-keyword-decimal
v.search:#attr-inputmode-keyword-search
vC.none:#attr-autocapitalize-none
vC.off:#attr-autocapitalize-off
vC.on:#attr-autocapitalize-on
vC.sentences:#attr-autocapitalize-sentences
vC.words:#attr-autocapitalize-words
vC.characters:#attr-autocapitalize-characters
v.off:#attr-autocorrect-off
v.on:#attr-autocorrect-on
v.enter:#attr-enterkeyhint-keyword-enter
v.done:#attr-enterkeyhint-keyword-done
v.go:#attr-enterkeyhint-keyword-go
v.next:#attr-enterkeyhint-keyword-next
v.previous:#attr-enterkeyhint-keyword-previous
v.~search0:#attr-enterkeyhint-keyword-search
v.send:#attr-enterkeyhint-keyword-send
v.until-found:#attr-hidden-until-found
v.hidden:#attr-hidden-hidden
v.true:#attr-contenteditable-true
v.false:#attr-contenteditable-false
v.plaintext-only:#attr-contenteditable-plaintextonly
vS.true:#attr-spellcheck-true
vS.false:#attr-spellcheck-false
vW.true:#attr-writingsuggestions-true
vW.false:#attr-writingsuggestions-false
■event
et.beforematch:~HTMLindex#event-beforematch
et.blur:~HTMLindex#event-blur
et.cancel:~HTMLindex#event-cancel
et.change:~HTMLindex#event-change
et.close:~HTMLindex#event-close
et.focus:~HTMLindex#event-focus
et.fullscreenchange:~FULLSCREEN#eventdef-document-fullscreenchange
et.click:~UIEVENTS#event-type-click
et.keydown:~UIEVENTS#event-type-keydown
et.mousedown:~UIEVENTS#event-type-mousedown
et.pointerup:~POINTEREVENTS#the-pointerup-event
et.pointerdown:~POINTEREVENTS#the-pointerdown-event
et.scroll:~CSSOMVIEW#eventdef-document-scroll
et.toggle:~HTMLindex#event-toggle
et.touchend:https://w3c.github.io/touch-events/#event-touchend
et.visibilitychange:~HTMLindex#event-visibilitychange
st.Email:~HEinput#email-state-(type=email)
st.Hidden:~HEinput#hidden-state-(type=hidden)
st.Number:~HEinput#number-state-(type=number)
st.Password:~HEinput#password-state-(type=password)
st.Search:~HEinput#text-(type=text)-state-and-search-state-(type=search)
st.Tel:~HEinput#telephone-state-(type=tel)
st.Text:~HEinput#text-(type=text)-state-and-search-state-(type=search)
st.Url:~HEinput#url-state-(type=url)
st.~on:#concept-autocorrection-on
st.~off:#concept-autocorrection-off
st.非可視でない:#attr-hidden-not-hidden-state
st.非可視:#attr-hidden-hidden-state
st.見出されるまでは非可視:#attr-hidden-until-found-state
stS.~T:#attr-spellcheck-true-state
stS.~F:#attr-spellcheck-false-state
stS.既定:#attr-spellcheck-default-state
stW.~T:#attr-writingsuggestions-true-state
stW.~F:#attr-writingsuggestions-false-state
stW.既定:#attr-writingsuggestions-default-state
aH.既定:#autocap-hint-default
aH.なし:#autocap-hint-none
aH.一文ごと:#autocap-hint-sentences
aH.単語ごと:#autocap-hint-words
aH.文字ごと:#autocap-hint-characters
cF.動作:~HEinteractive#command-facet-action
cF.不能化されるか:~HEinteractive#command-facet-disabledstate
cF.隠されるか:~HEinteractive#command-facet-hiddenstate
先祖~detailsを露呈する:~HEinteractive#ancestor-details-revealing-algorithm
ps.focus-visible:~SELECTORS4#focus-visible-pseudo
st.~T:#attr-contenteditable-true-state
st.~F:#attr-contenteditable-false-state
st.素な~textのみ:#attr-contenteditable-plaintextonly-state
st.継承-:#attr-contenteditable-inherit-state
●用語
要素:#_element
文書:~HTMLdom#the-document-object
~tabindex値:#tabindex-value
失効-:#activation-expiry
作動化を誘発する入力~event:#activation-triggering-input-event
利用者-作動化を消費-:#consume-user-activation
履歴~動作による作動化を消費する:#consume-history-action-user-activation
履歴~動作による作動化を消費-:#consume-history-action-user-activation
最後の作動化の時刻印:#last-activation-timestamp
最後の履歴~動作による作動化の時刻印:#last-history-action-activation-timestamp
居残な作動化を有して:#sticky-activation
一過な作動化を有して:#transient-activation
履歴~動作による作動化を有して:#history-action-activation
一過な作動化の所要時間:#transient-activation-duration
作動化を通知する:#activation-notification
作動化を消費する:#activation-consuming-api
一過な作動化を消費する~API:#activation-consuming-api
履歴~動作による作動化を消費する~API:#history-action-activation-consuming-api
居残な作動化で通過制御される~API:#sticky-activation-gated-api
一過な作動化で通過制御される~API:#transient-activation-gated-api
利用者-作動化で通過制御される~API:#user-activation-gated-apis
結付けられた~UserActivation:#associated-useractivation
アテガわれた~access~UIkey:#assigned-access-key
阻んでいる~modal~dialog:#blocked-by-a-modal-dialog
doc.可視性~状態:#visibility-state
可視性~状態を更新する:#update-the-visibility-state
~page可視性~変化-時の手続き:#page-visibility-change-steps
vsE.時刻印:#visibilitystateentry-timestamp
vsE.可視性~状態:#visibilitystateentry-state
~design~modeは可能化されるか:#design-mode-enabled
編集中の~host:#editing-host
~clickは進捗-中か:#click-in-progress-flag
~toggle~task追跡子:#toggle-task-tracker
tTk.~task:#toggle-task-task
tTk.旧-状態:#toggle-task-old-state
~DOM~anchor:#dom-anchor
~focus鎖:#focus-chain
~focusを獲得した:#gains-focus
~focusを得ている:#has-focus-steps
~focusされて:#focused
~focus可能な区画:#focusable-area
~focus可能な図形:#_focusable-shape
~focus可能:#focusable
連列的に~focus可能:#sequentially-focusable
~clickで~focus可能:#click-focusable
~system~focus:#system-focus
利用者の注目:#user-attention
~top-level辿可能にて全部的に作動中かつ利用者の注目を得ている子孫:#fully-active-descendant-of-a-top-level-traversable-with-user-attention
tlT.現在の~focus鎖:#current-focus-chain-of-a-top-level-traversable
tlT.現在の被focus区画:#currently-focused-area-of-a-top-level-traversable
doc.指名する被focus区画:#focused-area-of-the-document
~focusを更新する:#focus-update-steps
~objを~unfocusする:#unfocusing-steps
~objを~focusする:#focusing-steps
~focus可能な区画を取得する:#get-the-focusable-area
自動focusは処理-済みか:#autofocus-processed-flag
自動focus候補~群:#autofocus-candidates
自動focus候補~群を洗出す:#flush-autofocus-candidates
自動focus委任-先:#autofocus-delegate
~focus委任-先:#focus-delegate
:#bc-focus-ergo-bcc-focus
相応しい連列的に~focus可能な区画:#suitable-sequentially-focusable-area
~focus用に~lockされたか:#locked-for-focus
連列的~focus~navi:#sequential-focus-navigation
連列的~focus~navi順序:#sequential-focus-navigation-order
連列的~focus~naviの始点:#sequential-focus-navigation-starting-point
適切になるなら:#concept-platform-dropeffect-override
concept-platform-dropeffect-override-
不活:#inert
既定の挙動:#concept-spellcheck-default
i.既定では継承する:#concept-spellcheck-default-inherit
i.既定では~T:#concept-spellcheck-default-true
i.既定では~F:#concept-spellcheck-default-false
連列的~navi探索~algo:#sequential-navigation-search-algorithm
~source~node:#source-node
連列的~focus方向:#sequential-focus-direction
i.前方:#sequential-focus-forward
i.後方:#sequential-focus-backward
選定法:#selection-mechanism
i.~DOM順:#selection-mechanism-dom
i.連列的:#selection-mechanism-sequential
~focus~navi視野:#focus-navigation-scope
~tabindex順な~focus~navi視野:#tabindex-ordered-focus-navigation-scope
平坦~化された~tabindex順な~focus~navi視野:#flattened-tabindex-ordered-focus-navigation-scope
結付けられた~focus~navi所有者:#associated-focus-navigation-owner
~focus~navi視野の所有者:#focus-navigation-scope-owner
自動頭字化~hint:#autocapitalization-hint
自前の自動頭字化~hintを算出する:#own-autocapitalization-hint
利用する自動頭字化~hintを算出する:#used-autocapitalization-hint
自動頭字化-と自動訂正-を継承-:~HEforms#category-autocapitalize
利用する自動訂正~状態を算出する:#used-autocorrection-state
自動focus根:#nearest-ancestor-autofocus-scoping-root-element
~find-in-page:#find-in-page-2
~find-in-page~UI:#find-in-page-interface
fiP.~query:#fip-query
fiP.合致-~list:#fip-matches
fiP.作動中な合致-:#fip-active-match
見出されるまでは非可視な先祖を露呈する:#ancestor-hidden-until-found-revealing-algorithm
閉-注視器:#close-watcher
cW.~window:#close-watcher-window
cW.閉-動作:#close-watcher-close-action
cW.取消-動作:#close-watcher-cancel-action
cW.取消-動作を走らせているか:#close-watcher-is-running-cancel
cW.可能化~状態を取得する:#close-watcher-get-enabled-state
cW.作動中:#close-watcher-active
閉-要請:#close-request
閉-要請~手続き:#close-request-steps
閉-注視器を確立する:#establish-a-close-watcher
閉-注視器たちを処理する:#process-close-watchers
内部~閉-注視器:#internal-close-watcher
閉-注視器に閉じるよう要請する:#close-watcher-request-close
閉-注視器を閉じる:#close-watcher-close
閉-注視器を破壊する:#close-watcher-destroy
閉-注視器~管理器:#close-watcher-manager
cwM.許容される~groupの個数:#close-watcher-manager-allowed-number-of-groups
cwM.~group群:#close-watcher-manager-groups
cwM.次回の利用者-作動化は新たな~groupを許容するか:#close-watcher-manager-next
利用者-作動化について閉-注視器~管理器に通知する:#notify-the-close-watcher-manager-about-user-activation
書法~示唆~値を算出する:#computed-writing-suggestions-value
●用語(HTML
~HTML要素:~HTMLINFRA#html-elements
即時に:~HTMLINFRA#immediately
~live:~HTMLINFRA#live
文書の中へ挿入された:~HTMLINFRA#insert-an-element-into-a-document
反映する:~HTMLcdom#reflect
既定の値:~HTMLcdom#default-value
既知な値のみに制限され:~HTMLcdom#limited-to-only-known-values
列挙d属性:~HTMLcms#enumerated-attribute
真偽-属性:~HTMLcms#boolean-attribute
妥当でない値~用の既定の状態:~HTMLcms#invalid-value-default
欠落~値~用の既定の状態:~HTMLcms#missing-value-default
整数として構文解析する:~HTMLcms#rules-for-parsing-integers
~space等で分離された~token集合:~HTMLcms#set-of-space-separated-tokens
妥当な整数:~HTMLcms#valid-integer
~body要素:~HTMLdom#the-body-element-2
~navigable:~HTMLds#navigable
nav.親:~HTMLds#nav-parent
nav.作動中な文書:~HTMLds#nav-document
nav.作動中な~window:~HTMLds#nav-window
nav.~top-level辿可能:~HTMLds#nav-top
nav.容器:~HTMLds#nav-container
子~navigable:~HTMLds#child-navigable
~top-level辿可能:~HTMLds#top-level-traversable
辿可能な~navigable:~HTMLds#traversable-navigable
nav.~system可視性~状態:~HTMLds#system-visibility-state
先祖~navigable群:~HTMLds#ancestor-navigables
子孫~navigable群:~HTMLds#descendant-navigables
広義-先祖~navigable群:~HTMLds#inclusive-ancestor-navigables
広義-子孫~navigable群:~HTMLds#inclusive-descendant-navigables
~navigable容器:~HTMLds#navigable-container
内容~navigable:~HTMLds#content-navigable
~node~navigable:~HTMLds#node-navigable
全部的に作動中:~HTMLds#fully-active
閲覧~文脈:~HTMLds#browsing-context
属する閲覧~文脈:~HTMLds#concept-document-bc
bc.作動中な~window:~HTMLds#active-window
対応する~navigable:~WINDOW#window-navigable
結付けられた文書:~WINDOW#concept-document-window
~navi~API:~HTMLnavAPI#window-navigation-api
進行中な~naviの間に~focusは変化したか:~HTMLnavAPI#focus-changed-during-ongoing-navigation
~target要素:~HTMLnav#target-element
素片へ~navigateする:~HTMLnav#navigate-fragid
作動中な~sandbox法~flag集合:~ORIGIN#active-sandboxing-flag-set
閲覧~文脈~sandbox化( 自動的な特能 )~flag:~ORIGIN#sandboxed-automatic-features-browsing-context-flag
同一-生成元:~ORIGIN#same-origin
~task:~WAPI#concept-task
~taskを~queueする:~WAPI#queue-a-task
~click~eventを発火する:~WAPI#fire-a-click-event
~focus~eventを発火する:#fire-a-focus-event
合成な~pointer~eventを発火する:~WAPI#fire-a-synthetic-pointer-event
関連な~realm:~WAPI#concept-relevant-realm
関連な大域~obj:~WAPI#concept-relevant-global
利用者~対話~task~source:~WAPI#user-interaction-task-source
大域~taskを~queueする:~WAPI#queue-a-global-task
~event~handler:~WAPI#event-handlers
~event~handler~event型:~WAPI#event-handler-event-type
~event~handler~IDL属性:~WAPI#event-handler-idl-attributes
fe.不能化されて:~HTMLforms#concept-fe-disabled
fe.変異-可能:~HTMLforms#concept-fe-mutable
fe.値:~HTMLforms#concept-fe-value
~form所有者:~HTMLforms#form-owner
利用者~妥当性:~HTMLforms#user-validity
入力~eventを発火する:~HEinput#_fire-input-event
選択された~file~list:~HEinput#concept-input-type-file-selected
~HEtextlevel#the-a-element
~HEinput#number-state-(type=number)
~HEinput#range-state-(type=range)
~HEinput#text-(type=text)-state-and-search-state-(type=search)
適用される:~HEinput#concept-input-apply
~commandを定義する:~HEinteractive#concept-command
親~details用の~summary:~HEinteractive#summary-for-its-parent-details
i.示している:~HTMLpopover#popover-showing-state
el.~popover呼出元:~HTMLpopover#popover-invoker
a.popover:~HTMLpopover#attr-popover
~popover要素:~HTMLpopover#_popover-element
st.~popoverなし:~HTMLpopover#attr-popover-none-state
~popover可視性~状態:~HTMLpopover#popover-visibility-state
実際に不能化-:~HTMLselectors#concept-element-disabled
~UI内に公開されている~control:~HEmedia#expose-a-user-interface-to-the-user
~scriptを阻んでいる~stylesheet集合:~HEmetadata#script-blocking-style-sheet-set
具現化され:~HTMLrendering#being-rendered
具現化されて:~HTMLrendering#being-rendered
その具現化を子へ委任して:~HTMLrendering#delegating-its-rendering-to-its-children
~hyperlink:~HTMLlinks#hyperlink
画像~map:~HEimages#image-map
●用語(外部
新たな~obj:~WEBIDLjs#new
実装定義:~INFRA#implementation-defined
~ASCII小文字~化する:~INFRA#ascii-lowercase
~ASCII大小無視:~INFRA#ascii-case-insensitive
~ASCII空白:~INFRA#ascii-whitespace
~ASCII空白で分割する:~INFRA#split-on-ascii-whitespace
~list:~INFRA#list
~size:~INFRA#list-size
空:~INFRA#list-is-empty
除去する:~INFRA#list-remove
付加する:~INFRA#list-append
空にする:~INFRA#list-empty
~cloneする:~INFRA#list-clone
拡張する:~INFRA#list-extend
構造体:~INFRA#struct
~item:~INFRA#list-item
sct.~item:~INFRA#struct-item
表示域:~CSS2J#viewport
~box~tree:~CSSDISP#box-tree
~CSS~box:~CSSDISP#box
~targetを~viewの中へ~scrollする:~CSSOMVIEW#scroll-a-target-into-view
平坦~tree:~CSSSCOPING#flat-tree
~focusを指示する:~SELECTORS4#indicate-focus
~node文書:~DOM4#concept-node-document
~tree順序:~DOM4#concept-tree-order
子:~DOM4#concept-tree-child
子孫:~DOM4#concept-tree-descendant
~node~tree:~DOM4#concept-node-tree
根:~DOM4#concept-tree-root
文書~内にある:~DOM4#in-a-document
文書~要素:~DOM4#document-element
親~要素:~DOM4#parent-element
広義-先祖:~DOM4#concept-tree-inclusive-ancestor → 親~要素
接続されて:~DOM4#connected
~host:~DOM4#concept-documentfragment-host
~shadow根:~DOM4#concept-shadow-root
~shadowも含めた子孫:~DOM4#concept-shadow-including-descendant
~shadowも含めた~tree順序:~DOM4#concept-shadow-including-tree-order
~shadowも含めた広義-先祖:~DOM4#concept-shadow-including-inclusive-ancestor
~shadow~host:~DOM4#element-shadow-host
el.~shadow根:~DOM4#concept-element-shadow-root
属性~値を設定する:~DOM4#concept-element-attributes-set-value
sR.~focusを委任するか:~DOM4#shadowroot-delegates-focus
割当-先~slot:~DOM4#slotable-assigned-slot
~eventを配送する:~DOM4#concept-event-dispatch
~eventを発火する:~DOM4#concept-event-fire
作動化の挙動:~DOM4#eventtarget-activation-behavior
ev.~composedか:~DOM4#composed-flag
ev.取消されたか:~DOM4#canceled-flag
~targetし直す:~DOM4#retarget
doc.生成元:~DOM4#concept-document-origin
aB.中止-済み:~DOM4#abortsignal-aborted
通達に~algoを追加する:~DOM4#abortsignal-add
現在の高分解能~時刻:~HRTIME#dfn-current-high-resolution-time
処理能~entryを~queueする:~TIMELINE#queue-a-performanceentry
上端~層:~CSSPOS4#document-top-layer
~screen方位~変更~手続き:~SCREEN-ORIENTATION#dfn-screen-orientation-change-steps
~fullscreen要素:~FULLSCREEN#fullscreen-element
~fullscreenから全部的に抜出る:~FULLSCREEN#fully-exit-fullscreen
~URL:~URL1#concept-url
~view遷移の~page可視性~変化-時の手続き:~CSSVT#view-transition-page-visibility-change-steps
飛ばされた内容:~CSSCONTAIN#skips-its-contents
内容は飛ばされ:~CSSCONTAIN#skips-its-contents
~layout封込め:~CSSCONTAIN#layout-containment
選択:~SELECTIONAPI#dfn-selection
編集-可能:~EXEC-COMMAND#editable
属する編集中の~host:~EXEC-COMMAND#editing-host-of
作動中な範囲:~EXEC-COMMAND#active-range
選択を削除-:~EXEC-COMMAND#delete-the-selection
拡張~command:~WEBDRIVER#dfn-extension-commands
~remote端~手続き:~WEBDRIVER#dfn-remote-end-steps
現在の閲覧~文脈:~WEBDRIVER#dfn-current-browsing-context
成功:~WEBDRIVER#dfn-success
●●words_table1
WEBDRIVER:https://w3c.github.io/webdriver/
readonly0:readonly
search0:search
svg-a:a
Esc:<kbd>Esc</kbd>
●●words_table
●focus/dialog
順な:ordered:順による
連列的~focus~navi順序
~focus~navi序列
blur:
~focus可能:focusable
~focus不能:non-focusable
~focus時の:focusing
~focus能:focusability
被focus:focused::被 focus:被フォーカス
自動focus:autofocus::自動 focus:自動フォーカス
unfocus::::未フォーカスに
~unfocus時の:unfocusing
指名-:designate::~
届けら:routeさ::~
届ける:routeする::~
経由-:channeled
から経由され:channeled form
委任-先:delegate
委任-先~list:delegates
獲得した:gainした::得た
獲得しよ:gainしよ::得よ
tabindex:
図形:shape::~
到達-可能でない:unreachable
前方:forward::~
後方:backward::~
不活:inert::~
不活 性:inertness
環:ring::~
鎖:chain::~
隠す:hideする::~
隠-:hide::~
操作o:operation:操作
操作不能:inoperable:~
代役:placeholder:~
候補:candidate:~
選定法:selection mechanism:~
始点:starting point:~
scrolling::::スクロール
誘発元:trigger:~
注目:attention:~
進捗-中:in progress
ただちに:as soon as
巡る:travel
●編集
綴り:spelling:~
誤綴な:misspelled:綴りを誤った
検査ng:checking:検査
編集:editing::~
編集-:edit::~
編集中の:editing::~
編集-不能:non-editable
折返す:wrapする::折り返す
折返され:wrapされ::折り返され
折返ng:wrapping::折り返し
境界点:boundary point::~
選択-:select:~
選択:selection:~
字下げ:indentation:~
一文:sentence:文
自然言語:language:~
誤り:error::~::エラー
訂正:correction::~
不向き: not well suited
約物:punctuation character:~
●UI/呈示
tab化された:tabbed
^en:tabbing
UI:interface/user interface
design:
kiosk:
panel::::パネル
popup::::
bullet::::ビュレット
drag::::ドラッグ
drop::::ドロップ
picker:::選択 UI
autofill:
開く:openする:~
開な:openな:開いた
閉な:closedな:閉じた
閉じる:closeする:~
閉じら:closeさ:~
閉-:close:閉じ
閉じるための/閉じる際の:closing
押下げる:pressする:~
押下げら:pressさ:~
押下げた:pressした:~
押下n:press:押下げ
押下げること:pressing
押下げら:pressing down
放され:releaseされ:~
戻り:back:~
退-:dismiss:退け
退ける:dismissする:~
退けら:dismissさ:~
退けられた時点:upon dismissal
注視-:watch::~
注視器:watcher::~
find-in-page::::ページ内検索
popover:
下位widget:subwidget::下位 widget:下位ウィジェット
full::::フル
pointing::::ポインタ指示
十key:numeric keypad:::テンキーの類
修飾:modifier:~
呼出元:invoker:呼び出し元
声:voice:~
click:
外形線:outline:~
美観:aesthetics:~
欄:field::~::フィールド
合致するものを探索-:searching for matches
振動-:vibrate::~
示され:showされ:~
示して:showして:~
示す:showする:~
抜出る:exitする::抜け出る
alphabetic-mnemonic:alphabetic mnemonic::alphabetic 符号:アルファベット符号
電話番号:telephone number:~
email::::メール
手早く:quickに:~
書式:format::~
locale::::ロケール
affordance:
virtual-keyboard:virtual keyboard:::ソフトウェアキーボード
~keyboardのみの:keyboard-only
小数を含む:fractional
数的:numeric:~
数:numeric
PIN
自動頭字化-:autocapitalize::~
自動頭字化:autocapitalization::~
自動訂正-:autocorrect::~
自動訂正:autocorrection::~
字l:letter::字°
頭字化:capitalize::~
頭字:capital letter::~
voice:::声::ボイス
打込む:typeする:打ち込む:::タイプする
打込まれ:typeされ:打ち込まれ:::タイプされ
打込みそ:typeしそ:打ち込みそ
打込み:typing:打ち込み:::タイピング
打込んで:typeして:打ち込んで:::タイプして
打込んだ:typeした:打ち込んだ:::タイプした
組成-:compose::~
助けに:helpful
改行:new line:~
`Enter^Key ~UIkey:enter key
cue:
IME:input method editor:IME
能動的:active::~
知覚-:perceive:~
一過:transient::~
居残な:stickyな::居残る