aboutsummaryrefslogtreecommitdiff
path: root/tools/addon-sdk-1.12/test/test-frame-utils.js
blob: 6225f00a69acebaf1c58f17e5d12409ff6862f3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

'use strict';

const { open } = require('sdk/window/utils');
const { create } = require('sdk/frame/utils');

exports['test frame creation'] = function(assert, done) {
  let window = open('data:text/html;charset=utf-8,Window');
  window.addEventListener('DOMContentLoaded', function windowReady() {

    let frame = create(window.document);

    assert.equal(frame.getAttribute('type'), 'content',
                 'frame type is content');
    assert.ok(frame.contentWindow, 'frame has contentWindow');
    assert.equal(frame.contentWindow.location.href, 'about:blank',
                 'by default "about:blank" is loaded');
    assert.equal(frame.docShell.allowAuth, false, 'auth disabled by default');
    assert.equal(frame.docShell.allowJavascript, false, 'js disabled by default');
    assert.equal(frame.docShell.allowPlugins, false,
                 'plugins disabled by default');
    window.close();
    done();
  }, false);
};

exports['test fram has js disabled by default'] = function(assert, done) {
  let window = open('data:text/html;charset=utf-8,window');
  window.addEventListener('DOMContentLoaded', function windowReady() {
    window.removeEventListener('DOMContentLoaded', windowReady, false);
    let frame = create(window.document, {
      uri: 'data:text/html;charset=utf-8,<script>document.documentElement.innerHTML' +
           '= "J" + "S"</script>',
    });
    frame.contentWindow.addEventListener('DOMContentLoaded', function ready() {
      frame.contentWindow.removeEventListener('DOMContentLoaded', ready, false);
      assert.ok(!~frame.contentDocument.documentElement.innerHTML.indexOf('JS'),
                'JS was executed');

      window.close();
      done();
    }, false);

  }, false);
};

exports['test frame with js enabled'] = function(assert, done) {
  let window = open('data:text/html;charset=utf-8,window');
  window.addEventListener('DOMContentLoaded', function windowReady() {
    window.removeEventListener('DOMContentLoaded', windowReady, false);
    let frame = create(window.document, {
      uri: 'data:text/html;charset=utf-8,<script>document.documentElement.innerHTML' +
           '= "J" + "S"</script>',
      allowJavascript: true
    });
    frame.contentWindow.addEventListener('DOMContentLoaded', function ready() {
      frame.contentWindow.removeEventListener('DOMContentLoaded', ready, false);
      assert.ok(~frame.contentDocument.documentElement.innerHTML.indexOf('JS'),
                'JS was executed');

      window.close();
      done();
    }, false);

  }, false);
};

require('test').run(exports);