Re: [whatwg/fetch] CORS: arbitrary blocking of accept header based on length (#862)

@annevk I’m actually not sure why this test-case fails in chromium:

```javascript
fetch('https://graph.irail.be/sncb/connections?departureTime=2019-01-27', 
   {
      headers: new Headers({
          accept: "application/trig;q=1.0,application/n-quads;q=0.7,text/turtle;q=0.6,application/n-triples;q=0.3,application/ld+json;q=0.3,text/n3;q=0.2"
      })
   }).then(async (response)=> { console.log(await response.json())});
```

This accept header is less than 1024 bytes. Could this be a bug in chromium rather than an issue with the fetch specification?

-- 
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/issues/862#issuecomment-458488302

Received on Tuesday, 29 January 2019 10:27:50 UTC