| Index: third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/012.html
|
| diff --git a/third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/012.html b/third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/012.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8eb46539b7efa008ae7472b35a925c8991b6916a
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/webmessaging/without-ports/012.html
|
| @@ -0,0 +1,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>
|
|
|