dom/browser-element/mochitest/browserElement_TargetTop.js

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 /* Any copyright is dedicated to the public domain.
     2    http://creativecommons.org/publicdomain/zero/1.0/ */
     4 // Bug 771273 - Check that window.open(url, '_top') works properly with <iframe
     5 // mozbrowser>.
     6 "use strict";
     8 SimpleTest.waitForExplicitFinish();
     9 browserElementTestHelpers.setEnabledPref(true);
    10 browserElementTestHelpers.addPermission();
    12 function runTest() {
    13   var iframe = document.createElement('iframe');
    14   SpecialPowers.wrap(iframe).mozbrowser = true;
    16   iframe.addEventListener('mozbrowseropenwindow', function(e) {
    17     ok(false, 'Not expecting an openwindow event.');
    18   });
    20   iframe.addEventListener('mozbrowserlocationchange', function(e) {
    21     if (/file_browserElement_TargetTop.html\?2$/.test(e.detail)) {
    22       ok(true, 'Got the locationchange we were looking for.');
    23       SimpleTest.finish();
    24     }
    25   });
    27   document.body.appendChild(iframe);
    28   iframe.src = 'file_browserElement_TargetTop.html';
    29 }
    31 addEventListener('testready', runTest);

mercurial