Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/base/test/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 3 kB image not shown  

Quelle  browser_bug1691214.js   Sprache: JAVA

 
/* -*- Mode: JavaScript; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */


const BASE_URL = "http://mochi.test:8888/browser/dom/base/test/";

add_task(async function bug1691214() {
  await BrowserTestUtils.withNewTab(
    BASE_URL + "file_bug1691214.html",
    async function (browser) {
      let win = await newFocusedWindow(function () {
        return BrowserTestUtils.synthesizeMouseAtCenter("#link-1", {}, browser);
      });
      is(Services.focus.focusedWindow, win, "New window should be focused");

      info("re-focusing the original window");

      {
        let focusBack = BrowserTestUtils.waitForEvent(window, "focus"true);
        window.focus();
        await focusBack;
        is(Services.focus.focusedWindow, window, "should focus back");
      }

      info("Clicking on the second link.");

      {
        let focus = BrowserTestUtils.waitForEvent(win, "focus"true);
        await BrowserTestUtils.synthesizeMouseAtCenter("#link-2", {}, browser);
        info("Waiting for re-focus of the opened window.");
        await focus;
      }

      is(
        Services.focus.focusedWindow,
        win,
        "Existing window should've been targeted and focused"
      );

      win.close();
    }
  );
});

// The tab has a form infinitely submitting to an iframe, and that shouldn't
// switch focus back. For that, we open a window from the tab, make sure it's
// focused, and then wait for three submissions (but since we need to listen to
// trusted events from chrome code, we use the iframe load event instead).
add_task(async function bug1700871() {
  await BrowserTestUtils.withNewTab(
    BASE_URL + "file_bug1700871.html",
    async function (browser) {
      let win = await newFocusedWindow(function () {
        return BrowserTestUtils.synthesizeMouseAtCenter("#link-1", {}, browser);
      });

      is(Services.focus.focusedWindow, win, "New window should be focused");

      info("waiting for three submit events and ensuring focus hasn't moved");

      await SpecialPowers.spawn(browser, [], function () {
        let pending = 3;
        return new Promise(resolve => {
          content.document
            .querySelector("iframe")
            .addEventListener("load"function (e) {
              info("Got load on the frame: " + pending);
              if (!--pending) {
                resolve();
              }
            });
        });
      });

      is(Services.focus.focusedWindow, win, "Focus shouldn't have moved");
      win.close();
    }
  );
});

add_task(async function bug1793829() {
  await BrowserTestUtils.withNewTab(
    BASE_URL + "file_bug1691214.html",
    async function (browser) {
      let win = await newFocusedWindow(function () {
        return BrowserTestUtils.synthesizeMouseAtCenter("#link-1", {}, browser);
      });
      is(Services.focus.focusedWindow, win, "New window should be focused");

      info("re-focusing the original window");

      {
        let focusBack = BrowserTestUtils.waitForEvent(window, "focus"true);
        window.focus();
        await focusBack;
        is(Services.focus.focusedWindow, window, "should focus back");
      }

      info("Trying to steal focus.");

      await SpecialPowers.spawn(browser, [], function () {
        content.document.clearUserGestureActivation();
        content.document.getElementById("link-2").click();
      });

      // We need to test that nothing happened, which is hard without an
      // arbitrary timeout.
      // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
      await new Promise(c => setTimeout(c, 2000));

      is(
        Services.focus.focusedWindow,
        window,
        "Shouldn't steal focus without user gesture"
      );

      win.close();
    }
  );
});

Messung V0.5
C=94 H=100 G=96

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.