Files
brave-core/test/data/sharedarraybuffer.html
2018-09-09 01:10:24 -07:00

11 lines
170 B
HTML

<script>
function isSharedArrayBufferDisabled() {
try {
new SharedArrayBuffer();
} catch (err) {
return true;
}
return false;
}
</script>