-
Notifications
You must be signed in to change notification settings - Fork 8
/
DOM-Parsing-ja.html
3496 lines (3138 loc) · 99.5 KB
/
DOM-Parsing-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 Parsing and Serialization (日本語訳)</title>
<link rel="stylesheet" href="common.css" type="text/css">
<link rel="stylesheet" href="common-w3c.css" type="text/css">
<script src="common0.js"></script>
<script src="common1.js" async></script>
<script>
Util.ready = function(){
const source_data = {
toc_main: 'MAIN0',
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 = `#bib-${key}`;
break;
case 'm':
const n = text.indexOf('(');
if(n > 0){
key = text.slice(0, n);
text = key + text.slice(n).replace(/\w+/g, '<var>$&</var>');
}
break;
case 'l':
return `"<code class="literal">${text}</code>"`;
break;
case 'U':
text = `<span class="code-point">U+${key}</span> (<span class="char-symbol">&#x${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-04-24
trans_update:2024-04-25
source_checked:171103
original_url:https://w3c.github.io/DOM-Parsing/
spec_status:ED
ref_id_prefix:bib-
copyright:2024,permissive
trans_1st_pub:2017-08-03
●●class_map
E:error
P:production
v:value
e:element
a:attr
U:code-point
●●tag_map
I:code
E:code
m:code
mA:code
P:code
e:code
a:code
c:code
U:span
i:i
v:code
V:var
●●words_table1
SPACE:<span class="code-point">U+0020</span> <span class="cp-name">SPACE</span>
XML10:https://www.w3.org/TR/xml/
●●words_table
●markup/ns/構文/往復
ns:namespace:::名前空間
局所~名:localname
局所的に定義されlocally-defined
有修飾:qualified::~
XMLNS:
XHTML:
void:
整形式:well-formed::~
直列形の:serialized::~::シリアル形の
再~宣言-:redeclare
未宣言に:undeclare::~
終端-:end
●DOM/データ構造/データ操作
template:
変形-:transform::~
組:pair
有順序:ordered
組:tuple
leaf-node:
attr
先祖たち:ancestry
On getting
association
associated
操作する:manipulation
●一般処理
渡され:passされ:~
渡して:passして:~
渡し
invoking
-:conditional
-:visit
●仕様
昇格基準:exit criteria:~
理想的:ideal:~
一律:uniform:~
単体的:monolithic:~
合法:legal:~
要約-:summary
〜得る:possible
~~合法:legitimate
~~条件:qualifications
flavor
込み入って:tricky
参考:informative
謝意:thank
に感謝:acknowledge with gratitude
より深い:greater
かまわない:OK
~~作者:you
●仕様(動詞
仕事:work:~
従う:as follows
-:provide
競合-:conflict:~
-:applicable
編成し直した:Editorial restructuring
されないようにする:side-effect of avoiding
-:assume
-:in a conforming XML parser
●未分類(動詞
連結:concatenation::~
遭遇-:encounter:~
代用-:substitute:~
~~代用され:substitute
予約-済み:reserved
~~代用の:replacement
生き残る:survive
出くわした:seen
見られる:seen
失われ:loss
近くなる:get closer
見せかけた:made to look like
ことになる:get
●未分類
同一性:identity:~
~memory内:in-memory
perror:parse error::構文解析 error:構文解析エラー:パースエラー
-:label
候補:candidate:~
近過去:recent:~
-:per
-:passing
-:caller
-:Re-throw
map:mapping
followed
この時点で/:At this point
seen
potentially
-:iterating
-:beginning
-:at least
most recently used
MRU
OK
-:together
-:consisting
-:furthermore
-:occurrence
LESS-THAN SIGN
QUESTION MARK
GREATER-THAN
WHATWG
we
数値 numerical value
-:respective
-:wereas
-:additionally
taken
-:go
並び:adjacent
●指示語
より早く:earlier
次:next
各種:various
他方:wereas
任意個数の:any number
高々:at most
それまでに:previously
直前/前回/-:previous
以降の/remaining
即:immediate
より~~過去の:older
●●original_id_map
xml-serializing-an-element-node:dfn-xml-serializing-an-element-node
xml-serializing-a-comment-node:dfn-xml-serializing-a-comment-node
xml-serializing-a-document-node:dfn-xml-serializing-a-document-node
xml-serializing-a-documentfragment-node:dfn-xml-serializing-a-documentfragment-node
xml-serializing-a-documenttype-node:dfn-xml-serializing-a-documenttype-node
xml-serializing-a-processinginstruction-node:dfn-xml-serializing-a-processinginstruction-node
xml-serializing-a-text-node:dfn-xml-serializing-a-text-node
●●mdn_urls
xmlserializer:API/XMLSerializer
●●link_map
●IDL
Exposed:~WEBIDLjs#Exposed
DOMString:~WEBIDL#idl-DOMString
E.TypeError:~TC39#sec-native-error-types-used-in-this-standard-typeerror
E.InvalidStateError:~WEBIDL#invalidstateerror
I.XMLSerializer:#dom-xmlserializer
I.Attr:~DOM4#attr
I.Comment:~DOM4#comment
I.Document:~DOM4#document
I.DocumentFragment:~DOM4#documentfragment
I.DocumentType:~DOM4#documenttype
I.Element:~DOM4#element
I.Node:~DOM4#node
I.ProcessingInstruction:~DOM4#processinginstruction
I.Text:~DOM4#text
m.new XMLSerializer:#dom-xmlserializer-constructor
m.setAttribute:~DOM4#dom-element-setattribute
m.innerHTML:~HTMLdynamic#dom-element-innerhtml
m.outerHTML:~HTMLdynamic#dom-element-outerhtml
m.insertAdjacentHTML:~HTMLdynamic#dom-element-insertadjacenthtml
m.serializeToString:#dom-xmlserializer-serializetostring
m.namespaceURI:~DOM4#dom-element-namespaceuri
e.script:~HEscripting#the-script-element
e.template:~HEscripting#the-template-element
P.AttValue:~XML10#NT-AttValue
P.Char:~XML10#NT-Char
P.EmptyElemTag:~XML10#NT-EmptyElemTag
P.Name:~XML10#NT-Name
P.PubidChar:~XML10#NT-PubidChar
●用語
構文解析:#dfn-parsing
直列化-:#dfn-serializing
~XML直列化:#dfn-xml-serialization
往復-:#dfn-round-tripping
属性~値を直列化する:#dfn-serializing-an-attribute-value
~XMLに直列化する:#dfn-xml-serialization-algorithm
~nodeを~XMLに直列化する:#dfn-xml-serialization-algorithm
型の~nodeを~XMLに直列化する:#dfn-producing-an-xml-serialization-of-a-dom-node
属性たちを~XMLに直列化する:#dfn-xml-serialization-of-the-attributes
i.Loop:#dfn-loop
i.Main:#dfn-main
:#dfn-found-a-suitable-namespace-prefix
~ns接頭辞~map:#dfn-namespace-prefix-map
~ns接頭辞~list:#dfn-list
接頭辞は見出される:#dfn-found
~ns接頭辞~mapを複製する:#dfn-copy-a-namespace-prefix-map
接頭辞を生成する:#dfn-generating-a-prefix
~ns接頭辞~生成-用~index:#dfn-generated-namespace-prefix-index
接頭辞~mapに追加する:#dfn-add
~ns情報を記録する:#dfn-recording-the-namespace-information
選好される接頭辞~文字列を検索取得する:#dfn-retrieving-a-preferred-prefix-string
V.有修飾~名:#dfn-qualified-name
V.文脈~ns:#dfn-context-namespace
V.文脈~ns:#dfn-namespace
V.~ns定義~属性は無視するか:#dfn-ignore-namespace-definition-attribute
V.接頭辞~map:#dfn-prefix-map
V.継承される~ns:#dfn-inherited-ns
V.局所的な既定の~ns:#dfn-local-default-namespace
V.局所~接頭辞~map:#dfn-local-prefixes-map
V.接頭辞~index:#dfn-prefix-index
V.整形式が要求されるか:#dfn-require-well-formed
*#dfn-skip-end-tag
●用語(DOM
~node:~DOM4#concept-node
文書:~DOM4#concept-document
~HTML文書:~DOM4#html-document
doc.種別:~DOM4#concept-document-type
属性:~DOM4#concept-attribute
A.値:~DOM4#concept-attribute-value
A.~ns:~DOM4#concept-attribute-namespace
A.~ns接頭辞:~DOM4#concept-attribute-namespace-prefix
A.局所~名:~DOM4#concept-attribute-local-name
A.有修飾~名:~DOM4#concept-attribute-qualified-name
mA.name
要素:~DOM4#concept-element
属性~list:~DOM4#concept-element-attribute
eL.~ns接頭辞:~DOM4#concept-element-namespace-prefix
eL.~ns:~DOM4#concept-element-namespace
eL.局所~名:~DOM4#concept-element-local-name
doctype:#dfn-doctype
:~DOM4#dom-document-doctype
dT.名前:~DOM4#concept-doctype-name
dT.公な~ID:~DOM4#concept-doctype-publicid
dT.~system~ID:~DOM4#concept-doctype-systemid
~data:~DOM4#concept-cd-data
pI.~target:~DOM4#concept-pi-target
文書~要素:~DOM4#document-element
子:~DOM4#concept-tree-child
子~群:~DOM4#concept-tree-child
~tree順序:~DOM4#concept-tree-order
●用語(他
~map:~INFRA#ordered-map
~ASCII大小無視:~INFRA#ascii-case-insensitive
~HTML~ns:~INFRA#html-namespace
~XML~ns:~INFRA#xml-namespace
~XMLNS~ns:~INFRA#xmlns-namespace
~template内容:~HEscripting#template-contents
~HTML構文解析器:~HTMLparsing#html-parser
文脈~要素:~HTMLparsing#concept-frag-parse-context
~void要素:~HTMLwriting#void-elements
~XHTML文書を構文解析-:~HTMLxml#parsing-xhtml-documents
~XML構文解析器:~HTMLxml#xml-parser
空~要素~tag:~XML10#dt-eetag
●●ref_normative
[DOM4]
<DOM Standard>. Anne van Kesteren. WHATWG. Living Standard. URL: https://dom.spec.whatwg.org/
[ECMA-262]
<ECMAScript Language Specification>. Ecma International. URL: https://tc39.es/ecma262/multipage/
[html]
<HTML Standard>. Anne van Kesteren; Domenic Denicola; Ian Hickson; Philip Jägenstedt; Simon Pieters. WHATWG. Living Standard. URL: https://html.spec.whatwg.org/multipage/
[HTML5]
<HTML5>. Ian Hickson; Robin Berjon; Steve Faulkner; Travis Leithead; Erika Doyle Navara; Theresa O'Connor; Silvia Pfeiffer. W3C. 27 March 2018. W3C Recommendation. URL: https://www.w3.org/TR/html5/
[TRUSTED-TYPES]
<Trusted Types>. Krzysztof Kotowicz. W3C. 27 September 2022. W3C Working Draft. URL: https://www.w3.org/TR/trusted-types/
[WEBIDL]
<Web IDL Standard>. Edgar Chen; Timothy Gu. WHATWG. Living Standard. URL: https://webidl.spec.whatwg.org/
[XML10]
<Extensible Markup Language (XML) 1.0 (Fifth Edition)>. Tim Bray; Jean Paoli; Michael Sperberg-McQueen; Eve Maler; François Yergeau et al. W3C. 26 November 2008. W3C Recommendation. URL: https://www.w3.org/TR/xml/
●●
ref_informative
●●trans_metadata
<p>
~THIS_PAGEは、~W3Cにより編集者草案として公開された
<a href="~SPEC_URL">DOM Parsing and Serialization</a>
を日本語に翻訳したものです。
~PUB
</p>
●●spec_metadata
最新公表バージョン
https://www.w3.org/TR/DOM-Parsing/
編集者草案
https://w3c.github.io/DOM-Parsing/
編集
<a href="mailto:[email protected]">Travis Leithead</a> (Microsoft)
テスト一式
http://w3c-test.org/domparsing/
http://w3c-test.org/html/syntax/
Participate:
<a href="https://github.com/w3c/DOM-Parsing">We are on Github.</a>
<a href="https://www.w3.org/Bugs/Public/buglist.cgi?component=DOM%20Parsing%20and%20Serialization&list_id=44989&product=WebAppsWG&resolution=---">Bugzilla Bug list.</a>
<a href="https://github.com/w3c/DOM-Parsing/issues">Github Issues.</a>
<a href="https://github.com/w3c/DOM-Parsing/commits">Commit history.</a>
<a href="https://lists.w3.org/Archives/Public/www-dom/">Mailing list.</a>
</script>
<!-- 原文 id/link
I.DOMException:#dfn-domexception
I.DOMException:~DOM4#domexception
E.TypeError:#dfn-typeerror
E.InvalidStateError:#dfn-invalidstateerror
E.InvalidStateError:~DOM4#invalidstateerror
I.Attr:~DOM4#interface-attr
I.Attr:#dfn-attr
I.Comment:#dfn-comment
I.Comment:~DOM4#interface-comment
I.Document:#dfn-document
I.DocumentFragment:#dfn-documentfragment
~doctype:~DOM4#concept-doctype
I.DocumentType:#dfn-documenttype
I.DocumentType:~DOM4#interface-documenttype
I.Element:#dfn-element
I.Node:#dfn-node
~node:#dfn-node
I.ProcessingInstruction:#dfn-processinginstruction
I.ProcessingInstruction:~DOM4#interface-processinginstruction
I.Text:#dfn-text
I.Text:~DOM4#interface-text
m.setAttribute:#dfn-setattribute
m.createContextualFragment:#idl-def-range-createcontextualfragment%28fragment%29
e.script:#dfn-script
e.script:~TR/html5/single-page.html#script
e.template:#dfn-template
e.template:~TR/html5/single-page.html#the-template-element
P.AttValue:#dfn-attvalue
P.Char:#dfn-char
P.EmptyElemTag:#dfn-emptyelemtag
P.Name:#dfn-name
P.PubidChar:#dfn-pubidchar
●
#dfn-xml-serializing
コレ:#dfn-context-object
:#dfn-skip-end-tag
空~要素~tag:#dfn-empty-element-tag
例外を投出-:#dfn-exception
~ASCII大小無視:#dfn-ascii-case-insensitive
~ASCII大小無視:~TR/dom/#ascii-case-insensitive
~HTML~ns:#dfn-html-namespace
~XML~ns:#dfn-xml-namespace
~XMLNS~ns:#dfn-xmlns-namespace
case-sensitive:#dfn-case-sensitive
case-sensitive:~TR/dom/#case-sensitive
■HTML5
~template内容:#dfn-template-contents
~template内容:~TR/html5/single-page.html#template-contents
~HTML構文解析器:#dfn-html-parser
~HTML構文解析器:~TR/html5/single-page.html#html-parser
~XHTML文書を構文解析-:#dfn-parsing-xhtml-documents
~XHTML文書を構文解析-:~TR/html5/single-page.html#parsing-xhtml-documents
~XML構文解析器:#dfn-xml-parser
~XML構文解析器:~TR/html5/single-page.html#xml-parser
~void要素:#dfn-void-elements
~void要素:~TR/html5/single-page.html#void-elements
文脈~要素:#dfn-context
文脈~要素:~TR/html5/single-page.html#concept-frag-parse-context
●DOM
属性~list:~DOM4#concept-element-attribute
m.attributes:~DOM4#dom-element-attributes
m.attributes:#dfn-attributes
A.値:~DOM4#concept-attribute-value
mA.value:~DOM4#dom-attr-value
mA.value:#dfn-attr.value
A.~ns:~DOM4#concept-attribute-namespace
mA.namespaceURI:~DOM4#dom-attr-namespaceuri
mA.namespaceURI:#dfn-attr.namespaceuri
A.~ns接頭辞:~DOM4#concept-attribute-namespace-prefix
mA.prefix:~DOM4#dom-attr-prefix
mA.prefix:#dfn-attr.prefix
A.局所~名:~DOM4#concept-attribute-local-name
mA.localName:~DOM4#dom-attr-localname
mA.localName:#dfn-attr.localname
A.有修飾~名:~DOM4#concept-attribute-qualified-name
mA.name
eL.~ns接頭辞:~DOM4#concept-element-namespace-prefix
m.prefix:~DOM4#dom-element-prefix
m.prefix:#dfn-element.prefix
eL.~ns:~DOM4#concept-element-namespace
m.namespaceURI:~DOM4#dom-element-namespaceuri
m.namespaceURI:#dfn-element.namespaceuri
eL.局所~名:~DOM4#concept-element-local-name
m.localName:~DOM4#dom-element-localname
m.localName:#dfn-element.localname
dT.~system~ID:~DOM4#concept-doctype-systemid
m.systemId:~DOM4#dom-documenttype-systemid
m.systemId:#dfn-systemid
dT.公な~ID:~DOM4#concept-doctype-publicid
m.publicId:~DOM4#dom-documenttype-publicid
m.publicId:#dfn-publicid
dT.名前:~DOM4#concept-doctype-name
m.name:~DOM4#dom-documenttype-name
~data:~DOM4#concept-cd-data
m.data:~DOM4#dom-characterdata-data
m.data:#dfn-data
文書~要素:~DOM4#document-element
m.documentElement:~DOM4#dom-document-documentelement
m.documentElement:#dfn-documentelement
pI.~target:~DOM4#concept-pi-target
m.target:~DOM4#dom-processinginstruction-target
m.target:#dfn-target
doctype:#dfn-doctype
doctype:~DOM4#dom-document-doctype
m.name:~DOM4#dom-documenttype-name
m.name:#dfn-doctype.name
m.innerHTML:~HTMLdynamic#dom-element-innerhtml
m.innerHTML:#dfn-innerhtml
子:#dfn-children
doc.種別:~DOM4#concept-document-type
~HTML文書:#dfn-html-document
局所~名:#dfn-local-name
~ns:#dfn-namespace-concept
置換-:#dfn-replace
~tree順序:#dfn-tree-order
-->
</head>
<body>
<header>
<hgroup>
<h1>DOM の構文解析と直列化 — DOM Parsing and Serialization</h1>
<p title="DOMParser, XMLSerializer, innerHTML, and similar APIs"><code >DOMParser</code>, <code>XMLSerializer</code>, <code>innerHTML</code> などの API</p>
</hgroup>
</header>
<div id="MAIN" hidden>
<section id="abstract">
◎要約
<p>
この仕様は、
~web~app用に,[
~HTML/~XML
]に基づく~DOM~nodeを[
構文解析する, 直列化する
]ための~APIを定義する。
◎
This specification defines APIs for the parsing and serializing of HTML and XML-based DOM nodes for web applications.
</p>
<p class="trans-note">【
と述べられているが、
~XML直列化~API以外は,`~HTML標準へ移動された@#apis-for-parsing-and-serializing-dom$。
】</p>
</section>
<section id="sotd">
◎位置付け
<p>
これは、
編集者草案の公な複製です…
【以下,この節の他の内容は、~SOTD-W3Cに移譲。】
</p>
<!--
This document was published by the Web Platform Working Group as an Editor's Draft. If you wish to make comments regarding this document, please send them to [email protected] (subscribe, archives) with DOM-Parsing at the start of your email's subject. All comments are welcome.
-->
</section>
<main id="MAIN0">
<section id="_conventions">
<h2>【この訳に特有な表記規約】</h2>
◎表記記号
<p>
加えて,この訳では:
</p>
<ul>
<li>
原文にて(すでに退役した) `HTML5$r による定義を参照している用語は、
便宜のため,現行の `HTML$r ( WHATWG )(の和訳)を参照している。
</li>
<li>
同様に,原文による各種~nsの定義は、
WHATWG Infra への参照に代えている( `~XMLNS~ns$など)。
</li>
<li>
この仕様が課す要件の対象は,常に~UAなので、
“~UA” は省略する。
</li>
<li>
原文の~IDL属性を通して述べられている箇所の多くは、
当の~IDL属性が表現する下層~modelの用語で述べる
(例:要素の `namespaceURI$m → 要素の`~ns$eL)。
</li>
</ul>
</section>
<section id="crec">
<h2 title="Candidate Recommendation Exit Criteria">勧告候補からの昇格基準</h2>
<p>
【この節の内容の和訳は省略する。】
◎
This specification will not advance to Proposed Recommendation before the spec's test suite is completed and two or more independent implementations pass each test, although no single implementation must pass each test. We expect to meet this criteria no sooner than 24 October 2014. The group will also create an Implementation Report.
</p>
</section>
<section id="introduction">
<h2 title="Introduction">1. 序論</h2>
<p>
文書~obj~model(~DOM)は、
それぞれが~treeに接続されている各種~型の`~node$たちが成す,~memory内~表現である。
~DOMとその`~node$のより深い詳細は
`HTML5$r / `DOM4$r
仕様に述べられる。
◎
A document object model (DOM) is an in-memory representation of various types of Nodes where each Node is connected in a tree. The [HTML5] and [DOM4] specifications describe DOM and its Nodes is greater detail.
</p>
<p>
用語[
`構文解析@
は,
~DOMの文字列~表現を実際の~DOMへ変換するとき/
`直列化-@
は,~DOMを文字列へ変形して戻すとき
]に利用される用語である。
この仕様~自身は、
~DOMを[
構文解析する/直列化する
]ための各種~APIを定義することを扱う。
◎
Parsing is the term used for converting a string representation of a DOM into an actual DOM, and Serializing is the term used to transform a DOM back into a string. This specification concerns itself with defining various APIs for both parsing and serializing a DOM.
</p>
<div class="example">
<p>
例えば `innerHTML$m ~APIは、[
~DOMを直列化する/~DOMに構文解析する
]共通的な仕方を与える
(それは、この両方とも行える)。
特定0の`~node$の~memory内~DOMが次であったとする:
◎
For example: the innerHTML API is a common way to both parse and serialize a DOM (it does both). If a particular Node, has the following in-memory DOM:
</p>
<div>
<ol><li>`HTMLDivElement^I ( `nodeName^m ~EQ `div^l )
<ol><li>`HTMLSpanElement^I ( `nodeName^m ~EQ `span^l)
<ol><li>`Text^I ( `data^m ~EQ `ある^l )
</li></ol>
</li><li>`HTMLElement^I ( `nodeName^m ~EQ `em^l )
<ol><li>`Text^I ( `data^m ~EQ `文章。^l )
</li></ol>
</li></ol>
</li></ol>
<pre lang="en" class="_en">
HTMLDivElement (nodeName: `div^l)
┃
┣━ HTMLSpanElement (nodeName: `span^l)
┃ ┃
┃ ┗━ Text (data: `some ^l)
┃
┗━ HTMLElement (nodeName: `em^l)
┃
┗━ Text (data: `text!^l)
</pre>
</div>
<p>
`HTMLDivElement^I ~nodeの子たちを直列化するためには、
単純に`要素$の `innerHTML$m ~propを<em>取得する</em>(読取る)
(これは、直列化を誘発する):
◎
And the HTMLDivElement node is stored in a variable myDiv, then to serialize myDiv's children simply get (read) the Element's innerHTML property (this triggers the serialization):
</p>
<pre class="lang-js">
var %myDiv = /* <span class="comment">
`HTMLDivElement^I ~node
</span> */
var %serializedChildren = %myDiv.innerHTML;
/* <span class="comment">
結果は `<span>ある</span><em>文章。</em>^l になる。
◎
serializedChildren has the value: "<span>some </span><em>text!</em>"
</span>
</pre>
<p>
文字列から
%myDiv 用の(その既存の子たちを置換して)新たな子を構文解析するためには、
単純に `innerHTML$m ~propを<em>設定する</em>
(これは、
アテガわれた文字列の構文解析を誘発する):
◎
To parse new children for myDiv from a string (replacing its existing children), simply set the innerHTML property (this triggers parsing of the assigned string):
</p>
<pre class="lang-js">
%myDiv.innerHTML = `<span>new</span><em>children!</em>^l;
</pre>
</div>
<p>
[
~HTML / ~XML( ~XHTMLは~XMLの一種である)
]における[
`構文解析$, `直列化-$
]は、
各自の~markup言語の規則に従う。
上の例は,~HTMLの[
構文解析/直列化
]を示しているが、
それらに特有な~algoは `HTML5$r 仕様に定義される。
この仕様は、
~XMLを直列化するための~algoを与える。
~XMLを構文解析するための文法は、
`XML10$r 仕様に述べられる。
◎
This specification describes two flavors of parsing and serializing: HTML and XML (with XHTML being a type of XML). Each follows the rules of its respective markup language. The above example shows HTML parsing and serialization. The specific algorithms for HTML parsing and serializing are defined in the [HTML5] specification. This specification contains the algorithm for XML serializing. The grammar for XML parsing is described in the [XML10] specification.
</p>
<p>
`往復-@
するとは、
~DOMを直列化した結果の文字列を,即~構文解析して~DOMに戻す
【または、そうしたときに元と同じに保たれる】
ことを意味する。
理想的には、
この処理-による結果の~DOM内のどの`~node$においても,その属性の~dataは失われることなく同一性が保たれるべきである。
が,~XMLにおいて`往復-$することは、
直列化しても`~node$の~nsの同一性が保全されるよう配慮しなければナラナイ点で,
とりわけ込み入っている
(他方、
~HTMLにおいては,~nsは無視される)。
◎
Round-tripping a DOM means to serialize and then immediately parse the serialized string back into a DOM. Ideally, this process does not result in any data loss with respect to the identity and attributes of the Node in the DOM. Round-tripping is especially tricky for an XML serialization, which must be concerned with preserving the Node's namespace identity in the serialization (wereas namespaces are ignored in HTML).
</p>
<div class="example">
<p>
次の~memory内~DOMに対する~XML直列化を考える:
◎
Consider the XML serialization of the following in-memory DOM:
</p>
<div>
<ol><li>`Element^I ( `nodeName^m ~EQ `root^l )
<ol><li>`HTMLScriptElement^I ( `nodeName^m ~EQ `script^l)
<ol><li>`Text^I ( `data^m ~EQ `alert('hello world') ^l )
</li></ol>
</li></ol>
</li></ol>
<pre lang="en" class="_en">
Element (nodeName: "root")
┃
┗━ HTMLScriptElement (nodeName: "script")
┃
┗━ Text (data: "alert('hello world')")
</pre>
</div>
<p>
`script^e 要素の同一性を保全するため、
~XML直列化は,
`HTMLScriptElement^I `~node$の `文脈~ns$V を含むこと,および
直列化された文字列は、
~XML構文解析器を通して`往復-$することを許容しなければナラナイ。
上の `root^l 要素が,次の変数 %root にあてがわれるとするとき:
◎
An XML serialization must include the HTMLScriptElement Node's namespace in order to preserve the identity of the script element, and to allow the serialized string to round-trip through an XML parser. Assuming that root is in a variable named root:
</p>
<pre class="lang-js">
var %root = /* <span class="comment">`root^l `Element^I</span> */
var %xmlSerialization = `new XMLSerializer()$m.`serializeToString(root)$m;
</pre>
<p>
その結果は、
次のようになる:
`<root><script xmlns="http://www.w3.org/1999/xhtml">alert('hello world')</script></root>^l
◎
/* xmlSerialization has the value:
"<root><script xmlns="http://www.w3.org/1999/xhtml">alert('hello world')</script></root>" */
</p>
</div>
<p>
用語 文脈~objは…。
以下に挙げる~nsは…。
【以下、`この節を成す内容の和訳は省略する@#_conventions$。】
◎
The term context object means the object on which the API being discussed was called.
◎
The following terms are understood to represent their respective namespaces in this specification (and makes it easier to read):
◎
The HTML namespace is http://www.w3.org/1999/xhtml
◎
The XML namespace is http://www.w3.org/XML/1998/namespace
◎
The XMLNS namespace is http://www.w3.org/2000/xmlns/
</p>
</section>
<section id="apis-for-parsing-and-serializing-dom">
<h2 title="APIs for parsing and serializing DOM">2. ~DOMを構文解析する/直列化するための~API</h2>
<section id="the-domparser-interface">
<h3 title="The DOMParser interface">2.1. `DOMParser^I ~interface</h3>
<p id="dom-domparser">
<span id="dom-domparser-parsefromstring"></span>
<span id="idl-def-supportedtype"></span>
<span id="dom-supportedtype-text/html"></span>
<span id="dom-supportedtype-text/xml"></span>
<span id="dom-supportedtype-application/xml"></span>
<span id="dom-supportedtype-application/xhtml+xml"></span>
<span id="dom-supportedtype-image/svg+xml"></span>
`DOMParser^I の定義は、
`~HTML標準@~HTMLdynamic#domparser$へ移動された。
◎
The definition of DOMParser has moved to the HTML Standard.
</p>
</section>
<section id="the-xmlserializer-interface">
<h3 title="The XMLSerializer interface">2.2. `XMLSerializer^I ~interface</h3>
<pre class="idl">
[`Exposed$=Window]
interface `XMLSerializer@I {
`constructor@#dom-xmlserializer-constructor$();
`DOMString$ `serializeToString$m(`Node$I %root);
};
</pre>
<dl class="domintro">
<dt>%xmlserializer = `new XMLSerializer()$m</dt>
<dd>
新たな `XMLSerializer$I ~objを構築する。
◎
Constructs a new XMLSerializer object.
</dd>
<dt>%string = %xmlserializer . `serializeToString(root)$m</dt>
<dd>
~XML直列化を利用して,
%root を文字列に直列化する。
◎
Serializes root into a string using an XML serialization.\
</dd>
<dd>
%root は[
`Node$I / `Attr$I
]~objでない場合、
`TypeError$E 例外が投出される。
◎
Throws a TypeError exception if root is not a Node or an Attr object.
</dd>
</dl>
<div class="algo">
`new XMLSerializer()@m
構築子~手続きは、
何もしない。
◎
The XMLSerializer() constructor must return a new XMLSerializer object.
</div>
<div class="algo">
`serializeToString(root)@m
~method手続きは
⇒
~RET `~XML直列化$( %root, ~F )
◎
The serializeToString(root) method must produce an XML serialization of root passing a value of false for the require well-formed parameter, and return the result.
</div>
</section>
<section id="the-innerhtml-mixin">
<h3 title="The InnerHTML mixin">2.3. `InnerHTML^I ~mixin</h3>