mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
0d874b65fa
--HG-- rename : dom/indexedDB/nsIIDBVersionChangeRequest.idl => dom/indexedDB/nsIIDBOpenDBRequest.idl
28 lines
723 B
HTML
28 lines
723 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
var request = mozIndexedDB.open(parent.location, 1);
|
|
request.onupgradeneeded = 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);
|
|
}
|
|
var 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>
|