-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDOM4-ja.html
25416 lines (23839 loc) · 627 KB
/
DOM4-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>DOM Standard 日本語訳</title>
<link rel="stylesheet" href="common.css" type="text/css">
<link rel="stylesheet" href="common-whatwg.css" type="text/css">
<style>
code > dfn {
/* for idl */
color: var(--K-color);
}
.bp-example {
display: block;
margin: 1em 0;
padding-bottom: 2.5em;
text-align: center;
font-size: 0.8em;
white-space: pre;
overflow: auto;
font-family: monospace0, monospace;
color: var(--K-color);
}
bp-node {
display: inline;
position: relative;
top: 6px;
border-top: solid 3px var(--N-color);
}
.bp-text {
border-top-color: var(--R-color);
color: var(--R-color);
}
.bp-x {
border-top-color: var(--G-color);
}
.bp-y {
border-top-color: var(--B-color);
}
bp-mark {
display: inline-block;
top: 0;
vertical-align: top;
}
div.trans-note {
margin: 1em;
border: solid thin currentcolor;
padding: 0.5em;
}
.domTree samp {
outline: thin solid currentcolor;
}
</style>
<script src="common0.js"></script>
<script src="common1.js" async></script>
<script>
Util.ready = function(){
const ifc_names = PAGE_DATA.ifc_names
.replace(/^\w+$/mg, function(name){
return name + ':#' + name.toLowerCase();
});
delete PAGE_DATA.ifc_names;
const source_data = {
ifc_names: Util.get_mapping(ifc_names),
persisted_parts: { _acks1: E('_acks1'), _ipr1: E('_ipr1') },
toc_main: 'MAIN0',
generate: expand,
populate: populate,
};
{
const bp_examples = Util.get_mapping(PAGE_DATA.bp_examples);
for(const key in bp_examples){
const ele = C('figure');
ele.className = 'bp-example';
ele.innerHTML = bp_examples[key]
.replace(/([\|\[\]\(\)])(\w?)/g, (match, t, w) => {
switch(t) {
case '|':
return w ? `<bp-mark>|\n<mark>${w}</mark></bp-mark>` : '|';
case '(':
return w ? `<bp-node class="bp-${w} bp-text">` : '<bp-node class="bp-text">';
case '[':
return w ? `<bp-node class="bp-${w}">` : '<bp-node>';
case ')':
case ']':
return '</bp-node>';
}
});
source_data.persisted_parts[`_dgm-${key}`] = ele;
}
}
Util.switchWordsInit(source_data);
/*
repeat('dl.idl-def > dt', function(e){
e.replaceWith(C('p'))
});
Util.del_j(); //
*/
}
function populate(){
// 要素複製
const visited = Object.create(null);
let node, e;
// Opera requires optional args, null, null
const itr = document.createNodeIterator(E('MAIN'), NodeFilter.SHOW_COMMENT, null, null);
while(node = itr.nextNode()){
const id = node.data;
if(id.slice(0,3) !== 'cp-') continue;
e = visited[id];
if(!e) {
e = E(id);
if(e) {
e.removeAttribute('id');
visited[id] = e;
} else {
console.log('source not found: ' + id);
continue;
}
}
node.replaceWith(e.cloneNode(true));
}
}
function expand(){
const class_map = this.class_map;
const tag_map = this.tag_map;
const link_map = this.link_map;
const ifc_names = this.ifc_names;
let in_idl = false;
let context_ifc = ''; // prefix 省略時の既定 interface 名
return this.html.replace(
/%[\w\-~一-鿆あ-ん?]+|([\^@$]@?)([\w\.]+)(\([ \w,\[\]=…"]*\))?|`(.+?)([\^@$])(\w*)|!+\n?/g,
create_html
);
function create_html(match, ind0, key, args, text, ind2, klass){
if(text){
key = text;
let href = '';
let href1 = '';
{
const n = key.indexOf('@');
if(n > 0) {
href1 = key.slice(n + 1);
key = key.slice(0, n);
text = key;
}
}
klass = klass || '';
switch(klass){
case 'r':
text = `[${text}]`;
href = `#biblio-${key.toLowerCase()}`;
break;
case 'l': // literal
text = `"<code class="literal">${text}</code>"`;
break;
case 'mc': // IDL 内の構築子
href = `#dom-${text.toLowerCase()}-${text.toLowerCase()}`;
text = 'constructor';
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
break;
case 'dgm':
return `<a id="_dgm-${key}">*</a>`;
break;
case 'en': // english words
return `<span lang="en">${text}</span>`
break;
}
const tag = tag_map[klass];
if(tag){
const classname = class_map[klass];
text = classname ? (
`<${tag} class="${classname}">${text}</${tag}>`
):(
`<${tag}>${text}</${tag}>`
);
}
if(ind2 === '^'){
return text;
}
href = href1 || link_map[ klass ? `${klass}.${key}` : key ] || href;
if(!href){
console.log(match);
return match;
}
switch(ind2){
case '$':
return `<a href="${href}">${text}</a>`;
case '@':
return `<dfn id="${href.slice(1)}">${text}</dfn>`;
}
return match;
} else if(key){
// idl constructs
let text = key, href;
if(!args && ( key in ifc_names ) ){
href = ifc_names[key];
if(ind0.length > 1){
// if(ind0[1] === '@'){
context_ifc = key;//.toLowerCase();
}
} else {
let ifc = context_ifc;
const dot = key.indexOf('.');
if(dot >=0 ){
ifc = key.slice(0, dot);
key = text = key.slice(dot + 1); //text
}
if( key === ifc ){
text = `new ${text}`; // constructor
}
href = `#dom-${ifc}-${key}`.toLowerCase();
if(args){
text += args.replace(/(\w+)(\s=\s\w+)?/g, '<var>$1</var>$2');
}
}
if(!in_idl){
text = `<code>${text}</code>`;
}
switch(ind0[0]){
case '^':
return text;
case '$':
return `<a href="${href}">${text}</a>`;
case '@':
return `<dfn id="${href.slice(1)}">${text}</dfn>`;
}
} else {
switch(match[0]){
case '%':
return `<var>${match.slice(1)}</var>`;
case '!':
in_idl = (match[1] === '!' );
return in_idl ? '<pre class="idl"><code>' : '</code></pre>';
default:
return match;
}
}
}
}
</script>
<script type="text/plain" id="_source_data">
●●options
spec_title:DOM
spec_date:2025-01-20
trans_update:2025-01-16
source_checked:240422
spec_status:LS
original_url:https://dom.spec.whatwg.org/
abbr_url:DOM4
ref_id_prefix:biblio-
ref_id_lowercase:true
site_nav:infrastructure,uievents,html,selector
copyright:,whatwg
trans_1st_pub:2012-01-28
●●class_map
E:error
e:element
A:attr
et:event-type
prod:production
jv:js-value
●●tag_map
b:b
i:i
E:code
e:code
A:code
et:code
prod:code
m:code
c:code
jv:code
V:var
cite:cite
em:em
mk:mark
●●words_table1
DOMissue:https://github.com/whatwg/dom/issues
COLOR_R:<span style="color:var(--R-color);">赤色区間</span>
COLOR_X:<span style="color:var(--G-color);">緑色区間</span>
COLOR_Y:<span style="color:var(--B-color);">青色区間</span>
CONSOLE:console-ja.html
XNLNS10:xml-names-ja.html
UIEVENTS-A:uievents-appendix-ja.html
Text: <code>Text</code>
is0:<code class="attr">is</code>
U0020:<span class="code-point">U+0020</span> <span class="cp-name">SPACE</span>
U002A:<span class="code-point">U+002A</span> (<span class="char-symbol">*</span>)
U003A:<span class="code-point">U+003A</span> (<span class="char-symbol">:</span>)
●●words_table
XMLNS:
●構造/node tree
light:
open:
閉な:closed::閉じた
非可視:hidden:~
閉な~shadowで非可視:closed-shadow-hidden
深優先前順な:preorder, depth-first:深さ優先かつ前順による
doctype:
属性o:attribute°::属性°
片:fragment::~::フラグメント
~~孤立する:alone
それだけで〜を成すすべて:alone in a
全順序:linear
先行-:precede::~
後続-:follow::~
のpartを成す/関与する
連続的:contiguous::~
●data 型 / data 操作
首:primary::~
首~interface:that implements the same interfaces as
数-:numeric:~
前挿入-:pre-insert::~
前除去-:pre-remove::~
受入-:adopt::~
代入:assignment::~
部分文字列:substring:~
連結-:concatenate:~
worklet:
派生d:derived::派生
上位の大域:superglobal
除去される~node:toBeRemovedNode
子も~cloneする:clone children
文字列~化-:stringify
文字列~化:stringification
直列化-:serialization
●一般処理
反復器:iterator::~
小task:microtask::小 task:小タスク
活動:activity:~
続行-:proceed:~
遭遇-:encounter:~
経路:path::~
受動-:passive::~
受動的:passive::~
composed:
*構成経路:composed::
相:phase::~::フェイズ
合成な:syntheticな::~
取消せな:uncancelable
伝播を即時に停止する:stop immediate propagation
伝播を停止する:stop propagation
未決着:unsettled::~
注視-:watch:~
再入的:reentrant:~
これまでに評価された:has ever been evaluated
形式変換-:transform::~
内部特能:internals::~
検査地点:checkpoint::~::チェックポイント
poll:
~pollしている:polling
捕捉-:capture::~
処理待ち:pending:~
不可分:atomic::~
不可分に:atomically
一度限りか:once
通達-時:signaling
通達-法:signaling
~promiseを返す:promise-returning
~targetし直す:retarget
validation
起動するもの:initiator
別~thread:cross-thread
走り終えた
引数:parameter
順に:in order
一括して:a batch of
一括:batch
●変数
%A:A
%A:(nodeA, offsetA)
%B:B
%B:(nodeB, offsetB)
%入力:input
%入力~token群:inputTokens
%~token群:tokens
%~token:-
%~token集合:-
%集合:set
%node
%~node
%挿入される~node:node
%~node群:nodes
%node:-
%nodeA:-
%nodeB:-
%選択子:selectors
%選択子:s
%S:s
%名前:qualifiedName
%名前:name
%名前:-
%名前~群:names
%~ns:namespace
%接頭辞:prefix
%局所~名:localName
%分割-結果:splitResult
%controller:-
%~event:event
%~event~interface:eventInterface
%~event構築子:eventConstructor
%~composed経路:composedPath
%経路:path
%現-~target:currentTarget
%現-~target~index:currentTargetIndex
%現-~targetの非可視~下位tree~level:currentTargetHiddenSubtreeLevel
%~index:index
%現-非可視~level:currentHiddenLevel
%最大-非可視~level:maxHiddenLevel
%type
%bubbles
%cancelable
%detail
%辞書 eventInitDict
%辞書 dictionary
%辞書~型:-
%~interface:-
%~interface:interface
%~realm:realm
%時刻:time
%~member:member
%値:value
%値:newValue
%capture:capture
%passive:passive
%once:once
%signal:signal
%型
%~target:eventTarget
%~target:target
%~targetを上書きするか:targetOverride
%~target~clear用の構造体:clearTargetsStruct
%~targetたちを~clearするか:clearTargets
%文書:-
%文書:document
%文書片:-
%文書片:fragment
%~listener:listener
%~listener群:listeners
%捕捉するか:capture
%受動的か:passive
%一度限りか:once
%通達:-
%通達:signal
%通達~群:signals
%通達~interface:signalInterface
%通達~slot集合:signalSet
%L
%大域~obj:global
%~callback群:callbacks
-:legacyOutputDidListenersThrowFlag
%上書きする~target:targetOverride
%作動化~target:activationTarget
%関係する~target:relatedTarget
%~touch~target群:touchTargets
%~touch~target:touchTarget
%作動化~eventか:isActivationEvent
%~slot可能:slottable
%~slot可能~群:slottables
%~slotは閉な~tree内か:slot-in-closed-tree
%親:parent
%親は接続されているか:isParentConnected
%構造体:struct
%呼出n~target:invocationTarget
%~shadow調整-済み~target:shadowAdjustedTarget
%呼出n~targetは~shadow~tree内か:invocationTargetInShadowTree
%閉な~treeの根か:root-of-closed-tree
%相:phase
%相:-
%見出されたか:found
%元の~event型:originalEventType
%現在の~event:currentEvent
%e
%記述:description
%何かするか:doAction
%reason:reason
%制御器:controller
%事由:reason
%milliseconds:milliseconds
%~algo:algorithm
%依存~通達:dependentSignal
%中止する依存~通達~群:dependentSignalsToAbort
%結果~通達:resultSignal
%~source通達:sourceSignal
%~promise:promise
%すごい結果
%p
%N:-
%旧-値:oldValue
%要素:-
%要素:element
%要素の内部特能から可用か:-
%~openか:open flag
%~shadow:shadow
%~shadow根:-
%現在の~shadow根:currentShadowRoot
%~slot:-
%~slot:slot
%~slot可能:slottables
%結果:result
%結果:s
%結果:-
%根:root
%根:-
%~host:host
%子:slottable
%子:child
%子孫:descendant
%~slot割当n~mode
%基準~子:referenceChild
%観測器は抑止するか:suppress observers flag
%offset:offset
%count:count
%data:data
%offsetA:offsetA
%offsetB:offsetB
%C
%範囲o:-
-:copyAttribute
%直前の同胞:previousSibling
%広義-子孫:inclusiveDescendant
%静的な~node~list:staticNodeList
%除去-済み~node群:removedNodes
%追加-済み~node群:addedNodes
%除去された~node:removedNode
%反復器:iterator
%反復器:nodeIterator
%直後の同胞:oldNextSibling
%直後の同胞:nextSibling
%広義-先祖:inclusiveAncestor
%登録-済み:registered
%登録-済み~list:registered observer list
%文字列:string
%およそ直前の同胞:viablePreviousSibling
%およそ直後の同胞:viableNextSibling
%O:-
%~ID:-
%通知-集合:notifySet
%記録~群:records
%種別:type
%有関係~観測器~群:interestedObservers
%登録-済み:registered
%観測器:mo
%観測器:observer
%~map先の旧-値:mappedOldValue
%記録:record
%長さ:length
%除去-対象:-
%除去-対象:nodes to remove
%~data:data
%~data群:-
%text:-
%複製:copy
%下位treeか:subtree
%属性o:attribute
%属性o:attr
%属性o:-
%他~node:node1
%自~node:node2
%他~属性o:attr1
%自~属性o:attr2
%既定~ns:defaultNamespace
%有修飾~名:qualifiedName
%classNames:classNames
%~class群:classes
%is:is
%旧-文書:oldDocument
%構築子:constructor
%interface
%~doctype:-
%H:-
%~tree:-
%状態:-
%同期~custom要素か:synchronousCustomElements
%定義:definition
%C:C
%C1:-
%新-値:newValue
%旧-属性o:oldAttr
%新-属性o:newAttr
%qualifiedName
%~mode:mode
%~clone可能か:clonable
%~focusを委任するか:delegatesFocus
%~shadow:shadow
%where:where
%差分:-
%条件:-
%~list:-
%新-~data:new data
%新-~node:new node
%始端~node:-
%終端~node:-
%先祖:-
%P:-
%Q:-
%端:-
%境界点:bp
%index:index
%この点:this point
%基準点:other point
%元の始端~node:original start node
%元の始端~offset:original start offset
%元の終端~node:original end node
%元の終端~offset:original end offset
%新-~offset:new offset
%clone:clone
%共通な広義-先祖:common ancestor
%部分的に包含された最初の子:first partially contained child
%部分的に包含された最後の子:last partially contained child
%包含された子~群:contained children
%下位-範囲o:subrange
%下位-素片:subfragment
%包含された子:contained child
%始端~offset:start offset
%基準~node:referenceNode
%終端~offset:end offset
%辿器:traverser
%n:n
%除去される~node:toBeRemovedNode
%直後の:next
%方向:direction
%直前か:beforeNode
%~collection:collection
%walker:walker
%向き:type
%同胞:sibling
%temporary:temporary
-:isScriptElement
%変換-済み~node群:-
挿入された`~node$:insertedNode
接続された`~node$:connectedNode
%例外:exception
●計時
時計:clock:~
高分解能:high resolution::高分解能
milli:milli-:::ミリ
~milli秒数:number of milliseconds
~milli秒後:in milliseconds
timeout::::タイムアウト
timer::::タイマー
粗い:coarseな:~
現在時:now
差分:offset
までの細かさ:minimum
何かが生じた:occurrence/:something has occurred
~~発生:occurrence
次に起きる出来事:what happens next
〜までの間:duration
●名前空間
局所~名:local name
ns:namespace::名前空間
locate::特定
有修飾:qualified:~
●custom
~custom化:customize
昇格:upgrade::~::アップグレード
定義-済み
検索-:look up::~
●slot
slot:
割当n:assignment::あてがい
割当-:assign::あてがい
割当-先:assigned
割当-先:assignment
割当n~mode:assignment
割当され:assignされ::あてがわれ
割当する:assignする::あてがう
割当した:assignした::あてがった
割当法:assigning::あてがい方
見出法:finding:見出し方
●Range
範囲o:range°::範囲°
~~範囲
境界点:boundary point::~
位置bp:position::位置
位置-:位置
位置:位置
相対位置
位置変化
位置関係
中身:内容
交わる:intersectする:~
交わら:intersectし:~
畳まれ:collapseされ:~
畳む:collapseする:~
選択-:select:~
基準点:this point
この点:other point
●collection
辿器:traverser::辿り器
whatToShow:
濾過器
濾過する
視野ng:scoping::視野::スコーピング
合致:match::~::マッチ
bitmask::::ビットマスク
●仕様
制限付き:limited:~
制限付き:limited-
過去互換なし:no-quirks
多彩:rich:~
設計者:designer:~
所産:artifact:~
理想的:ideal:~
劇的:dramatic:~
冗長:redundant:~
中立的:neutral:~
精細:granular:~
旧式:old-style:~
環境設定:configurations:~
高価:expensive:~
軽量:lightweight:~
拡張用:extensibility:~
指図-:instruct:~
計画-:plan:~
望み:wishes:~
衝突-:clash:~
保つ:keepする:~
支払う:payする:~
警告:warning:~
処する:dealする:~
互換でない:incompatible
~port可能:portable
な限り:as much as
簡便:convenience
無用の長物:useless
problematic
適用-可能:applicable
出発点:starting point
広い:broader
~~原因:cause
~~目的
様子:how
略語:short for
言葉を代えれば:Phrased differently,
進路:course
小論:essays
報告書:reports
本格的:fully-fledged
手品:magic
~~仕組:magic
出来上がる:comes out
十分:
不要:
~~的外れ:nonsensical
~~選択:-
名称:names
否決:vetoed
編集-時:editing
事実:fact
ほど遠い:not nearly as reliable or granular
~~判明:proved
~~根拠を示す:showing
編集者:editors
~~制御:key off
便宜のため:For convenience
区別:avoid confusion
のふるまいに揃える:align with
用途:for
~~無視:not pay attention
~~理由:mishap/because
注意:notice that
賢く:wise に
記述
必要:has to/
~~強調:called out
誤った考え:wrong ideas
人:folks
particular
hairy
何もしない:no-op/:empty
により、:because of
今の所:for now,
あるとする:hypothetical
もっぱら:exclusive
最新:up-to-date
するものもある:sometimes
〜を指して:refer
単に:For brevity
働き続けられる:don’t stop working
要-:require
~~指定:flag:
定義-法:defining
操作-:manipulation
~~説明:illustrate
想定-:suppose
内部処理用の:bookkeeping purposes
存続-:continues to exist
揃わせ:Aligning
代わるもの:replacement
不要にする:replaces the need
~~廃する:rid of
論を交わし:discussion
~Fに:clear
~~尊守され:enshrined
知らせて:Let us know
満たす:meet/
気にする:worry about
選べ:choose
必要に応じて:according to their needs
関心がなく:uninterested
引き続き:remain
表に出-:surface
ようにする:opt
とりわけ:among other things
~~実際に:indeed
HTML$r:HTML Standard
主要:major
至る:leading
運ぶ:carry
運ばせ:carry
●未分類
重複:duplicate:~
付-:attach:~
XPath:
XSLT:
void:
agent:
surrounding:
multimedia::::マルチメディア
scrolling::::スクロール処理
touch:
wheel:
弱い:weakな:~
基準:reference:~
不正確:inaccurate:~
同等:equal:~
式:expression:~
body:
起点r:reference:起点
起点:origin::~
依存:dependent:~
最大-:max:~
現-:current:~
旧-:old:旧
新-:new:新
広義-:inclusive:~
狭義-:exclusive:~
直前の:previous
直後の:next
`required^c を伴う:required
調整-済み:-adjusted
渡-:pass
生成元が類似な:similar-origin
Checkbox
Radio
16進:hex
連続する:adjacent/a sequence of
一致
除外-:exclude
処理過程:process
処理
並び:sequence of
された:got
-:lead
-:controller
すごいこと:amazing
すごい結果:amazingResult
何かする:doAction
つまらない:Boring
内的に:inner
内部:-
広く:widely
時点:
以降:
初回:first time
ときには、:ocassionally
前回:
今度は:now
現在:
すべてまたは一部の:all or some
唯一つ:only one
唯一の:the sole
すべて:all
範囲:
もの:thing
上/上述:above
一環:part of
両方/両者/両:both
複数:
複数個:more than one
隙間:
終了:end
逆順:reverse
番目:
差分:
隣接:
個以上:
以前:
項目:
列目:
個目:
度目:
二番目:
下記
開始
末尾側:
末尾:
片方:
末端:
各種:
一連:
時点:
対象:
該当:
後続:
左側:
直前:
直後:
部分:
一部:
対応している:corresponding
対応:correspond
同様:
以外:
以下:
自身:
先頭:
個数:
最後:last
最初:first
任意:
有限個:
有限:
箇所:
各項:
合間:between
最高:
後述:
一種:
一対一:
一対一に対応:1:1 mapping
一列:
一個:
本数:
各数字:
最下位:
逆向:
前述:
一例:
全体: