servoshell: Remove IndexedDB preference from servo:preferences (#44283)

Since indexeddb is now part of the experimental features list, we can
remove it from the "more experimental" features list.

Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
This commit is contained in:
Ashwin Naren
2026-04-16 11:59:28 -07:00
committed by GitHub
parent f77fe5eadd
commit b4a569536c

View File

@@ -52,7 +52,7 @@
const prefs = { const prefs = {
"experimental": [], "experimental": [],
"http-cache": ["network_http_cache_disabled"], "http-cache": ["network_http_cache_disabled"],
"more-experimental": ["dom_abort_controller_enabled", "dom_indexeddb_enabled"], "more-experimental": ["dom_abort_controller_enabled"],
"user-agent": ["user_agent"], "user-agent": ["user_agent"],
}; };