mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 770844: Add a window.mozIndexedDB to work around this bug for now. r=sicking a=akeybl
This commit is contained in:
parent
543b9fc6d0
commit
4f4296bd91
@ -8503,6 +8503,12 @@ nsGlobalWindow::GetIndexedDB(nsIIDBFactory** _retval)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
NS_IMETHODIMP
|
||||
nsGlobalWindow::GetMozIndexedDB(nsIIDBFactory** _retval)
|
||||
{
|
||||
return GetIndexedDB(_retval);
|
||||
}
|
||||
|
||||
//*****************************************************************************
|
||||
// nsGlobalWindow::nsIInterfaceRequestor
|
||||
//*****************************************************************************
|
||||
|
@ -15,11 +15,12 @@
|
||||
|
||||
interface nsIIDBFactory;
|
||||
|
||||
[scriptable, uuid(c5982775-3f65-4d3e-b5f0-2400c987a900)]
|
||||
[scriptable, uuid(94ca74e8-9cff-456e-a7a4-a4071a32ff58)]
|
||||
interface nsIDOMStorageIndexedDB : nsISupports
|
||||
{
|
||||
/**
|
||||
* Indexed Databases for the current browsing context.
|
||||
*/
|
||||
readonly attribute nsIIDBFactory indexedDB;
|
||||
readonly attribute nsIIDBFactory mozIndexedDB;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user