blob: 82ba65890b634b74fde17ad7fcd67904912d3d6a [file] [log] [blame]
// META: title=NativeIO API: Failure handling for capacity allocation.
// META: global=dedicatedworker
'use strict';
test(testCase => {
assert_throws_dom(
'QuotaExceededError',
() => storageFoundation.releaseCapacitySync(10));
}, 'Attempting to release more capacity than available fails.');