gecko/dom/indexedDB/test/bfcache_iframe2.html
Kyle Huey 72ac2e4c02 Bug 687361: Implement the new IndexedDB setVersion API. r=bent
--HG--
rename : dom/indexedDB/nsIIDBVersionChangeRequest.idl => dom/indexedDB/nsIIDBOpenDBRequest.idl
2011-10-20 12:10:56 -04:00

30 lines
678 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
var res = {};
var request = mozIndexedDB.open(parent.location, 2);
request.onblocked = function() {
res.blockedFired = true;
}
request.onupgradeneeded = function(e) {
var db = e.target.result;
res.version = db.version;
res.storeCount = db.objectStoreNames.length;
var trans = request.transaction;
trans.objectStore("mystore").get(42).onsuccess = function(e) {
res.value = JSON.stringify(e.target.result);
}
trans.oncomplete = function() {
parent.postMessage(JSON.stringify(res), "http://mochi.test:8888");
}
};
</script>
</head>
<body>
This is page two.
</body>
</html>