Re: [whatwg/fetch] Only allow blob: URLs that point to Blob objects (#708)

foolip approved this pull request.



> @@ -2936,9 +2936,9 @@ steps:
      <a>object</a>.
 
      <li>
-      <p>If <var>request</var>'s <a for=request>method</a> is not
-      `<code>GET</code>` or <var>blob</var> is null, then return a
-      <a>network error</a>.
+      <p>If <var>request</var>'s <a for=request>method</a> is not `<code>GET</code>`,
+      <var>blob</var> is null, or <var>blob</var> is not a {{Blob}} object, then return a

This is strictly speaking redundant as null is not a Blob object, but spelling it out doesn't hurt.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/pull/708#pullrequestreview-113175529

Received on Wednesday, 18 April 2018 11:20:12 UTC