mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07:33 +09:00
Issue #1693 - Use scoped enums for IDBTransaction.
Based on a patch from Mozilla bug 1598164. Needed due to identifier collision between NSS and IDBTransaction. Co-authored by: Simon Giesecke <simon.giesecke@gmail.com> Co-authored by: Matt A. Tobin <email@mattatobin.com>
This commit is contained in:
parent
89dd425fd2
commit
c920f32df3
25 changed files with 175 additions and 182 deletions
|
|
@ -12,7 +12,7 @@
|
|||
<script type="text/javascript;version=1.7">
|
||||
function testSteps()
|
||||
{
|
||||
const READ_WRITE = "readwrite";
|
||||
const Mode::ReadWrite = "readwrite";
|
||||
|
||||
const name = window.location.pathname;
|
||||
|
||||
|
|
@ -67,7 +67,7 @@
|
|||
for (let i = 1; i < objectStoreInfo.length; i++) {
|
||||
let info = objectStoreInfo[i];
|
||||
|
||||
let objectStore = db.transaction([info.name], READ_WRITE)
|
||||
let objectStore = db.transaction([info.name], Mode::ReadWrite)
|
||||
.objectStore(info.name);
|
||||
|
||||
request = objectStore.add(refResult, 2);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue