mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
MozReview-Commit-ID: L9ZlgNF4QF1 --HG-- rename : testing/web-platform/tests/webvr/idlharness.html => testing/web-platform/tests/webvr/idlharness.https.html
16 lines
628 B
JavaScript
16 lines
628 B
JavaScript
promise_test(() => fetch("resources/base64.json").then(res => res.json()).then(runBase64Tests), "Setup.");
|
|
function runBase64Tests(tests) {
|
|
for(let i = 0; i < tests.length; i++) {
|
|
const input = tests[i][0],
|
|
output = tests[i][1],
|
|
dataURL = "data:;base64," + input;
|
|
promise_test(t => {
|
|
if(output === null) {
|
|
return promise_rejects(t, new TypeError(), fetch(dataURL));
|
|
}
|
|
return fetch(dataURL).then(res => res.arrayBuffer()).then(body => {
|
|
assert_array_equals(new Uint8Array(body), output);
|
|
});
|
|
}, "data: URL base64 handling: " + format_value(input));
|
|
}
|
|
}
|