mirror of
https://github.com/servo/servo.git
synced 2025-08-26 15:48:22 +01:00
Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae
This commit is contained in:
parent
b23125d590
commit
6c901de216
844 changed files with 19802 additions and 3093 deletions
|
@ -0,0 +1,10 @@
|
|||
// META: title=StorageManager: persisted()
|
||||
|
||||
promise_test(function() {
|
||||
var promise = navigator.storage.persisted();
|
||||
assert_true(promise instanceof Promise,
|
||||
'navigator.storage.persisted() returned a Promise.');
|
||||
return promise.then(function (result) {
|
||||
assert_equals(typeof result, 'boolean', result + ' should be boolean');
|
||||
});
|
||||
}, 'navigator.storage.persisted() returns a promise that resolves.');
|
Loading…
Add table
Add a link
Reference in a new issue