summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/content-encoding/br/br-body.https.any.js
blob: 2c2dbb5d293220d59d4becc02bce670b6082d231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// META: global=window,worker

const expectedDecompressedSize = 10500;
[
    "text",
    "octetstream"
].forEach(contentType => {
    promise_test(async t => {
        let response = await fetch(`resources/foo.${contentType}.br`);
        assert_true(response.ok);
        let arrayBuffer = await response.arrayBuffer()
        let u8 = new Uint8Array(arrayBuffer);
        assert_equals(u8.length, expectedDecompressedSize);
    }, `fetched br data with content type ${contentType} should be decompressed.`);
});