зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
491 B
JavaScript
21 строка
491 B
JavaScript
/**
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
/* import-globals-from databaseShadowing-shared.js */
|
|
loadSubscript("databaseShadowing-shared.js");
|
|
|
|
async function testSteps() {
|
|
// The shadow database was prepared in
|
|
// test_databaseShadowing_clearOriginsByPattern1.js
|
|
|
|
disableNextGenLocalStorage();
|
|
|
|
if (!importShadowDatabase("shadowdb-clearedOriginsByPattern.sqlite")) {
|
|
return;
|
|
}
|
|
|
|
verifyData([4, 5, 6]);
|
|
}
|