forked from mirrors/gecko-dev
Automatic update from web-platform-tests Mark codec interfaces as SecureContext Bug: 1243519 Change-Id: Ib2d77aca4848053408ef0e8a78d95df0c6b9bbaf Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3120330 Commit-Queue: Chrome Cunningham <chcunningham@chromium.org> Auto-Submit: Chrome Cunningham <chcunningham@chromium.org> Reviewed-by: Dale Curtis <dalecurtis@chromium.org> Cr-Commit-Position: refs/heads/main@{#915665} -- wpt-commits: 26f620a206708bc7bd2cd0c7d953f0916c33719b wpt-pr: 30187
29 lines
1,012 B
JavaScript
29 lines
1,012 B
JavaScript
// META: global=window,dedicatedworker
|
|
// META: script=/webcodecs/utils.js
|
|
|
|
function testSharedArrayBufferEncodedAudioChunk(useView) {
|
|
let data = new SharedArrayBuffer(3);
|
|
let view = new Uint8Array(data);
|
|
view[0] = 0x0A;
|
|
view[1] = 0x0B;
|
|
view[2] = 0x0C;
|
|
|
|
let chunk = new EncodedAudioChunk(
|
|
{type: 'key', timestamp: 10, duration: 123, data: useView ? view : data});
|
|
assert_equals(chunk.byteLength, 3, 'byteLength');
|
|
|
|
let copyDest = new SharedArrayBuffer(3);
|
|
let destView = new Uint8Array(copyDest);
|
|
chunk.copyTo(useView ? destView : copyDest);
|
|
assert_equals(destView[0], 0x0A, 'copyDest[0]');
|
|
assert_equals(destView[1], 0x0B, 'copyDest[1]');
|
|
assert_equals(destView[2], 0x0C, 'copyDest[2]');
|
|
}
|
|
|
|
test(t => {
|
|
testSharedArrayBufferEncodedAudioChunk(/*useView=*/ false);
|
|
}, 'Test construction and copyTo() using a SharedArrayBuffer');
|
|
|
|
test(t => {
|
|
testSharedArrayBufferEncodedAudioChunk(/*useView=*/ true);
|
|
}, 'Test construction and copyTo() using a Uint8Array(SharedArrayBuffer)');
|