-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHTML-embed-ja.html
4606 lines (4203 loc) · 133 KB
/
HTML-embed-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 — iframe, embed, object 要素 他(日本語訳)</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: 'MAIN',
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':
case 'hH':
text = `"<code class="literal">${text}</code>"`;
break;
case 'm':
case 'mS':
const n = text.indexOf('(');
if(n > 0){
key = text.slice(0, n);
text = key + text.slice(n).replace(/\w+/g, '<var>$&</var>');
}
break;
case 'U':
text = `U+${key}`;
break;
case 'smb':
text = `(<span class="char-symbol">${text}</span>)`;
break;
case 'sl':
text = `[[${key}]]`;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
break;
case 'AA':
return `<a href="~HTMLARIA#el-${key}">作者~向け</a>/<a href="~HTMLAAM#el-${key}">実装者~向け</a>`;
break;
case 'obsMb':
text = '廃用にされた~memberもある';
href= `~HTMLLS/obsolete.html#${key}-partial`;
break;
}
let tag = tag_map[klass];
if(tag) {
let classname = class_map[klass];
classname = classname ? ` class="${classname}"` : '';
text = `<${tag}${classname}>${text}</${tag}>`;
}
if(indicator !== '^'){
href = href1 || link_map[ klass ? `${klass}.${key}` : key ] || href;
if(!href){
console.log(match); // check error
return match;
}
switch(indicator){
case '$':
text = `<a href="${href}">${text}</a>`;
break;
case '@':
text = `<dfn id="${href.slice(1)}">${text}</dfn>`;
break;
}
}
return text;
}
}
</script>
<script type="text/plain" id="_source_data">
●●options
spec_date:2024-12-12
trans_update:2024-12-12
source_checked:220227
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/iframe-embed-object.html
abbr_url:HEembed
nav_prev:HEimageAlt
nav_next:HEmedia
trans_1st_pub:2017-03-07
●●class_map
e:element
E:error
a:attr
aF:attr
aE:attr
aO:attr
et:event-type
sc:scheme
st:attr-state
sl:js-slot
v:value
h:header
U:code-point
obsMb:comment
●●tag_map
I:code
m:code
mF:code
mE:code
mO:code
E:code
c:code
e:code
a:code
aF:code
aE:code
aO:code
et:code
mt:code
st:i
sc:code
h:code
sub:sub
U:span
v:code
V:var
sl:span
i:i
cite:cite
obsMb:span
●●original_urls
mathml:https://html.spec.whatwg.org/multipage/embedded-content-other.html
svg-0:https://html.spec.whatwg.org/multipage/embedded-content-other.html
dimension-attributes:https://html.spec.whatwg.org/multipage/embedded-content-other.html
●●mdn_urls
the-embed-element:HTML/Element/embed
the-iframe-element:HTML/Element/iframe
the-object-element:HTML/Element/object
htmlembedelement:API/HTMLEmbedElement
htmlobjectelement:API/HTMLObjectElement
htmliframeelement:API/HTMLIFrameElement
●●original_id_map
shared-attribute-processing-steps-for-iframe-and-frame-elements:otherwise-steps-for-iframe-or-frame-elements
●●link_map
●IDL
CEReactions:~HEcustom#cereactions
HTMLConstructor:~HTMLdom#htmlconstructor
I.TrustedHTML:~TRUSTED-TYPES#trustedhtml
HTMLString:~TRUSTED-TYPES#typedefdef-htmlstring
I.DOMTokenList:~DOM4#interface-domtokenlist
I.Document:~HTMLdom#document
I.HTMLElement:~HTMLdom#htmlelement
I.HTMLEmbedElement:#htmlembedelement
I.HTMLFormElement:~HEforms#htmlformelement
I.HTMLObjectElement:#htmlobjectelement
I.ValidityState:~HTMLforms#validitystate
~window:~WINDOW#the-window-object
I.Window:~WINDOW#window
I.WindowProxy:~HTMLWPROXY#windowproxy
I.HTMLIFrameElement:#htmliframeelement
I.DOMHighResTimeStamp:~HRTIME#dom-domhighrestimestamp
m.alert:~HTMLGAPI#dom-window-alert
m.checkValidity:~HTMLforms#dom-cva-checkvalidity
m.confirm:~HTMLGAPI#dom-window-confirm
m.form:~HTMLforms#dom-fae-form
m.getSVGDocument:#dom-media-getsvgdocument
m.prompt:~HTMLGAPI#dom-window-prompt
m.reportValidity:~HTMLforms#dom-cva-reportvalidity
m.requestFullscreen:~FULLSCREEN#dom-element-requestfullscreen
m.setCustomValidity:~HTMLforms#dom-cva-setcustomvalidity
m.validationMessage:~HTMLforms#dom-cva-validationmessage
m.validity:~HTMLforms#dom-cva-validity
m.value:~DOM4#dom-domtokenlist-value
m.willValidate:~HTMLforms#dom-cva-willvalidate
m.width:#dom-dim-width
m.height:#dom-dim-height
mF.allowFullscreen:#dom-iframe-allowfullscreen
mF.allow:#dom-iframe-allow
mF.contentDocument:#dom-iframe-contentdocument
mF.contentWindow:#dom-iframe-contentwindow
mF.name:#dom-iframe-name
mF.referrerPolicy:#dom-iframe-referrerpolicy
mF.loading:#dom-iframe-loading
mF.sandbox:#dom-iframe-sandbox
mF.src:#dom-iframe-src
mF.srcdoc:#dom-iframe-srcdoc
mE.src:#dom-embed-src
mE.type:#dom-embed-type
mO.contentDocument:#dom-object-contentdocument
mO.contentWindow:#dom-object-contentwindow
mO.data:#dom-object-data
mO.name:#dom-object-name
mO.type:#dom-object-type
e.embed:#the-embed-element
e.iframe:#the-iframe-element
e.object:#the-object-element
e.video:~HEmedia#the-video-element
e.img:~HEimages#the-img-element
e.picture:~HEimages#the-picture-element
e.source:~HEimages#the-source-element
e.input:~HEinput#the-input-element
e.head:~HEmetadata#the-head-element
e.html:~HEmetadata#the-html-element
e.title:~HEmetadata#the-title-element
e.body:~HEsections#the-body-element
e.form:~HEforms#the-form-element
e.frame:~HTMLobs#frame
e.annotation-xml:~MATHMLcore#dfn-annotation-xml
e.math:~MATHMLcore#the-top-level-math-element
e.merror:~MATHMLcore#error-message-merror
e.mi:~MATHMLcore#the-mi-element
e.mn:~MATHMLcore#number-mn
e.mo:~MATHMLcore#operator-fence-separator-or-accent-mo
e.ms:~MATHMLcore#string-literal-ms
e.mtext:~MATHMLcore#text-mtext
e.foreignObject:~SVGembedded#elementdef-foreignObject
e.svg:~SVGstruct#elementdef-svg
e.title:~SVGstruct#elementdef-title
a.classid:~HTMLobs#attr-object-classid
a.form:~HTMLforms#attr-fae-form
a.width:#attr-dim-width
a.height:#attr-dim-height
a.itemprop:~HTMLLS/microdata.html#names:-the-itemprop-attribute
a.type:~HEinput#attr-input-type
aF.allow:#attr-iframe-allow
aF.allowfullscreen:#attr-iframe-allowfullscreen
aF.name:#attr-iframe-name
aF.referrerpolicy:#attr-iframe-referrerpolicy
aF.loading:#attr-iframe-loading
aF.sandbox:#attr-iframe-sandbox
aF.src:#attr-iframe-src
aF.srcdoc:#attr-iframe-srcdoc
aE.src:#attr-embed-src
aE.type:#attr-embed-type
aO.data:#attr-object-data
aO.name:#attr-object-name
aO.type:#attr-object-type
et.error:~HTMLindex#event-error
et.load:~HTMLindex#event-load
et.unload:~HTMLindex#event-unload
mt.application/octet-stream:~RFCx/rfc2046#section-4.5.1
mt.text/html:~HTMLiana#text/html
mt.text/plain:~RFCx/rfc2046#section-4.1.3
mt.image/svg+xml:~HTMLindex#image/svg+xml
sc.~about_blank:~HTMLdep#about:blank
sc.~about_srcdoc:~HTMLurl#about:srcdoc
v.allow-forms:~ORIGIN#attr-iframe-sandbox-allow-forms
v.allow-modals:~ORIGIN#attr-iframe-sandbox-allow-modals
v.allow-orientation-lock:~ORIGIN#attr-iframe-sandbox-allow-orientation-lock
v.allow-pointer-lock:~ORIGIN#attr-iframe-sandbox-allow-pointer-lock
v.allow-popups-to-escape-sandbox:~ORIGIN#attr-iframe-sandbox-allow-popups-to-escape-sandbox
v.allow-downloads:~ORIGIN#attr-iframe-sandbox-allow-downloads
v.allow-popups:~ORIGIN#attr-iframe-sandbox-allow-popups
v.allow-presentation:~ORIGIN#attr-iframe-sandbox-allow-presentation
v.allow-same-origin:~ORIGIN#attr-iframe-sandbox-allow-same-origin
v.allow-scripts:~ORIGIN#attr-iframe-sandbox-allow-scripts
v.allow-top-navigation-by-user-activation:~ORIGIN#attr-iframe-sandbox-allow-top-navigation-by-user-activation
v.allow-top-navigation-to-custom-protocols:~ORIGIN#attr-iframe-sandbox-allow-top-navigation-to-custom-protocols
v.allow-top-navigation:~ORIGIN#attr-iframe-sandbox-allow-top-navigation
st.Image:~HEinput#image-button-state-(type=image)
st.Eager:~HTMLurl#attr-loading-eager-state
i.~fallback:#_object-fallback
●用語
~load~eventを遅延し得る:#potentially-delays-the-load-event
利用は許容されて:#allowed-to-use
~iframe-srcdoc文書:#an-iframe-srcdoc-document
~iframe~load~event手続き:#iframe-load-event-steps
~iframe~loadは進捗-中か:#iframe-load-in-progress
~iframe~loadを黙らすか:#mute-iframe-load
~iframe属性~群を処理する:#process-the-iframe-attributes
~iframe~src属性を処理する:#shared-attribute-processing-steps-for-iframe-and-frame-elements
現在の~naviは~lazyに読込まれるか:#current-navigation-was-lazy-loaded
~iframeを~navigateする:#navigate-an-iframe-or-frame
作動中になれ:#concept-embed-active
~embed要素を設定しておく:#the-embed-element-setup-steps
~embed~task~source:#embed-task-source
内容の型を決定する:#concept-embed-type
~pluginなしを表示する:#display-no-plugin
i.初回:#process-iframe-initial-insertion
処理待ちな資源~計時の開始~時刻:#iframe-pending-resource-timing-start-time
●用語HTML
寸法~属性:#dimension-attributes
~media要素:~HEmedia#media-element
~HTML要素~接続~後の手続き:~HTMLINFRA#html-element-post-connection-steps
~HTML要素~除去-時の手続き:~HTMLINFRA#html-element-removing-steps
文書の中へ挿入され:~HTMLINFRA#insert-an-element-into-a-document
文書から除去され:~HTMLINFRA#remove-an-element-from-a-document
~plugin:~HTMLINFRA#plugin
適用-可能な仕様:~HTMLINFRA#other-applicable-specifications
反映する:~HTMLcdom#reflect
既知な値のみに制限され:~HTMLcdom#limited-to-only-known-values
~Content-Type:~HTMLurl#content-type
~Content-Type~metadata:~HTMLurl#content-type
資源の/~associated/明示的な ~Content-Type~metadata
~referrer施策~属性:~HTMLurl#referrer-policy-attribute
~URLを符号化法の下で相対的に構文解析する:~HTMLurl#encoding-parsing-a-url
前後~空白~可の妥当かつ空でない~URL:~HTMLurl#valid-non-empty-url-potentially-surrounded-by-spaces
~lazyに読込むことになる:~HTMLurl#will-lazy-load-element-steps
~lazy読込ng属性:~HTMLurl#lazy-loading-attribute
~lazy読込n再開~手続き:~HTMLurl#lazy-load-resumption-steps
~lazyに読込んでいる要素の交差~観測を開始する:~HTMLurl#start-intersection-observing-a-lazy-loading-element
~about_blank に合致して:~HTMLurl#matches-about:blank
~about_srcdoc に合致して:~HTMLurl#matches-about:srcdoc
真偽-属性:~HTMLcms#boolean-attribute
~space等で分離された~token集合:~HTMLcms#set-of-space-separated-tokens
妥当な負でない整数:~HTMLcms#valid-non-negative-integer
分類:~HTMLdom#concept-element-categories
内容~属性:~HTMLdom#concept-element-attributes
内容~model:~HTMLdom#concept-element-content-model
この要素を利用できる文脈:~HTMLdom#concept-element-contexts
~accessibilityの考慮点:~HTMLdom#concept-element-accessibility-considerations
~DOM~interface:~HTMLdom#concept-element-dom
埋込d内容:~HTMLdom#embedded-content-category
~flow内容:~HTMLdom#flow-content-2
大域~属性:~HTMLdom#global-attributes
対話的~内容:~HTMLdom#interactive-content-2
なし:~HTMLdom#concept-content-nothing
可触~内容:~HTMLdom#palpable-content-2
句ng内容:~HTMLdom#phrasing-content-2
~fallback内容:~HTMLdom#fallback-content
透過的な内容:~HTMLdom#transparent
text/html における~tag省略:~HTMLdom#concept-element-tag-omission
表現-:~HTMLdom#represents
要素間~空白:~HTMLdom#inter-element-whitespace
文書:~HTMLdom#the-document-object
まだ初期~about_blank 文書で:~HTMLdom#still-on-its-initial-about:blank-document
~DOM操作~task~source:~WAPI#dom-manipulation-task-source
関連な設定群~obj:~WAPI#relevant-settings-object
関連な大域~obj:~WAPI#concept-relevant-global
~event~loop:~WAPI#event-loop
~network用~task~source:~WAPI#networking-task-source
~queueされ:~WAPI#queue-a-task
~task~queue:~WAPI#task-queue
要素~taskを~queueする:~WAPI#queue-an-element-task
最初の段:~WAPI#step1
~task~source:~WAPI#task-source
~task:~WAPI#concept-task
enV.~top-level生成元:~WAPI#concept-environment-top-level-origin
syn.~comment:~HTMLwriting#syntax-comments
syn.要素:~HTMLwriting#syntax-elements
~DOCTYPE:~HTMLwriting#syntax-doctype
終了~tag:~HTMLwriting#syntax-end-tag
~HTMLwriting#syntax-tag-omission
~HTML構文:~HTMLwriting#syntax
~HTML構文解析器:~HTMLparsing#html-parser
完全に読込まれ:~HTMLlifecycle#completely-loaded
~load~eventを遅延する:~HTMLparsing#delay-the-load-event
~load~eventを遅延して:~HTMLparsing#delay-the-load-event
~load後~task用に準備済み:~HTMLparsing#ready-for-post-load-tasks
~open要素~stack:~HTMLparsing#stack-of-open-elements
~listされる要素:~HEforms#category-listed
拘束~検証~API:~HTMLforms#the-constraint-validation-api
~form所有者:~HTMLforms#form-owner
~formに所有され得る要素:~HEforms#form-associated-element
一過な作動化を有して:~HTMLinteraction#transient-activation
~XML構文解析器:~HTMLxml#xml-parser
具現化されて:~HTMLrendering#being-rendered
~navigable:~HTMLds#navigable
子~navigable:~HTMLds#child-navigable
内容~navigable:~HTMLds#content-navigable
新たな子~navigableを作成する:~HTMLds#create-a-new-child-navigable
子~navigableを破壊する:~HTMLds#destroy-a-child-navigable
~node~navigable:~HTMLds#node-navigable
広義-先祖~navigable群:~HTMLds#inclusive-ancestor-navigables
nav.作動中な文書:~HTMLds#nav-document
nav.作動中な~WindowProxy:~HTMLds#nav-wp
nav.辿可能な~navigable:~HTMLds#nav-traversable
nav.~load~event遅延-中か:~HTMLds#delaying-load-events-mode
全部的に作動中:~HTMLds#fully-active
補助~閲覧~文脈:~HTMLds#auxiliary-browsing-context
属する閲覧~文脈:~HTMLds#concept-document-bc
内容~文書:~HTMLds#concept-bcc-content-document
内容~window:~HTMLds#content-window
妥当な~navigable~target名:~HTMLds#valid-navigable-target-name
nav.作動中な~window:~HTMLds#nav-window
破棄され:~HTMLds#a-browsing-context-is-discarded
生成元:~ORIGIN#concept-origin
不透明な生成元:~ORIGIN#concept-origin-opaque
非同一-生成元:~ORIGIN#concept-origin
同一-生成元:~ORIGIN#same-origin
同じ生成元~domain:~ORIGIN#same-origin-domain
~iframe~sandbox法~flag集合:~ORIGIN#iframe-sandboxing-flag-set
~sandbox法~指令を構文解析する:~ORIGIN#parse-a-sandboxing-directive
~URLと履歴を更新する:~HTMLnav#url-and-history-update-steps
doc.許可~施策:~HTMLdom#concept-document-permissions-policy
~navigate:~HTMLnav#navigate
~navigableを~URLへ~navigateする:~HTMLnav#navigate
~navi:~HTMLnav#navigate
hH.auto:~HTMLnav#navigationhistorybehavior-auto
hH.replace:~HTMLnav#navigationhistorybehavior-replace
i.~referrer施策:~HTMLnav#navigation-referrer-policy
i.文書~資源:~HTMLnav#navigation-resource
i.応答:~HTMLnav#navigation-response
i.履歴~取扱い:~HTMLnav#navigation-hh
外部~softwareに手渡す:~HTMLnav#hand-off-to-external-software
単純~dialogを示せない:~HTMLGAPI#cannot-show-simple-dialogs
●用語他
~ASCII空白:~INFRA#ascii-whitespace
~ASCII~tabや~ASCII改行文字:~INFRA#ascii-tab-or-newline
~HTML名前空間:~INFRA#html-namespace
~URL~record:~URL1#concept-url
~URL:~URL1#concept-url
~URL構文解析する:~URL1#concept-url-parser
url.~path:~URL1#concept-url-path
同等な~URL:~URL1#concept-url-equals
~fetch~scheme:~FETCH#fetch-scheme
~fetchする:~FETCH#concept-fetch
~fetch:~FETCH#concept-fetch
i.応答の処理n:~FETCH#process-response
~ok状態s:~FETCH#ok-status
要請:~FETCH#concept-request
応答:~FETCH#concept-response
~network~error:~FETCH#concept-network-error
~fetch計時~報:~FETCH#fetch-timing-info
fT.開始~時刻:~FETCH#fetch-timing-info-start-time
fT.終了~時刻:~FETCH#fetch-timing-info-end-time
応答~本体~報:~FETCH#response-body-info
rq.~client:~FETCH#concept-request-client
rq.資格証~mode:~FETCH#concept-request-credentials-mode
rq.~mode:~FETCH#concept-request-mode
rq.起動元~種別:~FETCH#request-initiator-type
rq.行先:~FETCH#concept-request-destination
rq.~URL:~FETCH#concept-request-url
rq.~URL資格証を利用するか:~FETCH#concept-request-use-url-credentials-flag
rs.~URL:~FETCH#concept-response-url
~MIME型:~MIMESNIFF#mime-type
~XML~MIME型:~MIMESNIFF#xml-mime-type
算出された~MIME型:~MIMESNIFF#computed-mime-type
画像を特定的に~sniffするための規則:~MIMESNIFF#rules-for-sniffing-images-specifically
~textか~binaryかを判別する規則:~MIMESNIFF#rules-for-text-or-binary
妥当な~MIME型~文字列:~MIMESNIFF#valid-mime-type
~eventを発火する:~DOM4#concept-event-fire
~HTML文書:~DOM4#html-document
doc.~URL:~DOM4#concept-document-url
doc.生成元:~DOM4#concept-document-origin
~XML文書:~DOM4#xml-document
文書~要素:~DOM4#document-element
文書~内に:~DOM4#in-a-document
~node文書:~DOM4#concept-node-document
~supportする~token集合:~DOM4#concept-supported-tokens
~shadow~tree:~DOM4#concept-shadow-tree
属性を名前空間と局所~名により取得する:~DOM4#concept-element-attributes-get-by-namespace
attr.局所~名:~DOM4#concept-attribute-local-name
attr.値:~DOM4#concept-attribute-value
属性~値を設定する:~DOM4#concept-element-attributes-set-value
信用-済みな型に準拠な文字列を取得する:~TRUSTED-TYPES#get-trusted-type-compliant-string-algorithm
~referrer施策:~REFERRER-POLICY#referrer-policy
現在の高分解能~時刻:~HRTIME#dfn-current-high-resolution-time
資源~計時を~markする:~RESOURCE-TIMING#dfn-mark-resource-timing
許可~施策:~PERMISSIONS-POLICY#permissions-policy
容器~施策:~PERMISSIONS-POLICY#container-policy
直列形の許可~施策:~PERMISSIONS-POLICY#serialized-permissions-policy
文書~内の特能は生成元~用に可能化されるか?:~PERMISSIONS-POLICY#is-feature-enabled
許可~施策~属性を処理する:~PERMISSIONS-POLICY#process-policy-attributes
施策により制御される特能:~PERMISSIONS-POLICY#policy-controlled-feature
生来な横幅:~CSSIMAGE#natural-width
生来な縦幅:~CSSIMAGE#natural-height
~CSS~pixel:~CSSVAL#px
●●words_table1
about_blank:about:blank
about_srcdoc:about:srcdoc
●●words_table
●仕様
簡素:succinct:~
冗長:redundant:~
必要最小限:minimal:~
助け:help:~
誤解釈-:misinterpret:~
防ぐ:preventする:~
装う:pretendする:~
本当の:realな:~
準拠な:compliantな:準拠する
-:possible
任意選択で:may
能力を備え:capable
いまいましいもの:annoyance
-:manner
〜により制御される特能:-controlled-feature
きちんと:well-
注意/:notice/note
暗黙に:by implication
困難:quite hard
よい:may
更には、:furthermore
でなくとも:despite
になり得る:potentially
無にする:altogether
ようがされまいが:regardless of
単に:just
そこで:prematurely
としていることもある:might say
併用:in conjunction with
できるようにする:enable
適合しない:not 〜 conforming / non-conformant
選り分ける:reason about
優先される:takes priority
課す:imposeする
選べる:pick
できない:unable
ままにされる:remain
まま:remaining
とする:suppose
しないことを勧める:ill-advised
覚えておく:remember
~~発揮:take
●network/navi
DNS:
ok:
sniff:
lazy:
為す:makeする:~
load:
~load後:post-load
unload:
補助:auxiliary::~
●保安
~secure化-:secured
探査-:probe::~
脆弱:vulnerable::~
被害:damage:~
~URL資格証~利用:use-URL-credential
騙され:trickされ:~
突破-:break out:~
~~軽くする:lift
malware::::マルウェア
仕向けれ:convinceでき:~
仕向けて:convinceして:~
黙らす:muteする::~
●構文
DOCTYPE:
QUOTATION MARK
AMPERSAND
LESS-THAN SIGN
CHARACTER TABULATION
LINE FEED
LF
CARRIAGE RETURN
CR
大文字:uppercase letter
省略不可:omissibleでない:~
省略:omission:~
-:tab
ampersand::::アンパサンド
open::::
生の:raw:~
直列形の:serialized::~::シリアル形の
終端-:end:~
●embed/UI/内容
Content-Type:
MathML:
iframe:
iframe-srcdoc:iframe srcdoc
embed:
popup::::ポップアップ
gadget::::ガジェット
再生器:player::~::プレイヤー
blog::::ブログ
分類:categories:~
分類-:categorize:~
分類される:falls into 〜 categories
透過的:transparent::~
句ng:phrasing::句::フレージング
可触:palpable::~
広告:advertising:~
広告unit:ad unit:広告 unit::広告ブロック
投稿:post::~
横:horizontal::~
縦:vertical::~
解像度:resolution::~
online::::オンライン
伸張-:stretch::~
一過:transient::~
生来:natural::~
なし:none
●処理
増分的:incremental:~
再開:resumption::~
手渡す:hand offする:取り扱わせる
高分解能:high resolution::~
処理待ち:pending:~
newly
~access可能:accessible
開始し直す:restart
終:finish
なった:become
-:stopping
でなくなった:stop
回数を数える:count
読み取り:reading
時点で:marked as
先送り可否:deferral
この~algoの 〜 段~以降を走らす手続き:the rest of this algorithm starting with the step labeled 〜
進捗-中:in progress
初回:initialInsertion
src:
srcdoc:
%src:maybeURL
%初回か:initialInsertion
%再開~手続き:resumptionSteps
%応答:res
-:processResponseEndOfBody
%~referrer施策:referrerPolicy
%履歴~取扱い:historyHandling
%子~文書:childDocument
~srcdoc文字列:srcdocString
%iframe:element
%embed:element
%object:element
%大域~obj:global
%~URL:url
%~fallback計時~報:fallbackTimingInfo
%挿入された~node:insertedNode
%除去される~node:removedNode
%準拠な文字列:compliantString
●未分類
要素間:inter-element::~
~popされ除かれ:popped off
WindowProxy:
代理-:proxy::~::プロキシ
名目上の:nominal:~
代行業者:broker:~
広義-:inclusive:~
instance化:instantiate
jump
time
~~不正な:malformed
し直す:again
同時に:simultaneous
~iframe:fragment
~~地点:point
再度:re
-:opt
-:wherein
-:straight
-:leading
-:followed by
O3D
GOTO:jump to the step below labeled
-:name-value
地図:map
Geolocation
`可能化される^i:"Enabled"
-:exist
送る:send
現れ:appear
~~供給-:furnish
見られ:view
●指示語
出自の:originating:~
~~追加の:extra
この時点で/今:now
自身のみでは:on its own
また:once more
-:aforementioned
とも:together
どちらかは:At least
一部:part of
二重に:doubly
次:next
異なる/相異なる:different
何か:anything
対象に:target
何も〜しない:nothing
以前に:previously
最後に:finally
初めに:originally
前の:previous
様々な:various
similar
similarly
他所へ:away
1 列目
以外
以上
一方
次第
時点
場合
●●html_code_list
■iframe-1
<article>
<h1>自分の雑誌ができた</h1>
<p>頑張った甲斐あって、版元を見つけられた。ついに自分の雑誌を持てるようになった。最高だ!最初の号は9月になるよ。フードをゲットしたりボックスの中を見て回ることについての記事だ。楽しみだよ。</p>
<footer>
<p><a href="/users/cap">cap</a> さん(投稿: 1 時間前)
</footer>
<article>
<footer> 13 分前, <a href="/users/ch">ch</a> さん</footer>
<<iframe sandbox srcdoc="<p>表紙絵はできた?"></iframe>>
</article>
<article>
<footer> 9 分前, <a href="/users/cap">cap</a> さん</footer>
<<iframe sandbox srcdoc="<p>もちろん、<a href="/gallery?mode=cover&amp;page=1">僕のギャラリー</a>で見れるよ。"></iframe>>
</article>
<article>
<footer> 5 分前, <a href="/users/ch">ch</a> さん</footer>
<<iframe sandbox srcdoc="<p>それ、 earl の食卓だな。
<p>次の表紙絵には earl&amp;me を入れないとな。"></iframe>>
</article>
<article>
<h1>I got my own magazine!</h1>
<p>After much effort, I've finally found a publisher, and so now I
have my own magazine! Isn't that awesome?! The first issue will come
out in September, and we have articles about getting food, and about
getting in boxes, it's going to be great!</p>
<footer>
<p>Written by <a href="/users/cap">cap</a>, 1 hour ago.
</footer>
<article>
<footer> Thirteen minutes ago, <a href="/users/ch">ch</a> wrote: </footer>
<iframe sandbox srcdoc="<p>did you get a cover picture yet?"></iframe>
</article>
<article>
<footer> Nine minutes ago, <a href="/users/cap">cap</a> wrote: </footer>
<iframe sandbox srcdoc="<p>Yeah, you can see it <a href="/gallery?mode=cover&amp;page=1">in my gallery</a>."></iframe>
</article>
<article>
<footer> Five minutes ago, <a href="/users/ch">ch</a> wrote: </footer>
<iframe sandbox srcdoc="<p>hey that's earl's table.
<p>you should get earl&amp;me on the next cover."></iframe>
</article>
■iframe-2
<p>どんな内容だろうが恐るるに足らない。何も編集を加えていない投稿内容はここにある:</p>
<iframe sandbox src="https://usercontent.example.net/getusercontent.cgi?id=12193"></iframe>
<p>We're not scared of you! Here is your content, unedited:</p>
<iframe sandbox src="https://usercontent.example.net/getusercontent.cgi?id=12193"></iframe>
■iframe-3
<iframe sandbox="allow-same-origin allow-forms allow-scripts"
src="https://maps.example.com/embedded.html"></iframe>
■iframe-4
<iframe sandbox="allow-same-origin allow-forms" src=%B ></iframe>
■iframe-5
<iframe sandbox="allow-scripts" src=%C ></iframe>
■iframe-6
<a href=%D >Link</a>
■iframe-7
<iframe src="https://maps.example.com/" allow="geolocation"></iframe>
■iframe-8
<article>
<header>
<p><img src="/usericons/1627591962735"> <b>Fred Flintstone</b></p>
<p><a href="/posts/3095182851" rel=bookmark>12:44</a> — <a href="#acl-3095182851">私的投稿</a></p>
</header>
<p>Check out my new ride!</p>
<<iframe src="https://video.example.com/embed?id=92469812" allowfullscreen></iframe>>
</article>
<article>
<header>
<p><img src="/usericons/1627591962735"> <b>Fred Flintstone</b></p>
<p><a href="/posts/3095182851" rel=bookmark>12:44</a> — <a href="#acl-3095182851">Private Post</a></p>
</header>
<main>
<p>Check out my new ride!</p>
<iframe src="https://video.example.com/embed?id=92469812" allowfullscreen></iframe>
</main>
</article>
■iframe-9
<iframe src="https://ads.example.com/?customerid=923513721&format=banner"
width="468" height="60"></iframe>
■object-2
<figure>
<object data="clock.html"></object>
<figcaption>自作 HTML 時計</figcaption>
</figure>
<figcaption>My HTML Clock</figcaption>
■mathml-1
<!DOCTYPE html>
<html lang="en">
<head>
<title>二次方程式の解の公式</title>
</head>
<body>
<h1>二次方程式の解の公式</h1>
<p>
<math>
<mi>x</mi>
<mo>=</mo>
<mfrac>
<mrow>
<mo form="prefix">−</mo> <mi>b</mi>
<mo>±</mo>
<msqrt>
<msup> <mi>b</mi> <mn>2</mn> </msup>
<mo>−</mo>
<mn>4</mn> <mo></mo> <mi>a</mi> <mo></mo> <mi>c</mi>
</msqrt>
</mrow>
<mrow>
<mn>2</mn> <mo></mo> <mi>a</mi>
</mrow>
</mfrac>
</math>
</p>
</body>
</html>
The quadratic formula
●●trans_metadata
<p>
~THIS_PAGEは、~WHATWGによる HTML 仕様の
<a href="~HTMLLS/#toc-semantics">§ The elements of HTML</a>
内の
<a href="~SPEC_URL">iframe, embed, object 要素</a>
各節,
<a href="~HTMLLS/embedded-content-other.html">その他の埋め込み内容に関係する節</a>
を日本語に翻訳したものです。
~PUB
</p>
</script>
</head>
<body>
<header>
<hgroup>
<h1>HTML — iframe, embed, object 要素, 他</h1>
</hgroup>
</header>
<main id="MAIN" hidden>
<section id="_conventions">
<h4>【この訳に特有な表記規約】</h4>
◎表記記号
</section>
<section id="the-iframe-element">