Chromium Code Reviews| Index: LayoutTests/storage/quota/durability.html |
| diff --git a/LayoutTests/storage/quota/durability.html b/LayoutTests/storage/quota/durability.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..81dd83d06cfa7e0e3f4db69d3af74d494e8e3ddf |
| --- /dev/null |
| +++ b/LayoutTests/storage/quota/durability.html |
| @@ -0,0 +1,14 @@ |
| +<!DOCTYPE html> |
| +<title>requestPersistent returns a promise that is fulfilled</title> |
| +<script src="../../resources/testharness.js"></script> |
| +<script src="../../resources/testharnessreport.js"></script> |
| +<script type="text/javascript"> |
| + |
| +test(function() { assert_true(!!navigator.storage); }, "This test requires navigator.storage"); |
| +promise_test(function(the_test) { |
| + var promise = navigator.storage.requestPersistent(); |
| + // assert_class_string(promise, "Promise"); |
|
dgrogan
2015/07/07 04:25:14
jsbell@: I'd like to test 2 things here.
1) navig
jsbell
2015/07/07 16:51:04
The return value is automagically wrapped in a pro
|
| + return promise; |
| +}, "navigator.storage.requestPersistent returns a promise that resolves."); |
| + |
| +</script> |