Source code

Revision control

Copy as Markdown

Other Tools

/**
* Any copyright is dedicated to the Public Domain.
*/
function* testSteps() {
navigator.storage.persisted().then(grabArgAndContinueHandler);
let persistedResult = yield undefined;
is(persistedResult, false, "Persisted returns false");
finishTest();
}