summaryrefslogtreecommitdiffstats
path: root/dom/browser-element/mochitest/browserElement_OpenWindowInFrame.js
blob: 5559bbcb8c09222200bef5fc10c8512521bbebea (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
/* Any copyright is dedicated to the public domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

// Bug 766871 - Test that window.open works from an <iframe> within <iframe mozbrowser>.
//
// This is basically the same as browserElement_OpenWindow, except that instead
// of loading file_browserElement_Open1.html directly inside the <iframe
// mozbrowser>, we load file_browserElement_OpenWindowInFrame.html into the
// mozbrowser.  OpenWindowInFrame loads file_browserElement_Open1.html inside
// an iframe.

"use strict";
SimpleTest.waitForExplicitFinish();
browserElementTestHelpers.setEnabledPref(true);
browserElementTestHelpers.addPermission();

function runTest() {
  var iframe = document.createElement('iframe');
  iframe.setAttribute('mozbrowser', 'true');

  var gotPopup = false;
  iframe.addEventListener('mozbrowseropenwindow', function(e) {
    is(gotPopup, false, 'Should get just one popup.');
    gotPopup = true;

    document.body.appendChild(e.detail.frameElement);

    ok(/file_browserElement_Open2\.html$/.test(e.detail.url),
       "Popup's URL (got " + e.detail.url + ")");
    is(e.detail.name, "name");
    is(e.detail.features, "dialog=1");
  });

  iframe.addEventListener('mozbrowsershowmodalprompt', function(e) {
    ok(gotPopup, 'Got mozbrowseropenwindow event before showmodalprompt event.');
    if (e.detail.message.indexOf("success:") == 0) {
      ok(true, e.detail.message);
    }
    else if (e.detail.message.indexOf("failure:") == 0) {
      ok(false, e.detail.message);
    }
    else if (e.detail.message == "finish") {
      SimpleTest.finish();
    }
    else {
      ok(false, "Got invalid message: " + e.detail.message);
    }
  });

  /**
   * file_browserElement_OpenWindowInFrame.html loads
   * file_browserElement_Open1.html in an iframe.  Open1.html does
   *
   *   window.open('file_browserElement_Open2.html', 'name', 'dialog=1')
   *
   * then adds an event listener to the opened window and waits for onload.
   *
   * Onload, we fire a few alerts saying "success:REASON" or "failure:REASON".
   * Finally, we fire a "finish" alert, which ends the test.
   */
  iframe.src = 'file_browserElement_OpenWindowInFrame.html';
  document.body.appendChild(iframe);
}

addEventListener('testready', runTest);