RESOLVED DUPLICATE of bug 27836 Bug 28418
changeVersion() doesn't seem to work
https://bugs.webkit.org/show_bug.cgi?id=28418
Summary changeVersion() doesn't seem to work
Ian 'Hixie' Hickson
Reported 2009-08-17 17:57:57 PDT
This code (which you can type into http://software.hixie.ch/utilities/js/js-eval-window/ for easy debugging): var n = 'test ' + new Date(); var db1 = openDatabase(n, '1', '', 0); db1.changeVersion('1', '2', function () { // ... }, function (e) { alert('FAIL in changeVersion:' + e); }, function () { try { var db2 = openDatabase(n, '2', '', 0); } catch (e) { alert('FAIL in openDatabase: ' + e); } alert(db1.version); alert(db2.version); }); ...doesn't seem to actually change the database version.
Attachments
Andrew Grieve
Comment 1 2009-08-24 10:52:58 PDT
Not sure how to mark it as such, but looks to be a dupe of https://bugs.webkit.org/show_bug.cgi?id=27836
Alexey Proskuryakov
Comment 2 2009-08-25 11:56:46 PDT
*** This bug has been marked as a duplicate of bug 27836 ***
Note You need to log in before you can comment on or make changes to this bug.