Lines Matching refs:url
124 BSTR url;
125 // A file URL shouldn't fall through to here, but if it did,
127 if (SUCCEEDED(request->URL(&url)) && !String(url, SysStringLen(url)).startsWith("file:")) {
128 // 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]
132 SysFreeString(url);
160 BSTR url;
161 request->URL(&url);
163 if (String(url, SysStringLen(url)).startsWith("file:")) {
166 if (GetFileAttributesEx(url, GetFileExInfoStandard, &attrs))
179 SysFreeString(url);