[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:21:37 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit aa50f6289c2bb582b2b9d5edcb093216cd1b8464
Author: dumi at chromium.org <dumi at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Jan 13 02:04:24 2010 +0000
Replacing RANDOMBLOB with ZEROBLOB, as RANDOMBLOB will soon be
disallowed by the authorizer.
Reviewed by Adam Barth.
https://bugs.webkit.org/show_bug.cgi?id=33396
* storage/quota-tracking.html:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53172 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 3f3a4b2..6cc315d 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,14 @@
+2010-01-12 Dumitru Daniliuc <dumi at chromium.org>
+
+ Reviewed by Adam Barth.
+
+ Replacing RANDOMBLOB with ZEROBLOB, as RANDOMBLOB will soon be
+ disallowed by the authorizer.
+
+ https://bugs.webkit.org/show_bug.cgi?id=33396
+
+ * storage/quota-tracking.html:
+
2010-01-12 Kent Hansen <kent.hansen at nokia.com>
Reviewed by Geoffrey Garen.
diff --git a/LayoutTests/storage/quota-tracking.html b/LayoutTests/storage/quota-tracking.html
index baf4e29..6edc641 100644
--- a/LayoutTests/storage/quota-tracking.html
+++ b/LayoutTests/storage/quota-tracking.html
@@ -37,7 +37,7 @@ function addData(db)
{
db.transaction(function(tx) {
log("Inserting some data");
- tx.executeSql("INSERT INTO DataTest (randomData) VALUES (randomblob(17408))", [], function(tx, result) { }, errorFunction);
+ tx.executeSql("INSERT INTO DataTest (randomData) VALUES (ZEROBLOB(17408))", [], function(tx, result) { }, errorFunction);
}, errorFunction, function() {
checkCompletion(db);
});
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list