-
Notifications
You must be signed in to change notification settings - Fork 8
/
CSP3-ja.html
13785 lines (12803 loc) · 406 KB
/
CSP3-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>Content Security Policy Level 3 (日本語訳)</title>
<link rel="stylesheet" href="common.css" type="text/css">
<link rel="stylesheet" href="common-w3c.css" type="text/css">
<style>
samp {
white-space: nowrap;
background: var(--bg-color-1);
margin-left: 0.5em;
margin-right: 0.5em;
}
.hex-value {
font-family: monospace0, monospace;
}
</style>
<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(!indicator) {//%
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 = '#biblio-' + key.toLowerCase();
break;
case 'pl': //protocol literal
text = `'${key}'`;
href = `#grammardef-${key}`;
break;
case 'bl':
text = `\`<code class="literal">${key}</code>\``;
break;
case 'p': // protocol 要素
href = `#grammardef-${key}`;
break;
case 'dir': // 指令
href = `#${key}`;
break;
case 'vB': // CSPViolationReportBody
href = `#dom-cspviolationreportbody-${key.toLowerCase()}`;
break;
case 'vE': // SecurityPolicyViolationEvent
href = `#dom-securitypolicyviolationevent-${key.toLowerCase()}`;
break;
case 'vI': // SecurityPolicyViolationEventInit
href = `#dom-securitypolicyviolationeventinit-${key.toLowerCase()}`;
break;
case 'sc': // scheme
text = key.replace(/_/, ':' );
break;
case 'hex': // hex
text = `%x${key}`;
break;
case 'l':
text = `"<code class="literal">${key}</code>"`
break;
case 'U':
text = `U+${key}`
break;
case 'issue':
return `<a href="~CSP3issues/${key}">課題 #${key}</a>`;
break;
case 'en':
text = `<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_title:Content Security Policy Level 3
spec_date:2024-12-17
trans_update:2024-12-18
source_checked:230220
page_state_key:WEBAPPSEC
original_url:https://w3c.github.io/webappsec-csp/
https://www.w3.org/TR/CSP3/
spec_status:WD
ref_id_prefix:biblio-
ref_id_lowercase:true
conformance:w3c
copyright:2024,permissive
trans_1st_pub:2015-12-12
●●class_map
p:production
P:production
dir:directive
h:header
e:element
a:attr
v:value
et:event-type
jA:abstract
E:error
sc:scheme
at:css
f:css
pl:literal
hex:hex-value
U:code-point
cn:cp-name
●●tag_map
p:var
P:code
dir:code
h:code
css:code
sc:code
e:code
a:code
v:code
et:code
I:code
m:code
vB:code
vE:code
vI:code
jA:span
E:code
at:code
f:code
c:code
s:samp
i:i
pl:code
NOTE:span
hex:span
em:em
U:span
cn:span
sub:sub
cite:cite
●●words_table
●network/HTTP/fetch
HTTP-network:
HTTP_S:HTTP(S)
Fetch:
IP:
IPv6:
IPv4:
CDN:
ICE:
STUN:
keepalive:
manifest::::マニフェスト
~fetch~~処理:fetching
prefetch:
website::::サイト
~redirect前の:pre-redirects
回数:count:~
~redirect回数~redirect~count
下位domain:subdomain:::下位ドメイン
hostname::::ホスト名
main:
要請前:pre-request::~::リクエスト前
要請後:post-request::~::リクエスト後
接続前:pre-connect::~
接続性:connectivity::~
不透明な:opaque:~
peer:
●保安
XSS:cross-site scripting:XSS
dangling-markup:dangling markup:::マークアップぶら下げ
乗取り:hijacking::乗っ取り
~security上の:security
~security施策:security policy
~secureでない:insecure
昇格:upgrade::~
暗号的:cryptographic::~
暗号用:cryptographic::~
迂回-:bypass::~
迂回:bypass::~
悪用-:exploit::~
推測-:guess::~
推測-不能:unguessable
欠陥:flaw::~
exfiltration
sink:
双方向通信channel:bidirectional communication channel:双方向通信 channel::双方向通信チャネル
監禁-:lock down:~
投入-:feed:~
fed
乱数:random number::~
網羅する:exhaustiveな:~
壊れ易く, 扱い難い:brittle, awkward
自信:confidence:~
自信がない:low confidence
自信がある:high degree of confidence
大変:tough:~
持ち込む:bring する
構文解析-時に挿入され:parser-inserted
特権:privilege::~
防御-:defend::~
緩い:laxな::~
騙せる:trickできる::~
漏出-:exfiltrate::~
漏出:exfiltration::~
探査-:probe::~
log-in::::ログイン
盗用-:steal::~
転用-:repurpose::~
総当たり:brute force:~
打破-:subvert:~
聴取-:audit:~
隠す:hideする:~
sniff:
~sniff法:sniffing
堅牢性:robustness:~
緩めて:relaxして:~
許容list:allowlist::許容 list:許容リスト
信用できない:untrusted
紛れ込む余地:potentially
他では信用に価する:otherwise trustworthy
誘う道:tempting avenues
^en:UI Redressing
^en:Pixel Perfect
●CSP 対象
CSSOM
compilation::::コンパイル
track::::トラック
~script以外には~~直に:scripts but not any other non-script channels
bookmarklet::::ブックマークレット
iframe-srcdoc:iframe srcdoc
開な:open::開いた
開く:openする::~
開かれ:openされ::~
WebAssembly:
WebRTC:
~WebRTC:RTC
~WebRTC:webrtc
password::::パスワード
username::::ユーザ名
●CSP
hash::::ハッシュ
nonce::::ナンス
~nonce可能:nonceable
~nonce可能でない:not nonceable
digest::::ダイジェスト
式:expression::~
報告-法:reporting
報告-:reporting
報告先:reporting endpoint::~::レポート先
報告用:reporting::~::レポート用
端点:endpoint::~::エンドポイント
施行n:enforcement::施行
施行:enforcing::~
先天的:a priori::~
稼働中の:running::~
稼働時:runtime::~
pragma:
~pragma指令:processing instruction
通過制御-:gate::~
有効果:effective::~
処置先:disposition::~
行番号:line number::~
列番号:column number::~
~CSP:Content Security Policy
~CSP:content security policy
~CSP:CSP
厳密な~CSP:Strict CSP
●構文/文字列操作
成分:成分
ASTERISK
SEMICOLON
SOLIDUS
FULLSTOP
COMMA
STOP
^p:scheme-part
percent-::: %-
同型:isomorphic::~
直列形の:serialized::~::シリアル形の
直列形:serialized::~::シリアル形
区切っ:delimitし:~
区切られ:delimitされ:~
〜で区切られた:-delimited
asterisk::::アスタリスク
剥いで:stripして:~
wildcard::::ワイルドカード
~EQ:is identical to
case-sensitive
~token化:tokenization
符号化-法:encoding
10 進数:decimal number
●処理
callable:
合格-:pass::~
Yes:::はい
No:::いいえ
阻止される^i:Blocked
許容される^i:Allowed
許容する^i:Allows
許容しない^i:Does Not Allow
合致しない^i:Does Not Match
合致する^i:Matches
ε:Does Not Violate
blockedURI:
schedule::::スケジュール
initializing
skip
pipe:
剥ぐ:stripする:~
候補:candidate:~
params::::パラメタ群
連結-:concatenate:~
連結する$:joining
渡す:pass する
伝播する:captured on its way into, and will bubble its way out of
再~target法:retargeting
~instance化:instantion
~instance化:instantiation
~instance化:instantiate
popping
modification
すぐに:shortly
成り行き:outcome
何もしない:returns normally
必要なら:potentially
●変数
%element
%n
%m
%直列形:serialized
%~source:source
%処置先:disposition
%指令~集合:policy
%指令~集合:-
%~algo:algorithm
%~hash~list:-
%~hash:hash
%~token:-
%~token:token
%~token群:-
%~list:
%指令~名:directive name
%指令~値:directive value
%~list:list
%施策~群:policies
%施策:policy
%応答:response
%名前:
%値
%大域~obj:global
%大域~obj:
%指令~名:directive
%指令~名:directive-name
%指令~名:directive name
%違反:violation
%要請:request
%~CSP~list:CSP list
%違反された指令:violates
%結果:result
%指令:directive
%G
%文書:document
%~obj:object
%要素:element
%型:type
%~navi要請:navigation request
%種別:type
%~navi応答:navigation request
%応答~CSP~list:response CSP list
%~target:target
%~realm:realm
%~parameter文字列~群:parameterStrings
%本体~文字列:bodyString
%~code文字列:codeString
%~source文字列:sourceString
%~compilation種別:compilationType
%~compilation~sink:compilationSink
%~parameter引数~群:parameterArgs
%本体~引数:bodyArg
-:globals
%~source~list:source-list
%~source~list:source list
%本体:body
%報告~用~URL:stripped-document-URL
%報告-先~指令:report-to-directive
%報告先:endpoint
%名前:name
%基底:base
%文脈:context
%~sandbox法~flag集合:sandboxing flag set
%~navi種別:navigation type
%検査~種別:check type
%生成元:origin
%起動元:initiator
%完全性~metadata:integrity metadata
%完全性~式~群:integrity expressions
%完全性~source群:integrity sources
%~metadata:source
%~nonce:nonce
%式
%式:expression
%~URL:url
%~URL~scheme:-
%~URL~host:-
%~URL~port:-
%~redirect回数:redirect count
%s
%~scheme成分:-
%~port成分:port-part
%~URL~path:path
%A:-
%B:-
%A:A
%B:B
%A:port A
%B:port B
%A:path A
%B:path B
%~scheme:-
-:defaultPort
%正規化-済み入力:normalizedInput
%listA:path list A
%listB:path list B
%LA:-
%LB:-
%i:-
%属性:attribute
%~inlineをすべて許容するか:allow all inline
%安全でない~hashか:unsafe-hashes
%~algo:algorithm
%有効果な指令の名前:effective directive name
%指令~fallback~list:directive fallback list
%~fallback指令:fallback directive
%既定の指令:defaultDirective
-:remaining
%信用-済みか:isTrusted
%~index:index
%引数:arg
%検証される~source:sourceToValidate
●仕様
W3C
noise::::ノイズ
不可欠:critical:~
modular::::モジュール式
modular:modular fashion
恒久的:permanent:~
より適した:better suited
詳細に:in detailに:~
需要:demand:~
著作上の:authoring:~
優先権:priority:~
優先権を与える:advance the user’s priority
反復的に:iterative fashionで:~
単純に:simply
特質:property:~:::プロパティ
疑義:suspect:~
補佐的:ancillary:~
高価:expensive:~
自明:trivial:~
基礎的な:foundational:~
妥協点:compromise:~
視点:perspective:~
利点:advantage:~
細かい:granularな:~
細かさ:granularity:~
手助け:facilitate:~
仕事:work:~
単直:straightforward:簡単
安定的:stable:~
明確さ:clarity:~
発展:evolution:~
無傷で:unscathed:~
改善-:improvement
-:perform
目指す:aimする:~
答え:answer:~
築上げる:build upする:築き上げる
規制-:regulate:~
警告:warning:~
論じ:discussion
運用:operation:~
運用者:operator:~
代用-:substitute::~
信奉-:espouse:~
見積もり:estimate:~
計画-:plan:~
~~特段の注意を払う:pay particular attention
欠いて:lackして:~
欠く:lackする:~
土台:ground:~
土台から:ground up
難題:challenge:~
自身が依存するもの:dependencies
為す:makeする:~
禁制-:prohibit:~
種類:kind:~
束ねら:tieさ:~
問答無用:draconian:~
補足-:supplement:~
利用度:usage:~
準拠な:compliantな:準拠する
勧める:it is advisable to
アリでない:impossible
最も~~簡単:best
好例:good examples
相応に:fairly
正当:legitimate
好都合:is fine, and desirable
主な:major
~~詳細は、~~自動的に:automagically
-:unclear
十分:sufficient
suspect
〜に置き換えた〜:variant
一方〜他方:vice-versa
短く言えば:In short
上手く:well
よって::To that end
それ自身のために/に利するために:behalf of に
~~外:wild
相当に:pretty
高~level:high-level
など:like
今日:today
何故なら:because
ぶん,:fairly
おかげ:helpfully
諸刃の剣:big hammer
まとまりのない:sprawlings
部位:portion
繰り~~返し:iteration
何らかの類の:some sort
何らかの仕方で:in one way or another
あり得る/得る:potentially
potential
awesome
早期実装:earlier iteration
支持を受けて/よりも:in favor of
-:clever
種のもの:kind
外部~化:externalize
置き換えるもの:replacement
~~対処-:deal with
-:extensibility
比して:in relation to
包摂的:encompassing fashion
生じることになる:in play
同時に〜にもなる:balance
~~述べて:talk
~~述べられ:spell out
書き記す:spell 〜 out
ときに呈する〜 “気になる面白い” :sometimes-interesting 〜 present
興味を引く:interesting
責を負う/責も負う:responsible
担当する:responsible
走査して:walking
~~注視-:watching:
~~正しく保つ:get right
拡げ:expand
反した:goes against
価値が損われる:significantly reducing their value
整える:set up
~~確信が得られた:gained confidence
様々な組み合わせ:piece together
効果を~~発揮する:gains meaning
いずれかに~~分類される:fall into one of several categories
書き直され:rewritten
~~働くserve
関わる:interesting
べき:ought
できるだけ抑え:try to minimize
外からの入力に対する注意深い検証/出力の安全な形への符号化-:careful input validation and output encoding
満たされ:met
満たす:meet
-:think
preferably
選ばれ:chosen
出荷-:ship
大きく:substantial
かなりの~noise~~源になる:produces a substantial amount of noise
かなり:substantially
-:assuming
デモる:demonstrateする:~
傾向がある:tend to
-:help
見当たらない:looked
said
容易さ:ease
administrative
取組むことは可能:addressable
分類:categories
該当-:fall into
●未分類
Infra:
ES:ECMAScript
light:
light:main
worklet:
折返:折り返
scalable::::スケーラブル
先行-:precede:~
XSLT:
Service-Worker-1^r:Service Worker
sw:Service Worker
MegaCorp:
addon::::アドオン
-:subject
強制d:forced::強制
dashboard::::ダッシュボード
生の:raw:~
重複:duplicate:~
重複な:duplicate:重複した
和集合:union:~
列挙値:enum::~
^e:iframe
追加すること:adding additional
-:stem
にも〜する:way out
始-:begin
弱い:weak
手渡す:hand
consist
consisting
count
end
fall
gained
get
having
叩く:hit
moving
put
remain
を指している:pointing to
探し出-:looking for
得る:Retrieve
~RET:abort
open:
opener:
~plugin-type:
から生じて:originate
部分照合:prefix/postfix text matching
~~比較
^p:base64
Level
~main~fetch:Main Fetch
文書:Document
空になったどうか:if the resulting policies end up containing at least one item
~~省くよう最適化-:use it to optimize away
面する:surface
現れる:appear
~CSP~hash報告:csp hash report
文書~URL:documentURL
下位資源~URL:subresourceURL
抗-:against
他の:different
長い:long
note
respective
short
time
top
true
back
e-mail:e-mail
in order to
informative
people
public
ought
please
we
-:over
~source:payload
●指示語
~~元の:main
特に〜ない:no particular
-/まるごと:entirely
~~最後の:final
ある種の:one variant
その一片:that bit
一部:part of
各種:various
古い:old
everything
以上:least
片:piece
during
anyone
anything
neither
sequence
several
something
後続して:subsequent
such
themselves
thing
together
前面:front
lot
moreover
nothing
-/次の:below
後半部:second half
ほとんどの場合:most of the time
一群の:set of
●●original_id_map
ascii-case_insensitive:
style-src-init:
●●words_table1
MIXED-CONTENT1:https://www.w3.org/TR/mixed-content/
SRI1:webappsec-subresource-integrity-ja.html
UPGRADE-INSECURE-REQUESTS:webappsec-upgrade-insecure-requests-ja.html
CSP3issues:https://github.com/w3c/webappsec-csp/issues
WASM:https://webassembly.github.io/spec
meta:<code class="element">meta</code>
strict-dynamic-usage:<a href="#strict-dynamic-usage">§ <code class="literal">'strict-dynamic'</code> の用法</a>
at_import:<code class="css">@import</code>
●●mdn_urls
header-content-security-policy:HTTP/Headers/Content-Security-Policy
header-content-security-policy-report-only:HTTP/Headers/Content-Security-Policy-Report-Only
base-uri:HTTP/Headers/Content-Security-Policy/base-uri
child-src:HTTP/Headers/Content-Security-Policy/child-src
connect-src:HTTP/Headers/Content-Security-Policy/connect-src
default-src:HTTP/Headers/Content-Security-Policy/default-src
font-src:HTTP/Headers/Content-Security-Policy/font-src
form-action:HTTP/Headers/Content-Security-Policy/form-action
frame-ancestors:HTTP/Headers/Content-Security-Policy/frame-ancestors
frame-src:HTTP/Headers/Content-Security-Policy/frame-src
img-src:HTTP/Headers/Content-Security-Policy/img-src
manifest-src:HTTP/Headers/Content-Security-Policy/manifest-src
media-src:HTTP/Headers/Content-Security-Policy/media-src
object-src:HTTP/Headers/Content-Security-Policy/object-src
report-to:HTTP/Headers/Content-Security-Policy/report-to
report-uri:HTTP/Headers/Content-Security-Policy/report-uri
sandbox:HTTP/Headers/Content-Security-Policy/sandbox
script-src:HTTP/Headers/Content-Security-Policy/script-src
script-src-attr:HTTP/Headers/Content-Security-Policy/script-src-attr
script-src-elem:HTTP/Headers/Content-Security-Policy/script-src-elem
style-src:HTTP/Headers/Content-Security-Policy/style-src
style-src-attr:HTTP/Headers/Content-Security-Policy/style-src-attr
style-src-elem:HTTP/Headers/Content-Security-Policy/style-src-elem
worker-src:HTTP/Headers/Content-Security-Policy/worker-src
securitypolicyviolationevent:API/SecurityPolicyViolationEvent
cspviolationreportbody:API/CSPViolationReportBody
enumdef-securitypolicyviolationeventdisposition:API/SecurityPolicyViolationEventDisposition
dictdef-securitypolicyviolationeventinit:API/SecurityPolicyViolationEventInit
●●link_map
●grammardef
pl.allow:#grammardef-allow
pl.block:#grammardef-block
pl.none:#grammardef-none
pl.self:#grammardef-self
pl.unsafe-inline:#grammardef-unsafe-inline
pl.unsafe-eval:#grammardef-unsafe-eval
pl.strict-dynamic:#grammardef-strict-dynamic
pl.unsafe-hashes:#grammardef-unsafe-hashes
pl.report-sample:#grammardef-report
pl.unsafe-allow-redirects:#grammardef-unsafe-allow-redirects
pl.wasm-unsafe-eval:#grammardef-wasm-unsafe-eval
pl.report-sha256:#grammardef-report-sha256
pl.report-sha384:#grammardef-report-sha384
pl.report-sha512:#grammardef-report-sha512
p.optional-ascii-whitespace:#grammardef-optional-ascii-whitespace
p.required-ascii-whitespace:#grammardef-required-ascii-whitespace
p.ancestor-source-list:#grammardef-ancestor-source-list
p.ancestor-source:#grammardef-ancestor-source
p.base64-value:#grammardef-base64-value
p.directive-name:#grammardef-directive-name
p.directive-value:#grammardef-directive-value
p.hash-algorithm:#grammardef-hash-algorithm
p.hash-source:#grammardef-hash-source
p.host-char:#grammardef-host-char
p.host-part:#grammardef-host-part
p.host-source:#grammardef-host-source
p.keyword-source:#grammardef-keyword-source
p.nonce-source:#grammardef-nonce-source
p.path-part:#grammardef-path-part
p.port-part:#grammardef-port-part
p.scheme-part:#grammardef-scheme-part
p.scheme-source:#grammardef-scheme-source
p.serialized-directive:#grammardef-serialized-directive
p.serialized-policy:#grammardef-serialized-policy
p.serialized-policy-list:#grammardef-serialized-policy-list
p.serialized-source-list:#grammardef-serialized-source-list
p.source-expression:#grammardef-source-expression
p.path-absolute:~RFCx/rfc3986#section-3.3
p.scheme:~RFCx/rfc3986#section-3.1
p.uri-reference:~RFCx/rfc3986#section-4.1
~RFCx/rfc5234#appendix-B.1
~RFCx/rfc7230 → ~HTTPinfra
p.token:~HTTPinfra#p.token
p.base64url:~RFCx/rfc4648#section-5
p.base64:~RFCx/rfc4648#section-4
P.ALPHA:#_ALPHA
P.DIGIT:#_DIGIT
P.VCHAR:#_VCHAR
P.OWS:#_OWS
~asterisk:#_asterisk
~semicolon:#_semicolon
~slash:#_slash
~comma:#_comma
#規則:#_list-rule
●IDL
Exposed:~WEBIDLjs#Exposed
Default:~WEBIDLjs#Default
unsigned short:~WEBIDL#idl-unsigned-short
unsigned long:~WEBIDL#idl-unsigned-long
DOMString:~WEBIDL#idl-DOMString
USVString:~WEBIDL#idl-USVString
I.ReportBody:~REPORTING#reportbody
I.CSPViolationReportBody:#cspviolationreportbody
I.SecurityPolicyViolationEventDisposition:#enumdef-securitypolicyviolationeventdisposition
I.SecurityPolicyViolationEventInit:#dictdef-securitypolicyviolationeventinit
I.SecurityPolicyViolationEvent:#securitypolicyviolationevent
I.ServiceWorker:~SW1#serviceworker
I.SharedWorker:~WORKERS#sharedworker
I.Worker:~WORKERS#worker
I.WorkerGlobalScope:~WORKERS#workerglobalscope
I.WorkletGlobalScope:~WORKLETS#workletglobalscope
I.Window:~WINDOW#window
I.WebSocket:~WEBSOCKET#websocket
I.EventSource:~HTMLsse#eventsource
I.XMLHttpRequest:~XHR#xmlhttprequest
I.Element:~DOM4#element
→ 要素:~DOM4#concept-element
I.RTCIceCandidate:~TR/webrtc/#dom-rtcicecandidate
I.RTCPeerConnection:~TR/webrtc/#dom-rtcpeerconnection
I.Event:~DOM4#event
I.EventInit:~DOM4#dictdef-eventinit
I.EventTarget:~DOM4#eventtarget
I.Document:~DOM4#document
文書:~DOM4#document
l.enforce:#dom-securitypolicyviolationeventdisposition-enforce
l.report:#dom-securitypolicyviolationeventdisposition-report
vB.toJSON
vB.documentURL:#dom-cspviolationreportbody-documenturl
vB.referrer:#dom-cspviolationreportbody-referrer
vB.blockedURL:#dom-cspviolationreportbody-blockedurl
vB.effectiveDirective:#dom-cspviolationreportbody-effectivedirective
vB.originalPolicy:#dom-cspviolationreportbody-originalpolicy
vB.sourceFile:#dom-cspviolationreportbody-sourcefile
vB.sample:#dom-cspviolationreportbody-sample
vB.disposition:#dom-cspviolationreportbody-disposition
vB.statusCode:#dom-cspviolationreportbody-statuscode
vB.lineNumber:#dom-cspviolationreportbody-linenumber
vB.columnNumber:#dom-cspviolationreportbody-columnnumber
vI.effectiveDirective:#dom-securitypolicyviolationeventinit-effectivedirective
vI.originalPolicy:#dom-securitypolicyviolationeventinit-originalpolicy
vI.sourceFile:#dom-securitypolicyviolationeventinit-sourcefile
vI.sample:#dom-securitypolicyviolationeventinit-sample
vI.disposition:#dom-securitypolicyviolationeventinit-disposition
vI.referrer:#dom-securitypolicyviolationeventinit-referrer
vI.statusCode:#dom-securitypolicyviolationeventinit-statuscode
vI.effectiveDirective:#dom-securitypolicyviolationeventinit-effectivedirective
constructor:#dom-securitypolicyviolationevent-securitypolicyviolationevent
vE.blockedURI:#dom-securitypolicyviolationevent-blockeduri
vE.columnNumber:#dom-securitypolicyviolationevent-columnnumber
vE.documentURI:#dom-securitypolicyviolationevent-documenturi
vE.effectiveDirective:#dom-securitypolicyviolationevent-effectivedirective
vE.violatedDirective:#dom-securitypolicyviolationevent-violateddirective
vE.lineNumber:#dom-securitypolicyviolationevent-linenumber
vE.originalPolicy:#dom-securitypolicyviolationevent-originalpolicy
vE.sourceFile:#dom-securitypolicyviolationevent-sourcefile
vE.sample:#dom-securitypolicyviolationevent-sample
vE.disposition:#dom-securitypolicyviolationevent-disposition
vE.referrer:#dom-securitypolicyviolationevent-referrer
vE.statusCode:#dom-securitypolicyviolationevent-statuscode
m.referrer:~HTMLdom#dom-document-referrer
m.bubbles:~DOM4#dom-event-bubbles
m.composed:~DOM4#dom-event-composed
m.target:~DOM4#dom-event-target
m.setInterval():~HTMLGAPI#dom-setinterval
m.setTimeout():~HTMLGAPI#dom-settimeout
m.fetch():~FETCH#fetch-method
m.restartIce():~TR/webrtc/#dom-rtcpeerconnection-restartice
m.connectionState:~TR/webrtc/#dom-peerconnection-connection-state
m.local:~TR/webrtc/#dom-rtcicecandidatepair-local
m.remote:~TR/webrtc/#dom-rtcicecandidatepair-local
m.cssText
m.insertRule()
%type:#dom-securitypolicyviolationevent-securitypolicyviolationevent-type-eventinitdict-type