- add sources.
[platform/framework/web/crosswalk.git] / src / chrome / test / data / extensions / platform_apps / restrictions / sandboxed_iframe.js
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 window.onload = function() {
6   try {
7     window.alert('should throw');
8     window.parent.postMessage({'success': false,
9                                'reason' : 'should have thrown'},
10                               '*');
11   } catch(e) {
12     var message = e.message || e;
13     var succ = message.indexOf('is not available in packaged apps') != -1;
14     window.parent.postMessage({'success': succ,
15                                'reason' : 'got wrong error: ' + message},
16                               '*');
17
18   }
19 };