summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_blobURL_expiring.html
blob: a4a796849f686dd044beaa6b9856159d45fdfae3 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for Blob URI expiration</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
  <script>

onmessage = function(e) {
  var blobURL = e.data;

  (new Promise(function(resolve, reject) {
    var xhr = new XMLHttpRequest();
    xhr.open("GET", blobURL);
    xhr.send();
    xhr.onload = function() {
      is(xhr.response, "123", "Response matches!");
      resolve();
    }
  })).then(function() {
    document.body.removeChild(iframe);
  }).then(function() {
    var xhr = new XMLHttpRequest();
    xhr.open("GET", blobURL);
    try {
      xhr.send();
      ok(false, "The URL should be done!");
    } catch(e) {
      ok(true, "The URL should be done!");
    }

    SimpleTest.finish();
  });
}

var iframe = document.createElement('iframe');
iframe.src = 'file_blobURL_expiring.html';
document.body.appendChild(iframe);

SimpleTest.waitForExplicitFinish();

  </script>
</body>
</html>