[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
dumi at chromium.org
dumi at chromium.org
Wed Jan 20 22:18:01 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit 66ecf34a73261568713e2fb5c424c161f152afbd
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