Lines Matching defs:path
68 { path: 'C:\\foo', expected: 'file:///C:/foo' }, property
70 { path: 'C:\\FOO', expected: 'file:///C:/FOO' }, property
72 { path: 'C:\\dir\\foo', expected: 'file:///C:/dir/foo' }, property
74 { path: 'C:\\dir\\', expected: 'file:///C:/dir/' }, property
76 { path: 'C:\\foo.mjs', expected: 'file:///C:/foo.mjs' }, property
78 { path: 'C:\\foo bar', expected: 'file:///C:/foo%20bar' }, property
80 { path: 'C:\\foo?bar', expected: 'file:///C:/foo%3Fbar' }, property
82 { path: 'C:\\foo#bar', expected: 'file:///C:/foo%23bar' }, property
84 { path: 'C:\\foo&bar', expected: 'file:///C:/foo&bar' }, property
86 { path: 'C:\\foo=bar', expected: 'file:///C:/foo=bar' }, property
88 { path: 'C:\\foo:bar', expected: 'file:///C:/foo:bar' }, property
90 { path: 'C:\\foo;bar', expected: 'file:///C:/foo;bar' }, property
92 { path: 'C:\\foo%bar', expected: 'file:///C:/foo%25bar' }, property
94 { path: 'C:\\foo\\bar', expected: 'file:///C:/foo/bar' }, property
96 { path: 'C:\\foo\bbar', expected: 'file:///C:/foo%08bar' }, property
98 { path: 'C:\\foo\tbar', expected: 'file:///C:/foo%09bar' }, property
100 { path: 'C:\\foo\nbar', expected: 'file:///C:/foo%0Abar' }, property
102 { path: 'C:\\foo\rbar', expected: 'file:///C:/foo%0Dbar' }, property
104 { path: 'C:\\fóóbàr', expected: 'file:///C:/f%C3%B3%C3%B3b%C3%A0r' }, property
106 { path: 'C:\\€', expected: 'file:///C:/%E2%82%AC' }, property
108 { path: 'C:\\', expected: 'file:///C:/%F0%9F%9A%80' }, property
110 { path: '\\\\nas\\My Docs\\File.doc', expected: 'file://nas/My%20Docs/File.doc' }, property
115 { path: '/foo', expected: 'file:///foo' }, property
117 { path: '/FOO', expected: 'file:///FOO' }, property
119 { path: '/dir/foo', expected: 'file:///dir/foo' }, property
121 { path: '/dir/', expected: 'file:///dir/' }, property
123 { path: '/foo.mjs', expected: 'file:///foo.mjs' }, property
125 { path: '/foo bar', expected: 'file:///foo%20bar' }, property
127 { path: '/foo?bar', expected: 'file:///foo%3Fbar' }, property
129 { path: '/foo#bar', expected: 'file:///foo%23bar' }, property
131 { path: '/foo&bar', expected: 'file:///foo&bar' }, property
133 { path: '/foo=bar', expected: 'file:///foo=bar' }, property
135 { path: '/foo:bar', expected: 'file:///foo:bar' }, property
137 { path: '/foo;bar', expected: 'file:///foo;bar' }, property
139 { path: '/foo%bar', expected: 'file:///foo%25bar' }, property
141 { path: '/foo\\bar', expected: 'file:///foo%5Cbar' }, property
143 { path: '/foo\bbar', expected: 'file:///foo%08bar' }, property
145 { path: '/foo\tbar', expected: 'file:///foo%09bar' }, property
147 { path: '/foo\nbar', expected: 'file:///foo%0Abar' }, property
149 { path: '/foo\rbar', expected: 'file:///foo%0Dbar' }, property
151 { path: '/fóóbàr', expected: 'file:///f%C3%B3%C3%B3b%C3%A0r' }, property
153 { path: '/€', expected: 'file:///%E2%82%AC' }, property
155 { path: '/', expected: 'file:///%F0%9F%9A%80' }, property
159 for (const { path, expected } of testCases) { property