Lines Matching refs:FILE
1 description("Canonicalization of file URLs when the base URL is an http URL");
5 ["file:c:\\\\foo\\\\bar.html", "file:///C:/foo/bar.html"],
6 [" File:c|////foo\\\\bar.html", "file:///C:////foo/bar.html"],
7 ["file:", "file:///"],
8 ["file:UNChost/path", "file://unchost/path"],
10 // compatability. Note that the caller must decide that this is a file
11 // URL itself so it can call the file canonicalizer. This is usually
13 ["c:\\\\foo\\\\bar", "file:///C:/foo/bar"],
14 ["C|/foo/bar", "file:///C:/foo/bar"],
15 ["/C|\\\\foo\\\\bar", "file:///C:/foo/bar"],
16 ["//C|/foo/bar", "file:///C:/foo/bar"],
17 ["//server/file", "file://server/file"],
18 ["\\\\\\\\server\\\\file", "file://server/file"],
19 ["/\\\\server/file", "file://server/file"],
23 ["file:c:foo/bar.html", "file:///C:/foo/bar.html"],
24 ["file:/\\\\/\\\\C:\\\\\\\\//foo\\\\bar.html", "file:///C:////foo/bar.html"],
27 ["file:///foo/bar.txt", "file:///foo/bar.txt"],
34 ["FILE:/\\\\/\\\\7:\\\\\\\\//foo\\\\bar.html", "file://7:////foo/bar.html"],
35 ["file:filer/home\\\\me", "file://filer/home/me"],
37 ["file:///C:/foo/../../../bar.html", "file:///C:/bar.html"],
39 ["file:///C:/asdf#\\xc2", "file:///C:/asdf#\\xc2"],
40 ["file:///C:/asdf#\xc2", "file:///C:/asdf#\xc2"],
43 ["file:///home/me", "file:///home/me"],
45 ["file:c:\\\\foo\\\\bar.html", "file:///c:/foo/bar.html"],
46 ["file:c|//foo\\\\bar.html", "file:///c%7C//foo/bar.html"],
47 // file: tests from WebKit (LayoutTests/fast/loader/url-parse-1.html)
48 ["//", "file:///"],
49 ["///", "file:///"],
50 ["///test", "file:///test"],
51 ["file://test", "file://test/"],
52 ["file://localhost", "file://localhost/"],
53 ["file://localhost/", "file://localhost/"],
54 ["file://localhost/test", "file://localhost/test"],