blob: 9fdcdbbef9ade2b04be9ce6c838c05eb5b6eb7be [file] [log] [blame]
<!doctype html>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
promise_test(async function() {
const estimate = await navigator.storage.estimate();
assert_true('usageDetails' in estimate);
}, 'usageDetails should be exposed by navigator.storage.estimate().');
</script>