| Index: chrome/test/data/extensions/platform_apps/app_window_send_message/main.js
|
| diff --git a/chrome/test/data/extensions/platform_apps/app_window_send_message/main.js b/chrome/test/data/extensions/platform_apps/app_window_send_message/main.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..76e5ab81c90e5af07e331984f7d0be217073ce58
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/platform_apps/app_window_send_message/main.js
|
| @@ -0,0 +1,9 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +window.onload = function() {
|
| + var iframe = document.createElement('iframe');
|
| + iframe.src = 'data:text/html,<body>hello world.</body>';
|
| + document.body.appendChild(iframe);
|
| +};
|
|
|