summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_sandbox_structuredclone.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/base/test/test_sandbox_structuredclone.html')
-rw-r--r--dom/base/test/test_sandbox_structuredclone.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/dom/base/test/test_sandbox_structuredclone.html b/dom/base/test/test_sandbox_structuredclone.html
new file mode 100644
index 0000000000..38663d7a03
--- /dev/null
+++ b/dom/base/test/test_sandbox_structuredclone.html
@@ -0,0 +1,21 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <title>Test for structured clone deserialization in a sandbox</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";
+
+ let sandbox = new Cu.Sandbox(window, { sandboxPrototype: window });
+ let holder = new StructuredCloneHolder("", "", new Blob([]), sandbox);
+ let result = holder.deserialize(sandbox);
+ ok(sandbox.Blob.isInstance(result),
+ "Deserializing into a sandbox with a DOM global as its prototype should work");
+
+ </script>
+</body>
+</html>