Chromium Code Reviews| Index: chrome/test/data/extensions/api_test/sandboxed_pages_csp/remote_frame.js | 
| diff --git a/chrome/test/data/extensions/api_test/sandboxed_pages_csp/remote_frame.js b/chrome/test/data/extensions/api_test/sandboxed_pages_csp/remote_frame.js | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..30eb5c19c25b78fa7c902e3ab1e3c7029580257e | 
| --- /dev/null | 
| +++ b/chrome/test/data/extensions/api_test/sandboxed_pages_csp/remote_frame.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() { | 
| + window.parent.postMessage(JSON.stringify(['loaded', 'remote_frame.html']), | 
| 
 
Devlin
2016/12/22 17:04:32
nit: indentation
window.parent.postMessage(
    JS
 
lazyboy
2016/12/22 22:57:06
Done.
 
 | 
| + '*'); | 
| +}; | 
| + |