summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/without-ports/026.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/webmessaging/without-ports/026.html')
-rw-r--r--testing/web-platform/tests/webmessaging/without-ports/026.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/web-platform/tests/webmessaging/without-ports/026.html b/testing/web-platform/tests/webmessaging/without-ports/026.html
new file mode 100644
index 000000000..e8d799c5d
--- /dev/null
+++ b/testing/web-platform/tests/webmessaging/without-ports/026.html
@@ -0,0 +1,16 @@
+<!doctype html>
+<title>Cloning objects with getter properties</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<div id=log></div>
+<script>
+async_test(function() {
+ var obj = {};
+ obj.__defineGetter__( "field", function(){ throw new Error("getter_should_propagate_exceptions"); });
+
+ assert_throws(new Error("getter_should_propagate_exceptions"), function() {
+ postMessage(obj, '*');
+ });
+ this.done();
+});
+</script>