Skip to content

Commit 9b2106f

Browse files
committed
Review comments
1 parent 7f86151 commit 9b2106f

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

source

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2487,6 +2487,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
24872487
<p>The following terms are defined in <cite>Fetch</cite>: <ref spec=FETCH></p>
24882488

24892489
<ul class="brief">
2490+
<li><dfn data-x="header-abnf" data-x-href="https://fetch.spec.whatwg.org/#abnf">ABNF</dfn></li>
24902491
<li><dfn><code>about:blank</code></dfn></li>
24912492
<li>An <dfn data-x-href="https://fetch.spec.whatwg.org/#http-scheme">HTTP(S) scheme</dfn></li>
24922493
<li>A <dfn data-x-href="https://fetch.spec.whatwg.org/#local-scheme">local scheme</dfn></li>
@@ -84808,7 +84809,9 @@ interface <dfn>BeforeUnloadEvent</dfn> : <span>Event</span> {
8480884809
`<code>X-Frame-Options</code>` are used in the same <span
8480984810
data-x="concept-response">response</span>, then `<code>X-Frame-Options</code>` is ignored.</p>
8481084811

84811-
<p>TODO ABNF? Not sure of the normative status of those these days.</p>
84812+
<p>Its value <span data-x="header-abnf">ABNF</span>:</p>
84813+
84814+
<pre><code data-x="" class="abnf">X-Frame-Options = "DENY" / "SAMEORIGIN"</code></pre>
8481284815

8481384816
<div w-nodev>
8481484817

@@ -84840,12 +84843,13 @@ interface <dfn>BeforeUnloadEvent</dfn> : <span>Event</span> {
8484084843
`<code>X-Frame-Options</code>` from <var>response</var>'s <span
8484184844
data-x="concept-response-header-list">header list</span>.</p></li>
8484284845

84843-
<li><p>If <var>xFrameOptions</var> <span data-x="list contains">contains</span> an <span>ASCII
84844-
case-insensitive</span> match for "<code data-x="">deny</code>", then return false.</p></li>
84846+
<li><p>If <var>xFrameOptions</var> <span data-x="list contains">contains</span> a string that is
84847+
an <span>ASCII case-insensitive</span> match for "<code data-x="">deny</code>", then return
84848+
false.</p></li>
8484584849

8484684850
<li>
84847-
<p>If <var>xFrameOptions</var> <span data-x="list contains">contains</span> an <span>ASCII
84848-
case-insensitive</span> match for "<code data-x="">sameorigin</code>", then:</p>
84851+
<p>If <var>xFrameOptions</var> <span data-x="list contains">contains</span> a string that is an
84852+
<span>ASCII case-insensitive</span> match for "<code data-x="">sameorigin</code>", then:</p>
8484984853

8485084854
<ol>
8485184855
<li><p>Let <var>ancestorBC</var> be <var>browsingContext</var>'s <span>parent browsing

0 commit comments

Comments
 (0)