Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test gets skipped with pattern: os == 'linux' && os_version == '18.04' && processor == 'x86_64' && debug && http3 OR os == 'linux' && os_version == '24.04' && processor == 'x86_64' && display == 'x11' && debug && http3
- This test failed 1 times in the preceding 30 days. quicksearch this test
- Manifest: devtools/client/storage/test/browser.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
// Test to verify that indexedDBs with duplicate names (different types / paths)
// work as expected.
"use strict";
add_task(async function () {
const TESTPAGE =
MAIN_DOMAIN_SECURED + "storage-indexeddb-duplicate-names.html";
setPermission(TESTPAGE, "indexedDB");
await openTabAndSetupStorage(TESTPAGE);
await checkState([
[
["idb1 (default)", "idb2 (default)"],
],
]);
});