Lines Matching refs:url
121 BSTR url;
122 // A file URL shouldn't fall through to here, but if it did,
124 if (SUCCEEDED(request->URL(&url)) && !String(url, SysStringLen(url)).startsWith("file:")) {
125 // FIXME: Open the URL not by means of a webframe, but by handing it over to the system and letting it determine how to open that particular URL scheme. See documentation for [NSWorkspace openURL]
129 SysFreeString(url);
157 BSTR url;
158 request->URL(&url);
160 if (String(url, SysStringLen(url)).startsWith("file:")) {
163 if (GetFileAttributesEx(url, GetFileExInfoStandard, &attrs))
176 SysFreeString(url);