blob: 8eb46539b7efa008ae7472b35a925c8991b6916a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!doctype html>
<title>loop in array in structured clone</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id=log></div>
<script>
async_test(function() {
var x = [];
x[0] = x;
postMessage(x, '*');
onmessage = this.step_func(function(e) {
assert_equals(e.data, e.data[0]);
this.done();
});
});
</script>
|