Changeset 57493 in webkit


Ignore:
Timestamp:
Apr 12, 2010 7:07:50 PM (14 years ago)
Author:
dumi@chromium.org
Message:

Unreviewed, fixing a test that started failing with r57492.

  • storage/open-database-over-quota.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r57491 r57493  
     12010-04-12  Dumitru Daniliuc  <dumi@chromium.org>
     2
     3        Unreviewed, fixing a test that started failing with r57492.
     4
     5        * storage/open-database-over-quota.html:
     6
    172010-04-12  Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
    28
  • trunk/LayoutTests/storage/open-database-over-quota.html

    r56604 r57493  
    77        layoutTestController.clearAllDatabases();
    88    }
    9        
    10    
    11     var db = openDatabase('OverQuotaOpen', '', 'Test for bug 36473: missing lock in call to doneCreatingDatabase', 10000000);
    12     if (!db) {
     9
     10    try {
     11        var db = openDatabase('OverQuotaOpen', '', 'Test for bug 36473: missing lock in call to doneCreatingDatabase', 10000000);
     12    } catch (err) {
    1313        document.getElementById('result').innerHTML = 'PASS'
    1414    }
Note: See TracChangeset for help on using the changeset viewer.