-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathHTML-images-ja.html
10094 lines (9308 loc) · 288 KB
/
HTML-images-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 — Images 他 ( Embedded content )(日本語訳)</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':
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 't':
text = `<${text}>`;
break;
case 'tag':
text = `<${text}>`;
break;
case 'U':
text = `U+${key}`;
break;
case 'smb':
text = `(<span class="char-symbol">${text}</span>)`;
break;
case 'xCode':
return `<a id="_ex-html-${key}">*</a>`;
break;
case 'dgm':
return `<a id="_dgm-${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;
case 'en':
return `<span lang="en">${key}</span>`;
break;
}
let tag = tag_map[klass];
if(tag) {
let classname = class_map[klass];
classname = classname ? ` class="${classname}"` : '';
text = `<${tag}${classname}>${text}</${tag}>`;
}
if(indicator !== '^'){
href = href1 || link_map[ klass ? `${klass}.${key}` : key ] || href;
if(!href){
console.log(match); // check error
return match;
}
switch(indicator){
case '$':
text = `<a href="${href}">${text}</a>`;
break;
case '@':
text = `<dfn id="${href.slice(1)}">${text}</dfn>`;
break;
}
}
return text;
}
}
</script>
<script type="text/plain" id="_source_data">
●●options
spec_date:2025-01-27
trans_update:2024-11-09
source_checked:230602
page_state_key:HTML
spec_status:LS
original_url:https://html.spec.whatwg.org/multipage/embedded-content.html
nav_prev:HEedits
nav_next:HEimageAlt
trans_1st_pub:2017-02-20
●●class_map
e:element
E:error
a:attr
aS:attr
aL:attr
et:event-type
p:property
t:type
st:attr-state
css:css
v:value
jv:js-value
h:header
U:code-point
obsMb:comment
●●tag_map
I:code
m:code
mS:code
mA:code
mD:code
E:code
c:code
tag:code
e:code
a:code
aS:code
aL:code
et:code
mt:code
st:i
h:code
p:code
t:var
css:code
U:span
v:code
jv:code
i:i
em:em
obsMb:span
●●original_urls
images:https://html.spec.whatwg.org/multipage/images.html
the-map-element:https://html.spec.whatwg.org/multipage/image-maps.html
the-area-element:https://html.spec.whatwg.org/multipage/image-maps.html
image-maps:https://html.spec.whatwg.org/multipage/image-maps.html
●●original_id_map
●●mdn_urls
the-area-element:HTML/Element/area
the-img-element:HTML/Element/img
the-map-element:HTML/Element/map
the-source-element:HTML/Element/source
the-picture-element:HTML/Element/picture
htmlimageelement:API/HTMLImageElement
htmlpictureelement:API/HTMLPictureElement
htmlsourceelement:API/HTMLSourceElement
htmlmapelement:API/HTMLMapElement
htmlareaelement:API/HTMLAreaElement
●●link_map
CEReactions:~HEcustom#cereactions
HTMLConstructor:~HTMLdom#htmlconstructor
LegacyFactoryFunction:~WEBIDLjs#LegacyFactoryFunction
E.EncodingError:~WEBIDL#encodingerror
Promise:~WEBIDL#idl-promise
I.Document:~HTMLdom#document
文書:~HTMLdom#the-document-object
I.HTMLElement:~HTMLdom#htmlelement
I.HTMLImageElement:#htmlimageelement
I.HTMLPictureElement:#htmlpictureelement
I.HTMLSourceElement:#htmlsourceelement
I.HTMLCollection:~DOM4#interface-htmlcollection
I.HTMLMapElement:#htmlmapelement
I.DOMTokenList:~DOM4#interface-domtokenlist
I.HTMLAreaElement:#htmlareaelement
I.HTMLHyperlinkElementUtils:~HTMLlinks#htmlhyperlinkelementutils
m.Image:#dom-image
m.alt:#dom-img-alt
m.areas:#dom-map-areas
m.complete:#dom-img-complete
m.createElement:~DOM4#dom-document-createelement
m.crossOrigin:#dom-img-crossorigin
m.currentSrc:#dom-img-currentsrc
m.decoding:#dom-img-decoding
m.fetchPriority:#dom-img-fetchpriority
m.height:#dom-img-height
m.isMap:#dom-img-ismap
m.loading:#dom-img-loading
m.name:#dom-map-name
m.naturalHeight:#dom-img-naturalheight
m.naturalWidth:#dom-img-naturalwidth
m.referrerPolicy:#dom-img-referrerpolicy
m.requestAnimationFrame:~HTMLGAPI#dom-animationframeprovider-requestanimationframe
m.decode:#dom-img-decode
m.sizes:#dom-img-sizes
m.src:#dom-img-src
m.srcset:#dom-img-srcset
m.useMap:#dom-img-usemap
m.value:~DOM4#dom-domtokenlist-value
m.width:#dom-img-width
mS.media:#dom-source-media
mS.sizes:#dom-source-sizes
mS.src:~HEmedia#dom-source-src
mS.type:#dom-source-type
mS.srcset:#dom-source-srcset
mA.alt:#dom-area-alt
mA.coords:#dom-area-coords
mA.download:#dom-area-download
mA.ping:#dom-area-ping
mA.referrerPolicy:#dom-area-referrerpolicy
mA.rel:#dom-area-rel
mA.relList:#dom-area-rellist
mA.shape:#dom-area-shape
mA.target:#dom-area-target
mD.width:#dom-dim-width
mD.height:#dom-dim-height
et.error:~HTMLindex#event-error
et.load:~HTMLindex#event-load
e.img:#the-img-element
e.picture:#the-picture-element
e.source:#the-source-element
e.area:#the-area-element
e.map:#the-map-element
e.audio:~HEmedia#the-audio-element
e.video:~HEmedia#the-video-element
e.track:~HEtrack#the-track-element
e.embed:~HEembed#the-embed-element
e.iframe:~HEembed#the-iframe-element
e.input:~HEinput#the-input-element
e.a:~HEtextlevel#the-a-element
e.button:~HEforms#the-button-element
e.canvas:~HEcanvas#the-canvas-element
e.figure:~HEgrouping#the-figure-element
e.figcaption:~HEgrouping#the-figcaption-element
e.link:~HEmetadata#the-link-element
aS.media:#attr-source-media
aS.sizes:#attr-source-sizes
aS.src:~HEmedia#attr-source-src
aS.srcset:#attr-source-srcset
aS.type:#attr-source-type
aS.width:#attr-source-width
aS.height:#attr-source-height
aL.imagesrcset:~HEmetadata#attr-link-imagesrcset
aL.imagesizes:~HEmetadata#attr-link-imagesizes
aL.href:~HEmetadata#attr-link-href
a.alt:#attr-img-alt
a.crossorigin:#attr-img-crossorigin
a.decoding:#attr-img-decoding
a.fetchpriority:#attr-img-fetchpriority
a.loading:#attr-img-loading
a.href:~HTMLlinks#attr-hyperlink-href
a.id:~HTMLdom#the-id-attribute
a.ismap:#attr-img-ismap
a.name:#attr-map-name
a.referrerpolicy:#attr-img-referrerpolicy
a.sizes:#attr-img-sizes
a.src:#attr-img-src
a.srcset:#attr-img-srcset
a.title:~HTMLdom#attr-title
a.usemap:#attr-hyperlink-usemap
a.height:~HEembed#attr-dim-height
a.width:~HEembed#attr-dim-width
a.~alt0:#attr-area-alt
a.coords:#attr-area-coords
a.shape:#attr-area-shape
a.download:~HTMLlinks#attr-hyperlink-download
a.itemprop:~HTMLLS/microdata.html#names:-the-itemprop-attribute
a.ping:~HTMLlinks#ping
a.~referrerpolicy0:~HTMLlinks#attr-hyperlink-referrerpolicy
a.rel:~HTMLlinks#attr-hyperlink-rel
a.target:~HTMLlinks#attr-hyperlink-target
v.sync:#attr-img-decoding-sync
v.async:#attr-img-decoding-async
v.auto:#attr-img-decoding-auto
v.~auto0:#valdef-sizes-auto
v.circle:#attr-area-shape-keyword-circle
v.circ:#attr-area-shape-keyword-circ
v.default:#attr-area-shape-keyword-default
v.poly:#attr-area-shape-keyword-poly
v.polygon:#attr-area-shape-keyword-polygon
v.rect:#attr-area-shape-keyword-rect
v.rectangle:#attr-area-shape-keyword-rectangle
st.同期c:#attr-img-decoding-sync-state
st.非同期c:#attr-img-decoding-async-state
st.自動:#attr-img-decoding-auto-state
st.~CORSなし:~HTMLurl#attr-crossorigin-none
st.真円:#attr-area-shape-circle
st.既定:#attr-area-shape-default
st.多角形:#attr-area-shape-poly
st.矩形:#attr-area-shape-rect
st.Lazy:~HTMLurl#attr-loading-lazy-state
st.Eager:~HTMLurl#attr-loading-eager-state
t.length:~CSSVAL#lengths
t.media-condition:~MQ5#typedef-media-condition
t.source-size:#source-size
t.source-size-list:#source-size-list
t.source-size-value:#source-size-value
t.whitespace-token:~CSSSYN#typedef-whitespace-token
p.width:~CSS2J#propdef-width
p.height:~CSS2J#propdef-height
p.aspect-ratio:~SIZING#propdef-aspect-ratio
p.image-orientation:~CSSIMAGE#propdef-image-orientation
p.contain-intrinsic-size:~CSSWG/css-sizing-4/#propdef-contain-intrinsic-size
css.px:#px
~CSSVAL#px
css.pt:~CSSVAL#pt
css.vw:~CSSVAL#vw
css.in:~CSSVAL#in
~CSS~inch:~CSSVAL#in
h.Cache-Control:~HTTPcache#field.cache-control
mt.multipart/x-mixed-replace:~HTMLiana#multipart/x-mixed-replace
v.must-revalidate:~HTTPcache#cache-response-directive.must-revalidate
●用語
画像~fetch~task:#_img-fetch-task
全部的に復号-可能:#img-good
可用:#img-available
画像は可用:#img-available
状態:#img-req-state
st.壊en:#img-error
st.完全に可用:#img-all
st.部分的に可用:#img-inc
st.不可用:#img-none
現在の~URL:#img-req-url
#img-load
画像~data:#img-req-data
復号-:#img-decoding-process
画像~復号~hint:#image-decoding-hint
画像~要請:#image-request
現在の要請:#current-request
処理待ち要請:#pending-request
画像~要請を中止する:#abort-the-image-request
処理待ち要請を現在の要請に昇格する:#upgrade-the-pending-request-to-the-current-request
画像を呈示~用に準備する:#prepare-an-image-for-presentation
§ 画像~用の代替として動作する~textを供するときの要件:~HEimageAlt#alt
表示域に基づく選定:#viewport-based-selection
画像~形式に基づく選定:#image-format-based-selection
~art-direction:#art-direction
画像~dataを更新する:#update-the-image-data
画像~sourceを選定する:#select-an-image-source
~source集合から画像~sourceを選定する:#select-an-image-source-from-a-source-set
~source集合を作成する:#create-a-source-set
~source集合を更新する:#update-the-source-set
~srcset属性を構文解析する:#parse-a-srcset-attribute
~sizes属性を構文解析する:#parse-a-sizes-attribute
~source密度を正規化する:#normalise-the-source-densities
現在の画素~密度:#current-pixel-density
密度~補正-済み生来な~size:#density-corrected-intrinsic-width-and-height
選好される密度~補正-済み寸法:#preferred-density-corrected-dimensions
#img-determine-type
画像~source:#image-source
iS.~URL文字列:#_image-source-url
iS.記述子:#_image-source-descriptor
~described上:#unknown-images
機器画素比:#device-pixel-ratio
画像~候補~文字列:#image-candidate-string
画素~密度~記述子:#pixel-density-descriptor
横幅~記述子:#width-descriptor
密度~値:#pixel-density-descriptor-value
画素~密度~記述子~値/値
横幅~値:#width-descriptor-value
横幅~記述子~値:#width-descriptor-value
妥当な~source~size~list:#valid-source-size-list
構文解析-~error:#concept-microsyntax-parse-error
最後に選定された~source:#last-selected-source
可用な画像~list:#list-of-available-images
上層~cachingは無視するか:#ignore-higher-layer-caching
関連な変異:#relevant-mutations
~sizes属性:#sizes-attribute
~source集合:#source-set
~srcset属性:#srcset-attribute
~source~size:#source-size-2
自動-~sizeを許容して:#allows-auto-sizes
~srcsetまたは~pictureを利用して:#use-srcset-or-picture
環境における変化に反応する:#img-environment-changes
寸法~属性~source:#concept-img-dimension-attribute-source
画像~map:#image-map
●用語(HTML
並列的:~HTMLINFRA#in-parallel
~live:~HTMLINFRA#live
文書の中へ挿入された:~HTMLINFRA#insert-an-element-into-a-document
~HTML要素~挿入-時の手続き:~HTMLINFRA#html-element-insertion-steps
~HTML要素~除去-時の手続き:~HTMLINFRA#html-element-removing-steps
反映して:~HTMLcdom#reflect
反映する:~HTMLcdom#reflect
既知な値のみに制限され:~HTMLcdom#limited-to-only-known-values
寸法~属性:~HEembed#dimension-attributes
~media要素:~HEmedia#media-element
~media資源:~HEmedia#media-resource
資源~選定~algo:~HEmedia#concept-media-load-algorithm
~lazy読込ng属性:~HTMLurl#lazy-loading-attribute
~lazyに読込むことになる:~HTMLurl#will-lazy-load-element-steps
~lazy読込n再開~手続き:~HTMLurl#lazy-load-resumption-steps
~lazyに読込んでいる要素の交差~観測を開始する:~HTMLurl#start-intersection-observing-a-lazy-loading-element
~referrer施策~属性:~HTMLurl#referrer-policy-attribute
~fetch優先度~属性:~HTMLurl#fetch-priority-attribute
~CORS設定群~属性:~HTMLurl#cors-settings-attribute
~CORS非同一-生成元:~HTMLurl#cors-cross-origin
~CORS同一-生成元:~HTMLurl#cors-same-origin
~CORSになり得る要請を作成する:~HTMLurl#create-a-potential-cors-request
結付けられた~Content-Type~header:~HTMLurl#content-type
安全でない応答:~HTMLurl#unsafe-response
~URLを符号化法の下で相対的に構文解析する:~HTMLurl#encoding-parsing-a-url
~HTMLurl#encoding-parsing-and-serializing-a-url → ~HTMLurl#encoding-parsing-a-url, ~URL1#concept-url-serializer
妥当かつ空でない~URL:~HTMLurl#valid-non-empty-url
前後~空白~可の妥当かつ空でない~URL:~HTMLurl#valid-non-empty-url-potentially-surrounded-by-spaces
環境に合致して:~HTMLcms#matches-the-environment
真偽-属性:~HTMLcms#boolean-attribute
列挙d属性:~HTMLcms#enumerated-attribute
欠落~値~用の既定の状態:~HTMLcms#missing-value-default
妥当でない値~用の既定の状態:~HTMLcms#invalid-value-default
妥当な浮動小数点数:~HTMLcms#valid-floating-point-number
妥当な媒体~query~list:~HTMLcms#valid-media-query-list
妥当な負でない整数:~HTMLcms#valid-non-negative-integer
妥当な浮動小数点数~list:~HTMLcms#valid-list-of-floating-point-numbers
寸法~値として構文解析する:~HTMLcms#rules-for-parsing-dimension-values
妥当な~hash名~参照:~HTMLcms#valid-hash-name-reference
浮動小数点数として構文解析する:~HTMLcms#rules-for-parsing-floating-point-number-values
負でない整数として構文解析する:~HTMLcms#rules-for-parsing-non-negative-integers
浮動小数点数~listとして構文解析する:~HTMLcms#rules-for-parsing-a-list-of-floating-point-numbers
~hash名~参照として構文解析する:~HTMLcms#rules-for-parsing-a-hash-name-reference
分類:~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
大域~属性:~HTMLdom#global-attributes
対話的~内容:~HTMLdom#interactive-content-2
なし:~HTMLdom#concept-content-nothing
可触~内容:~HTMLdom#palpable-content-2
句ng内容:~HTMLdom#phrasing-content-2
text/html における~tag省略:~HTMLdom#concept-element-tag-omission
埋込d内容:~HTMLdom#embedded-content-category
~fallback内容:~HTMLdom#fallback-content
~flow内容:~HTMLdom#flow-content-2
要素間~空白:~HTMLdom#inter-element-whitespace
表現-:~HTMLdom#represents
参照-:~HTMLdom#referenced
~scriptを~supportする要素:~HTMLdom#script-supporting-elements-2
透過的:~HTMLdom#transparent
~event~loop:~WAPI#event-loop
同期区間:~WAPI#synchronous-section
安定~状態を待受ける:~WAPI#await-a-stable-state
~task~source:~WAPI#task-source
~task:~WAPI#concept-task
~DOM操作~task~source:~WAPI#dom-manipulation-task-source
~network用~task~source:~WAPI#networking-task-source
~taskを~queueする:~WAPI#queue-a-task
~queueされ:~WAPI#queue-a-task
大域~taskを~queueする:~WAPI#queue-a-global-task
要素~taskを~queueする:~WAPI#queue-an-element-task
小taskを~queueする:~WAPI#queue-a-microtask
現在の大域~obj:~WAPI#current-global-object
関連な大域~obj:~WAPI#concept-relevant-global
関連な設定群~obj:~WAPI#relevant-settings-object
~script:~WAPI#concept-script
~scriptingは不能化されて:~WAPI#concept-n-noscript
描画を更新する:~WAPI#update-the-rendering
~animation~frame~callback~map:~HTMLGAPI#list-of-animation-frame-callbacks
全部的に作動中:~HTMLds#fully-active
~navigable:~HTMLds#navigable
結付けられた文書:~WINDOW#concept-document-window
生成元:~ORIGIN#concept-origin
~navi:~HTMLnav#navigate
~hyperlink:~HTMLlinks#hyperlink
~hyperlinkを~downloadする:~HTMLlinks#downloading-hyperlinks
~hyperlinkを追う:~HTMLlinks#following-hyperlinks-2
~focus可能な区画:~HTMLinteraction#focusable-area
~formに所有され得る要素:~HEforms#form-associated-element
具現化されて:~HTMLrendering#being-rendered
~animationを開始し直す:~HTMLrendering#restart-the-animation
終了~tag:~HTMLwriting#syntax-end-tag
~load~eventを遅延する:~HTMLparsing#delay-the-load-event
●用語(外部
実装定義:~INFRA#implementation-defined
位置~変数:~INFRA#string-position-variable
~ASCII小文字~化する:~INFRA#ascii-lowercase
~ASCII大小無視:~INFRA#ascii-case-insensitive
符号位置~並びを収集する:~INFRA#collect-a-sequence-of-code-points
~ASCII空白を読飛ばす:~INFRA#skip-ascii-whitespace
~ASCII空白:~INFRA#ascii-whitespace
前後の~ASCII空白~列を剥ぐ:~INFRA#strip-leading-and-trailing-ascii-whitespace
~HTML名前空間:~INFRA#html-namespace
~promiseを却下する:~WEBIDLjs#reject
~promiseを解決する:~WEBIDLjs#resolve
~URL:~URL1#concept-url
絶対~URL:~URL1#absolute-url-string
~URLを直列化する:~URL1#concept-url-serializer
~size:~INFRA#list-size
受入-時の手続き:~DOM4#concept-node-adopt-ext
接続されて:~DOM4#connected
要素を作成する:~DOM4#concept-create-element
文書~要素:~DOM4#document-element
~eventを発火する:~DOM4#concept-event-fire
~node文書:~DOM4#concept-node-document
属性~値を設定する:~DOM4#concept-element-attributes-set-value
~tree:~DOM4#concept-tree
~tree順序:~DOM4#concept-tree-order
doc.生成元:~DOM4#concept-document-origin
~fetch:~FETCH#concept-fetch
~fetching:~FETCH#concept-fetch
i.応答の処理n:~FETCH#process-response
~network~error:~FETCH#concept-network-error
~ok状態s:~FETCH#ok-status
応答~状態s:~FETCH#concept-response-status
応答:~FETCH#concept-response
rq.~client:~FETCH#concept-request-client
rq.起動元:~FETCH#concept-request-initiator
rq.~referrer施策:~FETCH#concept-request-referrer-policy
rq.優先度:~FETCH#request-priority
rq.同期~flag:~HTMLdep#synchronous-flag
廃)rq.同期~flag:~FETCH#synchronous-flag
~MIME型:~MIMESNIFF#mime-type
画像を特定的に~sniffするための規則:~MIMESNIFF#rules-for-sniffing-images-specifically
妥当な~MIME型~文字列:~MIMESNIFF#valid-mime-type
~referrer施策:~REFERRER-POLICY#referrer-policy
~math関数:~CSSVAL#math-function
成分~値:~CSSSYN#component-value
~CSS関数:~CSSSYN#function
具象-~obj~size:~CSSIMAGE#concrete-object-size
生来な寸法:~CSSIMAGE#natural-dimensions → 生来な横幅/生来な縦幅
生来な横幅:~CSSIMAGE#natural-width
生来な縦幅:~CSSIMAGE#natural-height
選好d縦横比:~SIZING#preferred-aspect-ratio
塗り~source:~CSSIMAGE4#paint-source
~commaで分離された成分~値~listとして構文解析する:~CSSSYN#parse-a-comma-separated-list-of-component-values
表示域:~CSS2J#viewport
●●words_table1
alt0:alt
auto0:auto
referrerpolicy0:referrerpolicy
●●words_table
●仕様
選択肢:option::~::オプション
choice:~~選択肢
先取的に:aggressiveに:先取りして
補足的:supplemental:~
補足:supplementary:~
流儀:fashion:~
- /ようにして:fashion
原始的:rudimentary:~
強いら:forceさ:~
順応-:adapt:~
順応的:adaptive:~
排他的:exclusive:~
付随-:accompany:~
代用:replacement:~
著作-法:authoring
冗長:redundant:~
漸増的に:incremental mannerで:~
念頭:mind:~
概略的:brief:~
本当の:real:~
出荷-:ship:~
経た:experienceした:~
助け:help:~
易くする:help
契約:contract:~
破られ:breakされ:~
尊重-:respect:~
稀:rare:~
design::::デザイン
~design化:designate
代替として:alternatively
必要:necessarily
他方、:on the other hand
特殊:special
理想:ideally
悪化:worse
加えて:furthermore
抗して:against
ごく:very
早くに as soon as
目につくほど:notable
なりかねない:potentially
人達:people
の好み:like
見込まれ:likely
見込みが高い:will likely
したいであろう:would like to
次の様に:look like
どうなるか:what would be
影響されない:unaffected
遂げる:carry out
~list:array
からなる:consisting/consists of
同順の:retaining relative order
との併用:in conjunction with
併用-:used together
併用-:together with
に応じて:depending on
いてよい/省略時:optionally
似た見かけの:similar-looking
同様の:similar な
予め除外:preclude
問いに至る:leads to a question
困惑させる:confusing
how
呼ばれている:referred to as
-:When asked to
同一視される referred to as
し易くなるよう:to ease
-:responsible
という:said to be
すなわち、:This means
〜に注意。:Notice that
~~供する:create
与えられていれば:applicable
要がある:require
否:No
●fetch/network/navi
Content-Type:
caching::::キャッシュ処理
sniff:
ok:
hash::::ハッシュ
port-scan:port scan:::ポートスキャン
~server側:server-side
ping:
load:
~downloadし直:re-download
lazy:
eager:
後回し:lazy
早急:eager
上層:higher-layer:~
二重:double:~
本体部位:body part::~::ボディパート
crossorigin
速度:speed:~
可変速:variable-speed:~
高速:fast:~
低速:slow:~
短い:low-
長い:high-
定額制:constant-cost:~
従量制:variable-cost:~
従量課金:pay by the byte
帯域幅:bandwidth:~
progressive::::プログレッシブ
packet::::パケット
仕事場:at work
家:at home
追う:followする:~
●処理(一般
小task:microtask::小 task:小タスク
scriptあり:scripted
main::::メイン
必要時:on demand:~
あり得る:possible
同期区間:synchronous section::~
待受ける:awaitする::待ち受ける
候補:candidate:~
処理待ち:pending:~
壊en:broken:壊れている
破損-:corrupt:~
不可用:unavailable:~
致命的:fatal:~
安定:stable::~
昇格-:upgrade::~
不可分:atomic::~
費やさ:elapseさ:~
修復-:repair:~
抹消-:evict:~
割振る:allocateする:割り振る
受入-:adopt:~
再開:resumption::~
到着-:arrive:~
優先度:priority::~
以降:rest
再度~走らせ:rerun
開始し直す:restart
先立って:ahead of
かかった時間:amount of time it takes
同時:at the same time
先送り可否:deferral
この~algoの 〜 段~以降を走らす手続き:the rest of this algorithm starting with the step labeled 〜
〜か否かが変化した:starts or stops being
~EQ ε:is not set
GOTO:jump to the step labeled/ return to the step labeled
無かったとする下で決定される:but acting as if there are no
%~CORS属性~状態:corsAttributeState
%~URL~record:urlString
%再開~手続き:resumptionSteps
%物理-横幅:physicalWidth
%物理-縦幅:physicalHeight
%要請:req
%~EXIF~tag~map:exifTagMap
%寸法:dim
%寸法~X:dimX:#6
%寸法~Y:dimY:#6
%解像度~X:resX:#4
%解像度~Y:resY:#4
解像度~単位:resUnit
-:widthFromDensity
-:heightFromDensity
%~event名:eventName
%挿入される~node:insertedNode
%除去される~node:removedNode
%旧-親:oldParent
%要素:el
%~source集合:sourceSet
%~source集合:source set
%選定された~source:selectedSource
%要素~群:elements
%~srcset:srcset
%~sizes:sizes
%~href:href
%未解析~sizes~list:unparsed sizes list
%未解析~size:unparsed size
%~size:size
%場合によっては~eventを省略し得るか:maybe omit events flag
場合によっては~eventを省略し得る^i:maybe omit events flag set
%以前の~URL:previousURL
座標s:coords::座標 list:座標リスト
%座標s:coords
%大域~obj:global
●IDL/型/構造
真:true::~
偽:false::~
浮動小数点数:floating-point number:~
on setting
instance化:instantiate
子である:contained
子たち:children
●構文
token化:tokenizer
未解析:unparsed::~::未パースの
丸括弧:parentheses:~
読飛ばす:skipする:読み飛ばす
省略不可:omissibleでない:~
省略:omission:~
有していない:omitted
不一致:mismatch:~
剥ぐ:stripする:~
丸括弧:parens
LEFT PARENTHESIS
EOF
RIGHT PARENTHESIS
COMMA
LATIN SMALL LETTER
●媒体/呈示/画像/UI
PNG:
GIF:
JPEG:
PDF:
APNG:
SMIL:
MNG:
WebP:
EXIF:
JPEG-XR:JPEG XR
picture:
srcset:
sizes:
href:
X:
Y:
zoom::::ズーム
art-direction:art direction::art 演出:アート演出
display::::ディスプレイ
column::::カラム
codec::::コーデック
monitor::::モニタ
laptop::::ノートパソコン
多page:paged:::複ページ
装飾的:decorative:~
環境~上の:environmental
携帯:mobile::~::モバイル
携帯~機:mobile
電話:phone::~
視覚障碍:visual disability:~
盲目:blind:~
縦横比:aspect ratio:~
比して:compareして:比べて
〜よりも:relative to
pointing::::ポインタ指示
選択-:select:~
選定された:selected
変形-:transform:~
視られ:viewされ:~
視れな:viewできな:~
視れない:unable to view
見れない:unable to see
塗り:paint:~
塗られ:paintされ:~
生来:natural::~
OCR
~animate化:animated
~flowし直:reflow
~graphicな:graphical
単-~page:single-page
複-~page:multipage
最~大:biggest
最~小:smallest
周りにずれる:shifting around
●幾何
inch::::インチ
解像度:resolution:~
描画d:rendered:描画
機器画素比:device-pixel-ratio::~
比:ratio::~
回転:rotation::~
縦幅:future-compat-h
縦:vertical::~
横:horizontal::~
密度:density::~
補正-:correct::~
密度~補正-済み:density-corrected
半分:half:~
直立:upright
真横に倒され:90 degrees rotate
対角線:diagonal
切り抜いた:crop
真円:circle:~
矩形:rectangle:~
多角形:polygon:~
無反応:dead::~
図形:shape::~
中心:center:~
半径:radius:~
幾何的:geometric:~
内域:interior:~
even-odd:
多層化-:layer::~
覆う:coverする:~
伸張-:stretch:~
左上隅:top-left corner
右下隅:bottom right corner
地点:point
●内容
banner::::バナー
bitmap::::ビットマップ
句ng:phrasing::句::フレージング
要素間:inter-element:~
分類:categories:~
可触:palpable::~
透過的:transparent::~
なし:none
重要部分:critical part:~
~formに所有され得る:Form-associated
物語:story
絵図:picture
●未分類
圧縮:compression:~
供与-:contribute:~