mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
48 lines
1.5 KiB
JavaScript
48 lines
1.5 KiB
JavaScript
/* 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
module.metadata = {
|
|
"stability": "experimental"
|
|
};
|
|
|
|
const { Cc, Ci } = require("chrome");
|
|
const { id } = require("./self");
|
|
|
|
// placeholder, copied from bootstrap.js
|
|
let sanitizeId = function(id){
|
|
let uuidRe =
|
|
/^\{([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})\}$/;
|
|
|
|
let domain = id.
|
|
toLowerCase().
|
|
replace(/@/g, "-at-").
|
|
replace(/\./g, "-dot-").
|
|
replace(uuidRe, "$1");
|
|
|
|
return domain
|
|
};
|
|
|
|
const PSEUDOURI = "indexeddb://" + sanitizeId(id) // https://bugzilla.mozilla.org/show_bug.cgi?id=779197
|
|
|
|
// Use XPCOM because `require("./url").URL` doesn't expose the raw uri object.
|
|
let principaluri = Cc["@mozilla.org/network/io-service;1"].
|
|
getService(Ci.nsIIOService).
|
|
newURI(PSEUDOURI, null, null);
|
|
|
|
let principal = Cc["@mozilla.org/scriptsecuritymanager;1"].
|
|
getService(Ci.nsIScriptSecurityManager).
|
|
getCodebasePrincipal(principaluri);
|
|
|
|
exports.indexedDB = Object.freeze({
|
|
open: indexedDB.openForPrincipal.bind(indexedDB, principal),
|
|
openForPrincipal: indexedDB.openForPrincipal.bind(indexedDB),
|
|
deleteDatabase: indexedDB.deleteForPrincipal.bind(indexedDB, principal),
|
|
cmp: indexedDB.cmp.bind(indexedDB)
|
|
});
|
|
|
|
exports.IDBKeyRange = IDBKeyRange;
|
|
exports.DOMException = Ci.nsIDOMDOMException;
|