[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

andreip at google.com andreip at google.com
Sun Feb 20 23:44:25 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit 55871dc8aa0c11288ca0b395c5cfa14e5c79e05e
Author: andreip at google.com <andreip at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 24 19:43:59 2011 +0000

    2011-01-24  Andrei Popescu  <andreip at 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:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76538 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 2267707..450431d 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,5 +1,17 @@
 2011-01-24  Andrei Popescu  <andreip at 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:
+
+2011-01-24  Andrei Popescu  <andreip at google.com>
+
         Reviewed by Nate Chapin.
 
         IndexedDatabase methods should not take arguments of type OptionsObject
diff --git a/LayoutTests/storage/indexeddb/objectstore-autoincrement-expected.txt b/LayoutTests/storage/indexeddb/objectstore-autoincrement-expected.txt
index 8e36c96..45331bd 100644
--- a/LayoutTests/storage/indexeddb/objectstore-autoincrement-expected.txt
+++ b/LayoutTests/storage/indexeddb/objectstore-autoincrement-expected.txt
@@ -55,7 +55,7 @@ PASS storeNames.contains('StoreWithAutoIncrement') is true
 PASS storeNames.contains('PlainOldStore') is true
 PASS storeNames.length is 3
 setVersionCompleted():
-trans = db.transaction({mode: webkitIDBTransaction.READ_WRITE})
+trans = db.transaction([], mode: webkitIDBTransaction.READ_WRITE)
 store = trans.objectStore('StoreWithKeyPath')
 Insert in object store with key gen and key path
 store.add({name: 'Lincoln', number: '7012'})
diff --git a/LayoutTests/storage/indexeddb/objectstore-autoincrement.html b/LayoutTests/storage/indexeddb/objectstore-autoincrement.html
index 2b44a7a..3084496 100644
--- a/LayoutTests/storage/indexeddb/objectstore-autoincrement.html
+++ b/LayoutTests/storage/indexeddb/objectstore-autoincrement.html
@@ -68,7 +68,7 @@ function setVersionCompleted()
 {
     debug("setVersionCompleted():");
 
-    window.trans = evalAndLog("trans = db.transaction({mode: webkitIDBTransaction.READ_WRITE})");
+    window.trans = evalAndLog("trans = db.transaction([], webkitIDBTransaction.READ_WRITE)");
     trans.onabort = unexpectedAbortCallback;
     trans.oncomplete = done;
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list