diff --git a/index.bs b/index.bs index 11c1533..66246f9 100644 --- a/index.bs +++ b/index.bs @@ -247,7 +247,7 @@ db.close(); In the future, the database may have grown to contain other object stores and indexes. The following example shows one way to handle -opening an older version of the database. +migrating from an older version of the database.
 var request = indexedDB.open("library", 3); // Request version 3.
@@ -277,7 +277,95 @@ request.onsuccess = function() {
   db = request.result; // db.version will be 3.
 };
 
+ + + @@ -5125,6 +5213,13 @@ optional |forced flag|. have its type set to "close". The event must not bubble or be cancelable. + +