Changeset 53021 in webkit


Ignore:
Timestamp:
Jan 8, 2010 4:05:52 PM (14 years ago)
Author:
dumi@chromium.org
Message:

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:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r53019 r53021  
     12010-01-08  Dumitru Daniliuc  <dumi@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Replacing all RANDOMBLOB calls with ZEROBLOB calls in preparation
     6        for denying RANDOMBLOB calls in HTML5 DB transactions.
     7
     8        https://bugs.webkit.org/show_bug.cgi?id=33396
     9
     10        * storage/open-database-while-transaction-in-progress.html:
     11
    1122010-01-08  Alexey Proskuryakov  <ap@apple.com>
    213
  • trunk/LayoutTests/storage/open-database-while-transaction-in-progress.html

    r48653 r53021  
    4545            // Create the Test table if it does not exist
    4646            tx.executeSql("CREATE TABLE IF NOT EXISTS Test (Foo BLOB);");
    47             tx.executeSql("INSERT INTO Test VALUES (RANDOMBLOB(2097152));", [],
     47            tx.executeSql("INSERT INTO Test VALUES (ZEROBLOB(2097152));", [],
    4848                          function(result) {
    4949                              var db2 = openTestDatabase();
Note: See TracChangeset for help on using the changeset viewer.