[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

dumi at chromium.org dumi at chromium.org
Thu Apr 8 00:58:59 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit ac75492de321febdbbac81e6fa17c54a4dfa25f3
Author: dumi at chromium.org <dumi at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Jan 9 00:05:52 2010 +0000

    Replacing all RANDOMBLOB calls with ZEROBLOB calls in preparation
    for denying RANDOMBLOB calls in HTML5 DB transactions.
    
    Reviewed by Eric Seidel.
    
    https://bugs.webkit.org/show_bug.cgi?id=33396
    
    * storage/open-database-while-transaction-in-progress.html:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53021 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index ff7960d..e5c52e5 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,14 @@
+2010-01-08  Dumitru Daniliuc  <dumi at chromium.org>
+
+        Reviewed by Eric Seidel.
+
+        Replacing all RANDOMBLOB calls with ZEROBLOB calls in preparation
+        for denying RANDOMBLOB calls in HTML5 DB transactions.
+
+        https://bugs.webkit.org/show_bug.cgi?id=33396
+
+        * storage/open-database-while-transaction-in-progress.html:
+
 2010-01-08  Alexey Proskuryakov  <ap at apple.com>
 
         Reviewed by Eric Seidel.
diff --git a/LayoutTests/storage/open-database-while-transaction-in-progress.html b/LayoutTests/storage/open-database-while-transaction-in-progress.html
index faa63b6..691f6fe 100644
--- a/LayoutTests/storage/open-database-while-transaction-in-progress.html
+++ b/LayoutTests/storage/open-database-while-transaction-in-progress.html
@@ -44,7 +44,7 @@ function runTest()
         db1.transaction(function(tx) {
             // Create the Test table if it does not exist
             tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo BLOB);");
-            tx.executeSql("INSERT INTO Test VALUES (RANDOMBLOB(2097152));", [],
+            tx.executeSql("INSERT INTO Test VALUES (ZEROBLOB(2097152));", [],
                           function(result) {
                               var db2 = openTestDatabase();
                               log("openDatabase() succeeded.");

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list