- From: Philip Jägenstedt <notifications@github.com>
- Date: Mon, 24 Oct 2016 05:38:56 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
Received on Monday, 24 October 2016 12:39:30 UTC
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