summaryrefslogtreecommitdiffstats
path: root/dom/indexedDB/test/bfcache_iframe2.html
blob: 43cb92a58152f160f2c0294e26d2db5811140fad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html>
<head>
  <script>
  var res = {};
  var request = indexedDB.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>