Re: [whatwg/url] "D:\foo" should be parsed as "file:///D:/foo" (#271)

Oops, the query only looked for forward slash. New query. Also removed the `WHERE page = url` which was limiting to top-level resources.

```
SELECT * FROM (
SELECT page, url, REGEXP_EXTRACT(LOWER(body), r'(<[a-z][^>]+\s(?:src|href)\s*=\s*["\']?[a-z]:[/\\][^>]+>)') AS match
FROM [httparchive:har.2017_01_15_chrome_requests_bodies]
) WHERE match != "null"
```

22 rows. https://gist.github.com/zcorpan/98a61be4877858d3de18c19d8939a3be

-- 
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/url/issues/271#issuecomment-288401265

Received on Wednesday, 22 March 2017 13:42:39 UTC