blob: 9f02118d7ce90546bc1d8c2840683b1c62f8b35d [file] [log] [blame]
<!DOCTYPE html>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
if (window.SharedArrayBuffer) {
test(() => {
const xhr = new XMLHttpRequest();
xhr.open('POST', '/foo.html');
assert_throws(null, () => {
xhr.send(new Uint8Array(new SharedArrayBuffer(32)));
}, 'send() of SharedArrayBuffer view should throw');
}, 'sending SharedArrayBuffer');
}
done();
</script>