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

httparchive
```
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 page = url
) WHERE match != "null"
```
```
Row page url match  
1 http://www.xm-n-tax.gov.cn/ http://www.xm-n-tax.gov.cn/ <img src="d:/piaochuang/piaochuang.jpg" width="150px" height="90px;" onclick="javascript:window.open('/content/n4676.html');"/>  
```
Page has changed.
```
2 http://www.newsforshoppers.com/ http://www.newsforshoppers.com/ <link href="s://plus.google.com/102103991664781080361" rel="publisher" />  
```
rel="publisher" has no effect for browsers
```
3 http://www.aaai.org/ http://www.aaai.org/ <script src=s://seal.verisign.com/getseal?host_name=www.aaai.org&size=s&use_flash=no&use_transparent=no&lang=en>  
4 http://www.mathematichka.ru/ http://www.mathematichka.ru/ <base href="d:/mathematichka/web/">
```
These are commented out.

Possibly there is content such as documentation on CDs that rely on this? Maybe a use counter could help?

-- 
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-286713424

Received on Wednesday, 15 March 2017 11:21:58 UTC