summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/webmessaging/without-ports/029.html
blob: 4b1b38f741c940bf0396b28912dcb4fb4902e393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<title>Check that getters don't linger after deletion wrt cloning</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__( "a", function(){ return 2; } );
   obj.__defineSetter__( "a", function(v){ return; } );
   delete obj.a;
   obj.a = 2;

   postMessage(obj, '*');
   onmessage = this.step_func(function(e) {
     assert_equals(e.data.a, 2);
     this.done();
  });
});
</script>