blob: 650a7a64eef4b043df652b4cd27e1a2c120594bf (
plain)
1
2
3
4
5
6
|
'use strict';
promise_test(async test => {
let root = await navigator.storage.getDirectory();
assert_equals(root.name, '');
}, 'getDirectory returns a directory whose name is the empty string');
|