blob: ebda93649a8419945bd74c452b6cfe93e665e41d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
function* testSteps() {
navigator.storage.persisted().then(grabArgAndContinueHandler);
let persistedResult = yield undefined;
is(persistedResult, false, "Persisted returns false");
finishTest();
}
|