mirror of
https://github.com/servo/servo
synced 2026-05-11 01:22:19 +02:00
Moves interfaces defined by the indexeddb spec to the `script/dom/indexeddb/` module from `script/dom/`. Testing: Just a refactor shouldn't need any testing Fixes: Partially #38901 Signed-off-by: WaterWhisperer <waterwhisperer24@qq.com>
16 lines
536 B
Rust
16 lines
536 B
Rust
/* 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
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
pub(crate) mod idbcursor;
|
|
pub(crate) mod idbcursorwithvalue;
|
|
pub(crate) mod idbdatabase;
|
|
pub(crate) mod idbfactory;
|
|
pub(crate) mod idbindex;
|
|
pub(crate) mod idbkeyrange;
|
|
pub(crate) mod idbobjectstore;
|
|
pub(crate) mod idbopendbrequest;
|
|
pub(crate) mod idbrequest;
|
|
pub(crate) mod idbtransaction;
|
|
pub(crate) mod idbversionchangeevent;
|