Re: [whatwg/fetch] Convert to bikeshed (#398)

This sanity check passes:
```JavaScript
  for (var e of document.querySelectorAll('*')) {
    if (e.id)
      console.log('id: ' + e.id);
    if (e.hasAttribute('href') && e.className != 'self-link')
      console.log('href: ' + e.getAttribute('href'));
  }
```

-- 
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/398#issuecomment-255728651

Received on Monday, 24 October 2016 12:39:30 UTC