mirror of
https://github.com/servo/servo.git
synced 2025-10-17 00:39:15 +01:00
6 lines
200 B
JavaScript
6 lines
200 B
JavaScript
'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');
|