Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated csp directive with latest values (#1466) #1735

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 8 additions & 8 deletions fetch.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1803,11 +1803,11 @@ not always relevant and might require different behavior.
<td>HTML's navigate algorithm (top-level only).
<tr>
<td>"<code>frame</code>"
<td><code>child-src</code>
<td><code>frame-src</code>
<td>HTML's <code>&lt;frame></code>
<tr>
<td>"<code>iframe</code>"
<td><code>child-src</code>
<td><code>frame-src</code>
<td>HTML's <code>&lt;iframe></code>
<tr>
<td>""
Expand Down Expand Up @@ -1839,15 +1839,15 @@ not always relevant and might require different behavior.
<code>cursor</code>, CSS' <code>list-style-image</code>, …
<tr>
<td>"<code>audioworklet</code>"
<td><code>script-src</code>
<td><code>script-src-elem</code>
<td><code>audioWorklet.addModule()</code>
<tr>
<td>"<code>paintworklet</code>"
<td><code>script-src</code>
<td><code>script-src-elem</code>
<td><code>CSS.paintWorklet.addModule()</code>
<tr>
<td>"<code>script</code>"
<td><code>script-src</code>
<td><code>script-src-elem</code>
<td>HTML's <code>&lt;script></code>, <code>importScripts()</code>
<tr>
<td>"<code>serviceworker</code>"
Expand All @@ -1871,7 +1871,7 @@ not always relevant and might require different behavior.
<td><code>import "..." with { type: "json" }</code>
<tr>
<td>"<code>style</code>"
<td><code>style-src</code>
<td><code>style-src-elem</code>
<td>HTML's <code>&lt;link rel=stylesheet></code>, CSS' <code>@import</code>, <code>import "..." with { type: "css" }</code>
<tr>
<td>"<code>track</code>"
Expand Down Expand Up @@ -1899,15 +1899,15 @@ not always relevant and might require different behavior.
<tr>
<td>"<code>prefetch</code>"
<td rowspan=2>""
<td rowspan=2><code>default-src</code> (no specific directive)
<td rowspan=2><code>connect-src</code> (no specific directive)
<td>HTML's <code>&lt;link rel=prefetch></code>
<tr>
<td>"<code>prerender</code>"
<td>HTML's <code>&lt;link rel=prerender></code>
<tr>
<td>"<code>xslt</code>"
<td>"<code>xslt</code>"
<td><code>script-src</code>
<td><code>script-src-elem</code>
<td><code>&lt;?xml-stylesheet></code>
</table>

Expand Down