summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/browsers/the-window-object/open-close/no_window_open_when_term_nesting_level_nonzero.window.js
blob: 3dff403b9c66e84b8fb0da93e97cdbecabfe1b5c (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
test(function() {
  var test_window = window.open('', '', 'height=1,width=1');
  var test_document = test_window.document;

  var frame = test_document.createElement('iframe');
  test_document.body.appendChild(frame);

  frame.contentWindow.onpagehide = function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during pagehide");
  };
  frame.contentDocument.onvisibilitychange = function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during visibilitychange");
  };
  frame.contentWindow.onbeforeunload = function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during beforeunload");
  };
  frame.contentWindow.onunload = function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during unload");
  };

  frame.remove();
}, 'no popups with frame removal');

async_test(function(t) {
  var test_window = window.open('', '', 'height=1,width=1');
  var test_document = test_window.document;

  var frame = test_document.createElement('iframe');
  test_document.body.appendChild(frame);

  frame.contentWindow.onpagehide = t.step_func(function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during pagehide");
  });
  frame.contentDocument.onvisibilitychange = t.step_func(function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during visibilitychange");
  });
  frame.contentWindow.onbeforeunload = t.step_func(function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during beforeunload");
  });
  frame.contentWindow.onunload = t.step_func(function(evt) {
    assert_equals(frame.contentWindow.open('', '', 'height=1,width=1'), null,
      "expected no popup during unload");
  });

  frame.onload = t.step_func_done();

  frame.contentWindow.location.href = "about:blank";
}, 'no popups with frame navigation');

async_test(function(t) {
  var test_window = window.open('', '', 'height=1,width=1');
  var test_document = test_window.document;

  var frame = test_document.createElement('iframe');
  test_document.body.appendChild(frame);

  frame.contentWindow.onpagehide = t.step_func(function(evt) {
    assert_equals(test_window.open('', '', 'height=1,width=1'), null,
      "expected no popup during pagehide");
  });
  frame.contentDocument.onvisibilitychange = t.step_func(function(evt) {
    assert_equals(test_window.open('', '', 'height=1,width=1'), null,
      "expected no popup during visibilitychange");
  });
  frame.contentWindow.onbeforeunload = t.step_func(function(evt) {
    assert_equals(test_window.open('', '', 'height=1,width=1'), null,
      "expected no popup during beforeunload");
  });
  frame.contentWindow.onunload = t.step_func(function(evt) {
    assert_equals(test_window.open('', '', 'height=1,width=1'), null,
      "expected no popup during unload");
  });

  frame.onload = t.step_func_done();

  frame.contentWindow.location.href = "about:blank";
}, 'no popups from synchronously reachable window');

async_test(function(t) {
  var test_window = window.open('', '', 'height=1,width=1');
  var test_document = test_window.document;

  var frame = test_document.createElement('iframe');
  test_document.body.appendChild(frame);

  frame.contentWindow.onpagehide = t.step_func(function(evt) {
    assert_equals(window.open('', '', 'height=1,width=1'), null,
      "expected no popup during pagehide");
  });
  frame.contentDocument.onvisibilitychange = t.step_func(function(evt) {
    assert_equals(window.open('', '', 'height=1,width=1'), null,
      "expected no popup during visibilitychange");
  });
  frame.contentWindow.onbeforeunload = t.step_func(function(evt) {
    assert_equals(window.open('', '', 'height=1,width=1'), null,
      "expected no popup during beforeunload");
  });
  frame.contentWindow.onunload = t.step_func(function(evt) {
    assert_equals(window.open('', '', 'height=1,width=1'), null,
      "expected no popup during unload");
  });

  frame.onload = t.step_func_done();

  frame.contentWindow.location.href = "about:blank";
}, 'no popups from another synchronously reachable window');