Changeset 76538 in webkit


Ignore:
Timestamp:
Jan 24, 2011 11:43:59 AM (13 years ago)
Author:
andreip@google.com
Message:

2011-01-24 Andrei Popescu <andreip@google.com>

Reviewed by Jeremy Orlow.

LayoutTest/storage/indexeddb/objectstore-autoincrement.html is failing after r76533
https://bugs.webkit.org/show_bug.cgi?id=53032

This fixes the layout test by modifying the arguments to IDBDatabase::transaction.

  • storage/indexeddb/objectstore-autoincrement-expected.txt:
  • storage/indexeddb/objectstore-autoincrement.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r76531 r76538  
     12011-01-24  Andrei Popescu  <andreip@google.com>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        LayoutTest/storage/indexeddb/objectstore-autoincrement.html is failing after r76533
     6        https://bugs.webkit.org/show_bug.cgi?id=53032
     7
     8        This fixes the layout test by modifying the arguments to IDBDatabase::transaction.
     9
     10        * storage/indexeddb/objectstore-autoincrement-expected.txt:
     11        * storage/indexeddb/objectstore-autoincrement.html:
     12
    1132011-01-24  Andrei Popescu  <andreip@google.com>
    214
  • trunk/LayoutTests/storage/indexeddb/objectstore-autoincrement-expected.txt

    r76126 r76538  
    5656PASS storeNames.length is 3
    5757setVersionCompleted():
    58 trans = db.transaction({mode: webkitIDBTransaction.READ_WRITE})
     58trans = db.transaction([], mode: webkitIDBTransaction.READ_WRITE)
    5959store = trans.objectStore('StoreWithKeyPath')
    6060Insert in object store with key gen and key path
  • trunk/LayoutTests/storage/indexeddb/objectstore-autoincrement.html

    r76126 r76538  
    6969    debug("setVersionCompleted():");
    7070
    71     window.trans = evalAndLog("trans = db.transaction({mode: webkitIDBTransaction.READ_WRITE})");
     71    window.trans = evalAndLog("trans = db.transaction([], webkitIDBTransaction.READ_WRITE)");
    7272    trans.onabort = unexpectedAbortCallback;
    7373    trans.oncomplete = done;
Note: See TracChangeset for help on using the changeset viewer.