summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_sandboxed_blob_uri.html
blob: 09568d764145bb11312eb8ed819c76cbfc8acde2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html>
<head>
  <title>Test for Principal in MessageManager</title>
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"?>
</head>
<body>

  <script type="application/javascript">
    "use strict";

    var sb = new Cu.Sandbox('https://example.com', { wantGlobalProperties: [ 'Blob', 'URL' ] });
    Cu.evalInSandbox('var u = URL.createObjectURL(new Blob(["text"], { type: "text/plain" }));', sb);
    Cu.nukeSandbox(sb);
    Cu.forceCC();

    ok(true, "are we leaking blobs?");

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