Revision 89daad32c029798b7203a36f21598fcba470e07d authored by Anthony Ramine on 06 April 2018, 10:22:01 UTC, committed by Anthony Ramine on 06 April 2018, 10:22:01 UTC
See https://github.com/w3c/web-platform-tests/issues/10343#issuecomment-379211826

I know we can't stop progress in WPT just because Servo is stuck in the past,
but let's not make all IDL-related tests fail in it for something that can be
avoided so easily.
1 parent 603e277
Raw File
027.html
<!doctype html>
<title>Cloning objects, preserving sharing</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function() {
  var obj1 = {o: 1};
  var obj2 = {d: obj1};
  var obj3 = {d: obj1};
  var obj_dag = {b: obj2, c: obj3};

  postMessage(obj_dag, '*');
  onmessage = this.step_func(function(e) {
    assert_equals(e.data.b.d, e.data.c.d);
    this.done();
  });
});
</script>
back to top