> 1) if there is a ':' in the URI, you split the URI into scheme and
> scheme-specific part.
>
>
No. The first check is "is this an absolute file path". That check is done
with platform-specific logic:

#if windows
if the path matches letter:\ or \\...
#else
if the path starts with a slash
#endif

Then we load it as an absolute file.

Otherwise we load it as a URL relative to file:///[pwd]

--BDS
-- 
Chromium Developers mailing list: chromium-dev@googlegroups.com 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-dev

Reply via email to