gecko-dev/dom/indexedDB/test/bfcache_iframe1.html

29 строки
725 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
mozIndexedDB.open(parent.location).onsuccess = function(e) {
var db = e.target.result;
// This should never be called
db.onversionchange = function(e) {
db.transaction(["mystore"]).objectStore("mystore").put({ hello: "fail" }, 42);
}
db.setVersion("1.0").onsuccess = function(e) {
trans = e.target.transaction;
if (db.objectStoreNames.contains("mystore")) {
db.deleteObjectStore("mystore");
}
var store = db.createObjectStore("mystore");
store.add({ hello: "world" }, 42);
trans.oncomplete = function() {
parent.postMessage("go", "http://mochi.test:8888");
}
};
};
</script>
</head>
<body>
This is page one.
</body>
</html>