-
Notifications
You must be signed in to change notification settings - Fork 8
/
HTML-common-dom-interfaces-ja.html
3253 lines (3066 loc) · 82.7 KB
/
HTML-common-dom-interfaces-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 — Common DOM interfaces(日本語訳)</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: 'common-dom-interfaces',
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 'I':
break;
case 'm':
case 'sL':
const n = text.indexOf('(');
if(n > 0){
key = text.slice(0, n);
text = key + text.slice(n).replace(/\w+/g, '<var>$&</var>');
}
break;
case 'sc': // url scheme
text = key.replace(/_/, ':');
break;
case 'ps':
text = `:${key}`;
break;
case 'h':
text = `\`<code class="header">${text}</code>\``;
break;
case 't':
text = `<${key}>`;
break;
case 'jI': // JS intrinsic
text = `%${key}%`;
break;
case 'U':
text = `U+${key}`;
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:2024-08-26
trans_update:2024-08-26
source_checked:220610
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/common-dom-interfaces.html
nav_prev:HTMLurl
nav_next:HTMLcloning
trans_1st_pub:2016-01-28
●●class_map
e:element
a:attr
st:attr-state
et:event-type
sc:scheme
ps:pseudo
p:production
dir:directive
v:value
E:error
js:js-other
jA:abstract
t:type
U:code-point
cn:cp-name
●●tag_map
I:code
m:code
sL:code
E:code
c:code
e:code
a:code
st:i
sc:code
et:code
v:code
p:code
ps:code
dir:code
js:span
jA:span
V:var
t:var
mark:mark
dfn:dfn
i:i
U:span
cn:span
cite:cite
●●original_id_map
●●mdn_urls
htmlformcontrolscollection:API/HTMLFormControlsCollection
htmloptionscollection:API/HTMLOptionsCollection
radionodelist:API/RadioNodeList
domstringlist:API/DOMStringList
●●link_map
●idl
CEReactions:~HEcustom#cereactions
FrozenArray:~WEBIDL#idl-frozen-array
I.boolean:~WEBIDL#idl-boolean
I.double:~WEBIDL#idl-double
I.long:~WEBIDL#idl-long
I.unsigned long:~WEBIDL#idl-unsigned-long
I.unrestricted double:~WEBIDL#idl-unrestricted-double
I.DOMString:~WEBIDL#idl-DOMString
I.USVString:~WEBIDL#idl-USVString
I.HTMLElement:~HTMLdom#htmlelement
I.Comment:~DOM4#comment
I.DOMTokenList:~DOM4#interface-domtokenlist
I.DocumentFragment:~DOM4#interface-documentfragment
I.Element:~DOM4#interface-element
I.NodeList:~DOM4#interface-nodelist
I.HTMLCollection:~DOM4#interface-htmlcollection
I.ElementInternals:~HEcustom#elementinternals
I.HTMLFormControlsCollection:#htmlformcontrolscollection
I.HTMLOptGroupElement:~HEforms#htmloptgroupelement
I.HTMLOptionElement:~HEforms#htmloptionelement
I.HTMLOptionsCollection:#htmloptionscollection
I.RadioNodeList:#radionodelist
I.HTMLAllCollection:~HTMLLS/common-dom-interfaces.html#htmlallcollection
I.DOMStringList:#domstringlist
I.DOMException:~WEBIDL#idl-DOMException
E.HierarchyRequestError:~WEBIDL#hierarchyrequesterror
E.NotFoundError:~WEBIDL#notfounderror
E.IndexSizeError:~WEBIDL#indexsizeerror
●idl member
■member
sL.item:#dom-domstringlist-item
sL.length:#dom-domstringlist-length
sL.contains:#dom-domstringlist-contains
m.~length0:~DOM4#dom-htmlcollection-length
m.~namedItem0:~DOM4#dom-htmlcollection-nameditem
m.item:~DOM4#dom-htmlcollection-item
m.value:#dom-radionodelist-value
m.add:#dom-htmloptionscollection-add
m.length:#dom-htmloptionscollection-length
m.namedItem:#dom-htmlformcontrolscollection-nameditem
m.remove:#dom-htmloptionscollection-remove
m.selectedIndex:#dom-htmloptionscollection-selectedindex
m.setter:#dom-htmloptionscollection-setter
c.document.all:~HTMLLS/obsolete.html#dom-document-all
m.crossOrigin:~HEscripting#dom-script-crossorigin
m.~selectedIndex0:~HEforms#dom-select-selectedindex
●element
e.form:~HEforms#the-form-element
e.input:~HEinput#the-input-element
e.optgroup:~HEforms#the-optgroup-element
e.option:~HEforms#the-option-element
e.select:~HEforms#the-select-element
●attr
a.name:#_attr-*-name
a.name:~HTMLforms#attr-fe-name
a.name:~HTMLobs#attr-option-name
a.type:~HEinput#attr-input-type
a.value:~HEinput#attr-input-value
a.id:~HTMLdom#the-id-attribute
st.Radio:~HEinput#radio-button-state-(type=radio)
●反映
反映:#reflect
反映-:#reflect
反映する:#reflect
既定の値:#default-value
V.~IDL属性:#_reflected-idl-attr
V.~target:#_reflected-target
V.内容~属性~名:#_reflected-content-attr-name
V.既定~値:#_idl-attr-default-value
内容~属性を削除する:#delete-the-content-attribute
内容~属性を取得する:#get-the-content-attribute
要素を取得する:#get-the-element
反映される内容~属性~名:#reflected-content-attribute-name
反映される~IDL属性:#reflected-idl-attribute
反映される~target:#reflected-target
内容~属性を設定する:#set-the-content-attribute
eI.~supportする:#support-elementinternals
既知な値のみに制限され:#limited-to-only-known-values
負でない整数のみに制限され:#limited-to-only-non-negative-numbers
正な整数のみに制限され:#limited-to-only-non-negative-numbers-greater-than-zero
~fallbackありの下で正な整数のみに制限され:#limited-to-only-non-negative-numbers-greater-than-zero-with-fallback
正な数のみに制限され:#limited-to-numbers-greater-than-zero
範囲に切詰められ:#clamped-to-the-range
明示的に設定された要素:#explicitly-set-attr-element
結付けられた要素を取得する~algo:#attr-associated-element
明示的に設定された要素~群:#explicitly-set-attr-elements
~cacheした要素~群:#cached-attr-associated-elements
~cacheした要素~群~obj:#cached-attr-associated-elements-object
結付けられた要素~群を取得する~algo:#attr-associated-elements
新たな空option:#_new-blank-option
~IDか名前が一致する要素~群:#_matches-id-or-name
~supportする~prop名を収集する:#_collect-supported-property-names
状態から~keywordを得る:#_choose-a-keyword-from-state
文字列~list:#_string-list
●用語 HTML
~live:~HTMLINFRA#live
列挙d属性:~HTMLcms#enumerated-attribute
正準的な~keyword:~HTMLcms#canonical-keyword
真偽-内容~属性:~HTMLcms#boolean-attribute
欠落~値~用の既定の状態:~HTMLcms#missing-value-default
妥当な整数:~HTMLcms#valid-integer
妥当な負でない整数:~HTMLcms#valid-non-negative-integer
整数として構文解析する:~HTMLcms#rules-for-parsing-integers
浮動小数点数として最良な表現:~HTMLcms#best-representation-of-the-number-as-a-floating-point-number
浮動小数点数として構文解析する:~HTMLcms#rules-for-parsing-floating-point-number-values
負でない整数として構文解析する:~HTMLcms#rules-for-parsing-non-negative-integers
~URLを符号化法の下で相対的に構文解析する:~HTMLurl#encoding-parsing-a-url
~HTMLurl#encoding-parsing-and-serializing-a-url → ~HTMLurl#encoding-parsing-a-url, ~URL1#concept-url-serializer
内部~内容~属性~map:~HEcustom#internal-content-attribute-map
iN.~target要素:~HEcustom#internals-target
fe.~check有りか:~HTMLforms#concept-fe-checked
~listされる要素:~HEforms#category-listed
●DOM
~ID:~DOM4#concept-id
~collection:~DOM4#concept-collection
~node~tree:~DOM4#concept-node-tree
~node文書:~DOM4#concept-node-document
~nodeを付加する:~DOM4#concept-node-append
~nodeを子の前に前挿入する:~DOM4#concept-node-pre-insert
前挿入-:~DOM4#concept-node-pre-insert
~tree順序:~DOM4#concept-tree-order
子を~nodeに置換する:~DOM4#concept-node-replace
属性~変更-時の手続き:~DOM4#concept-element-attributes-change-ext
表現され:~DOM4#represented-by-the-collection
el.~ID:~DOM4#concept-id
根:~DOM4#concept-tree-root
子孫:~DOM4#concept-tree-descendant
子~群:~DOM4#concept-tree-child
~shadowも含めた先祖:~DOM4#concept-shadow-including-ancestor
属性を名前空間と局所~名により取得する:~DOM4#concept-element-attributes-get-by-namespace
attr.値:~DOM4#concept-attribute-value
属性~値を設定する:~DOM4#concept-element-attributes-set-value
属性を名前空間と局所~名により除去する:~DOM4#concept-element-attributes-remove-by-namespace
attr.名前空間:~DOM4#concept-attribute-namespace
attr.局所~名:~DOM4#concept-attribute-local-name
●他
~URL:~URL1#concept-url
~URLを直列化する:~URL1#concept-url-serializer
~list:~INFRA#list
付加する:~INFRA#list-append
~index群:~INFRA#list-get-the-indices
~size:~INFRA#list-size
包含-:~INFRA#list-contain
有順序~集合:~INFRA#ordered-set
set.付加する:~INFRA#set-append
~map内に存在する:~INFRA#map-exists
値を設定する:~INFRA#map-set
~entryを除去する:~INFRA#map-remove
~ASCII空白で分割する:~INFRA#split-on-ascii-whitespace
所与の値:~WEBIDL#the-given-value
識別子:~WEBIDL#dfn-identifier
実装-:~WEBIDLjs#implements
~IDL型に変換する:~WEBIDLjs#dfn-convert-javascript-to-idl-value
~IDL型に変換する:~WEBIDLjs#js-type-mapping
変換する:~INFRA#javascript-string-convert → ~IDL型に変換する
新たな有index~propを設定する手続き:~WEBIDL#dfn-set-the-value-of-a-new-indexed-property
既存の有index~propを設定する手続き:~WEBIDL#dfn-set-the-value-of-an-existing-indexed-property
~supportする~prop~index:~WEBIDL#dfn-supported-property-indices
~supportする~prop名:~WEBIDL#dfn-supported-property-names
●●words_table1
namedItem0:namedItem
length0:length
selectedIndex0:selectedIndex
●●words_table
●IDL/データ/構造/操作
弱い:weakな:~
実数:number::~
浮動小数点数:floating-point number::~
正な数:non-negative numbers greater than zero
正な整数のみ:only non-negative numbers greater than zero
前挿入-:pre-insert::~
切詰めら:clampさ::切り詰めら
切詰めた:clampした::切り詰めた
派生-:derive::~
切落す:truncateする:切り落とす
●一般処理
隠蔽-:shadow::~
渡され
渡して
条件
~cacheしている:caching
旧-:old:~
候補:candidate:~
%値:value
%要素:element
`~target$V:element
%属性:attribute
`~target$V:elementInternals
%eI:elementInternals
%結果:-
%~URL~record:urlString
%~IDL属性~要素:-
%~IDL属性~要素~群:-
%内容~属性~値:contentAttributeValue
%属性~定義:attributeDefinition
%構文解析した値:parsedValue
%最小:minimum
%最大:maximum
その最小:clampedMin
その最大:clampedMax
%新たな値:newValue
当の~IDL属性:attr
%~target:reflectedTarget
%候補:candidate
%局所~名:localName
%旧-値:oldValue
%名前空間:namespace
%要素~群:elements
%~IDL属性~要素:attrElement
%~token群:tokens
%~ID:id
%凍結d配列としての要素~群:elementsAsFrozenArray
%個数差:current
%個数差:n
●仕様
冗長:redundant:~
真実:truth:~
昔風の:non-fashionable retro
集約-
築くための部品:building block
それでも:nevertheless
誤り難く:less error-prone
選ばれ:chosen
ものと指定され得る:optionally/can be
〜にとっての易しさ:ergonomics
●未分類
選択-:select:~
選択:selection:~
check::::チェック
~check有りか:checkedness
radio::::ラジオ
空option:blank option:空 option
余分:extra:~
現れる:appearする
起こ:happen
対応-:correspond
扱い
各種記号
応じて
数え
指す
下限
数
有-
満たす:meets the following criteria
他所:Other parts of
旧-:old
最大
最小
最短
未満
末尾
示し
複数
関して
一致する
最終的:ultimate
有無:presence
上層:on top
●●trans_metadata
<p>
~THIS_PAGEは、~WHATWGによる HTML 仕様の
<a href="~SPEC_URL">§ Common DOM interfaces</a>
を日本語に翻訳したものです。
~PUB
</p>
</script>
</head>
<body>
<header>
<hgroup>
<h1>HTML — 共通 DOM インタフェース</h1>
</hgroup>
</header>
<main id="MAIN" hidden>
<section id="common-dom-interfaces">
<h3 title="Common DOM interfaces">2.6. 共通~DOM~interface</h3>
<section id="_conventions">
<h4>【この訳に特有な表記規約】</h4>
◎表記記号
</section>
<section id="reflecting-content-attributes-in-idl-attributes">
<h4 title="Reflecting content attributes in IDL attributes">2.6.1. ~IDL属性における内容~属性の反映-法</h4>
<p>
次に挙げるものが,反映-法を築くための部品を成す:
◎
The building blocks for reflecting are as follows:
</p>
<dl class="def-list">
<dt>
`反映される~target@
◎
A reflected target\
</dt>
<dd>
要素/ `ElementInternals$I ~obj
</dd>
<dd>
これは、
概して,文脈から明瞭になる。
これが実装する~interfaceは、
概して,`反映される~IDL属性$を有するそれに一致する
— `ElementInternals$I ~objである場合、
常に一致する。
◎
is an element or ElementInternals object. It is typically clear from context and typically identical to the interface of the reflected IDL attribute. It is always identical to that interface when it is an ElementInternals object.
</dd>
<dt>
`反映される~IDL属性@
◎
A reflected IDL attribute\
</dt>
<dd>
ある~interfaceの,ある属性~member。
◎
is an attribute interface member.
</dd>
<dt>
`反映される内容~属性~名@
◎
A reflected content attribute name\
</dt>
<dd>
文字列。
◎
is a string.\
</dd>
<dd>
<p>
これは、
`反映される~target$に応じて,次を表現する:
</p>
<ul class="switch">
<li>
要素
⇒
ある内容~属性であって[
その`名前空間$attr ~EQ ~NULL
]を満たすものの`局所~名$attr
</li>
<li>
`ElementInternals$I ~obj
⇒
`反映される~target$の`~target要素$iNの`内部~内容~属性~map$を成す,ある~key
</li>
</ul>
◎
When the reflected target is an element, it represents the local name of a content attribute whose namespace is null. When the reflected target is an ElementInternals object, it represents a key of the reflected target's target element's internal content attribute map.
</dd>
</dl>
<p>
`反映される~IDL属性$は、
`反映される~target$の`反映される内容~属性~名$を
`反映する@
ものと定義され得る。
このことは、
一般に,次を意味する:
◎
A reflected IDL attribute can be defined to reflect a reflected content attribute name of a reflected target. In general this means that\
</p>
<ul>
<li>
当の~IDL属性の取得子は、
当の内容~属性の現在の値を返す。
◎
the IDL attribute getter returns the current value of the content attribute,\
</li>
<li>
当の~IDL属性の設定子は、
当の内容~属性の値を所与の値†に変更する。
◎
and the setter changes the value of the content attribute to the given value.
</li>
</ul>
<p class="trans-note">【†
`所与の値$は、
正式には~Web~IDLに定義される
— 設定子に渡された値を当の~IDL属性の型に変換した結果を意味する。
】</p>
<p>
`反映される~target$が要素である場合、
`反映される~IDL属性$は,追加的に `ElementInternals$I を
`~supportする@eI
ものと宣言し得る。
このことは、
次を意味する
⇒
`ElementInternals$I ~interfaceも,[
`反映される~IDL属性$として[
同じ`識別子$を伴う
]かつ[
同じ`反映される内容~属性~名$を`反映する$
]ものを有する
◎
If the reflected target is an element, then the reflected IDL attribute can additionally declare to support ElementInternals. This means that the ElementInternals interface also has a reflected IDL attribute, with the same identifier, and that reflected IDL attribute reflects the same reflected content attribute name.
</p>
<p class="example" id="example-reflect-incantation">
反映を指示する例
⇒
`fooBar^m ~IDL属性は、
`foobar^a 内容~属性を`反映する$ことに加えて,
`ElementInternals$I を`~supportする$eIモノトスル。
◎
The fooBar IDL attribute must reflect the foobar content attribute and support ElementInternals.
</p>
<div>
<p>
以下,この節を通して:
</p>
<ul>
<li>
所与の`反映される~IDL属性$
`~IDL属性@V
は,ある`反映される~target$
`~target@V
の`反映される内容~属性~名$
`内容~属性~名@V
を`反映-$しているとする。
</li>
<li>
`既定~値@V
は、
`~IDL属性$V に
`既定の値@
は定義されて[
いるならば それ /
いないならば ε
]とする
(定義されるのは、[
`long$I / `unsigned long$I / `double$I
]型の~IDL属性に限られる)。
</li>
</ul>
◎
↓↓
</div>
<p>
`~target$V には、
次に挙げる~algoが結付けられる:
◎
Reflected targets have these associated algorithms:
</p>
<ul>
<li>
`要素を取得する@
⇒
引数をとらず,要素を返す。
◎
get the element: takes no arguments; returns an element.
</li>
<li>
`内容~属性を取得する@
⇒
引数をとらず,[
~NULL /文字列
]を返す。
◎
get the content attribute: takes no arguments; returns null or a string.
</li>
<li>
`内容~属性を設定する@
⇒
文字列を引数にとり,何も返さない。
◎
set the content attribute: takes a string value; returns nothing.
</li>
<li>
`内容~属性を削除する@
⇒
引数をとらず,何も返さない。
◎
delete the content attribute: takes no arguments; returns nothing.
</li>
</ul>
<p>
これらは、
`~target$V に応じて,
以下に従うものと定義される:
</p>
<ul class="switch">
<li>
<p>
要素である場合:
◎
For a reflected target that is an element element, these are defined as follows:
</p>
<ul>
<li class="algo">
`要素を取得する$ときは
⇒
~RET `~target$V
◎
get the element
• Return element.
</li>
<li class="algo">
<p>
`内容~属性を取得する$ときは:
◎
get the content attribute
</p>
<ol>
<li>
%属性 ~LET `属性を名前空間と局所~名により取得する$( ~NULL, `内容~属性~名$V, `~target$V )
◎
Let attribute be the result of running get an attribute by namespace and local name given null, the reflected content attribute name, and element.
</li>
<li>
~IF[
%属性 ~EQ ~NULL
]
⇒
~RET ~NULL
◎
If attribute is null, then return null.
</li>
<li>
~RET %属性 の`値$attr
◎
Return attribute's value.
</li>
</ol>
</li>
<li class="algo">
`内容~属性を設定する$ときは、
所与の
( 文字列 %値 )
に対し
⇒
`属性~値を設定する$( `~target$V, `内容~属性~名$V, %値 )
◎
set the content attribute with a string value
• Set an attribute value given element, the reflected content attribute name, and value.
</li>
<li class="algo">
`内容~属性を削除する$ときは
⇒
`属性を名前空間と局所~名により除去する$( ~NULL, `内容~属性~名$V, `~target$V )
◎
delete the content attribute
• Remove an attribute by namespace and local name given null, the reflected content attribute name, and element.
</li>
</ul>
</li>
<li>
<p>
`ElementInternals$I ~objである場合:
◎
For a reflected target that is an ElementInternals object elementInternals, they are defined as follows:
</p>
<ul>
<li class="algo">
`要素を取得する$ときは
⇒
~RET `~target$V の`~target要素$iN
◎
get the element
• Return elementInternals's target element.
</li>
<li class="algo">
<p>
`内容~属性を取得する$ときは:
◎
get the content attribute
</p>
<ol>
<li>
%結果 ~LET `~target$V の`~target要素$iNの`内部~内容~属性~map$[ `内容~属性~名$V ]
◎
↓</li>
<li>
~RET %結果 に応じて
⇒#
ε ならば ~NULL /
~ELSE_ %結果
◎
If elementInternals's target element's internal content attribute map[the reflected content attribute name] does not exist, then return null.
◎
Return elementInternals's target element's internal content attribute map[the reflected content attribute name].
</li>
</ol>
</li>
<li class="algo">
`内容~属性を設定する$ときは、
所与の
( 文字列 %値 )
に対し
⇒
`~target$V の`~target要素$iNの`内部~内容~属性~map$[ `内容~属性~名$V] ~SET %値
◎
set the content attribute with a string value
• Set elementInternals's target element's internal content attribute map[the reflected content attribute name] to value.
</li>
<li class="algo">
`内容~属性を削除する$ときは
⇒
`~target$V の`~target要素$iNの`内部~内容~属性~map$[ `内容~属性~名$V ] ~SET ε
◎
delete the content attribute
• Remove elementInternals's target element's internal content attribute map[the reflected content attribute name].
</li>
</ul>
<p class="note">注記:
この結果、
`ElementInternals$I ~obj用の~data構造は,いくぶん冗長になる
— その`~target要素$iNの`内部~内容~属性~map$は,直に操作し得ず、
そのような反映は,単-方向に限り起こるので。
それでも,この~approachが選ばれたのは、[
`反映される~target$たちから共有される~IDL属性を定義するとき,誤り難くなるようにするため
]および[
共通な~API意味論からの便益を得るため
]である。
◎
This results in somewhat redundant data structures for ElementInternals objects as their target element's internal content attribute map cannot be directly manipulated and as such reflection is only happening in a single direction. This approach was nevertheless chosen to make it less error-prone to define IDL attributes that are shared between reflected targets and benefit from common API semantics.
</p>
</li>
</ul>
<hr>
<p>
`~IDL属性$V が[
`DOMString$I / `DOMString?^I
]型であって,ある`列挙d属性$を`反映-$している場合、
`~IDL属性$V は,
`既知な値のみに制限され@
るものと指定され得る
— その場合, `~IDL属性$V 用の取得子が返す結果は、
以下に与える処理~modelにより,[
当の列挙d属性~用の~keyword/空~文字列/ ~NULL
]に限られることになる。
◎
IDL attributes of type DOMString or DOMString? that reflect enumerated content attributes can be limited to only known values. Per the processing models below, those will cause the getters for such IDL attributes to only return keywords for those enumerated attributes, or the empty string or null.
</p>
<p>
`~IDL属性$V は `DOMString$I 型である場合:
◎
If a reflected IDL attribute has the type DOMString:
</p>
<ul>
<li class="algo">
<p>
取得子~手続きは:
◎
The getter steps are:
</p>
<ol>
<li>
%要素 ~LET コレの`要素を取得する$()
◎
Let element be the result of running this's get the element.
</li>
<li>
%内容~属性~値 ~LET コレの`内容~属性を取得する$()
◎
Let contentAttributeValue be the result of running this's get the content attribute.
</li>
<li>
%属性~定義 ~LET [
%要素 の次を満たす内容~属性
]の定義
⇒
[
その`名前空間$attr ~EQ ~NULL
]~AND[
その`局所~名$attr ~EQ `内容~属性~名$V
]
◎
Let attributeDefinition be the attribute definition of element's content attribute whose namespace is null and local name is the reflected content attribute name.
</li>
<li>
<p>
~IF[
%属性~定義 は[
当の内容~属性は`列挙d属性$である
]ことを指示する
]~AND[
`~IDL属性$V は`既知な値のみに制限され$ている
]:
</p>
<ol>
<li>
%状態 ~LET %属性~定義 に定義された,
%内容~属性~値 に対応する状態
</li>
<li>
<p>
~IF[
%状態 ~EQ ε
]
⇒
~RET 空~文字列
</p>
<p>
(例:[
%内容~属性~値 ~EQ ~NULL
]~AND[
%属性~定義 の`欠落~値~用の既定の状態$ ~EQ ε
]の場合)
</p>
</li>
<li>
%~keyword ~LET %状態 用の`正準的な~keyword$
</li>
<li>
~RET %~keyword に応じて
⇒#
ε ならば 空~文字列 /
~ELSE_ %~keyword
</li>
</ol>
◎
If attributeDefinition indicates it is an enumerated attribute and the reflected IDL attribute is defined to be limited to only known values:
• If contentAttributeValue does not correspond to any state of attributeDefinition (e.g., it is null and there is no missing value default), or if it is in a state of attributeDefinition with no associated keyword value, then return the empty string.
• Return the canonical keyword for the state of attributeDefinition that contentAttributeValue corresponds to.
</li>
<li>
~RET %内容~属性~値 に応じて
⇒#
~NULL ならば 空~文字列/
~ELSE_ %内容~属性~値
◎
If contentAttributeValue is null, then return the empty string.
◎
Return contentAttributeValue.
</li>
</ol>
</li>
<li class="algo">
設定子~手続きは
⇒
コレの`内容~属性を設定する$( 所与の値 )
◎
The setter steps are to run this's set the content attribute with the given value.
</li>
</ul>
<p>
`~IDL属性$V は `DOMString?^I 型である場合:
◎
If a reflected IDL attribute has the type DOMString?:
</p>