Lines Matching refs:url
7 function fetch_should_fail(test, url, method = 'GET') {
8 return promise_rejects_js(test, TypeError, fetch(url, {method: method}));
17 const url = URL.createObjectURL(blob);
19 return fetch(url).then(response => {
27 const url = URL.createObjectURL(blob);
28 const request = new Request(url);
33 URL.revokeObjectURL(url);
43 const url = URL.createObjectURL(blob);
45 const result = fetch_should_succeed(t, url).then(text => {
50 URL.revokeObjectURL(url);