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 2 kB image not shown  

Quelle  browser_bug1703472.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 bug1703472() {
  await SpecialPowers.pushPrefEnv({
    set: [
      // Enable the popup blocker
      ["dom.disable_open_during_load"true],
    ],
  });

  await BrowserTestUtils.withNewTab(
    BASE_URL + "file_bug1703472.html",
    async function (browser) {
      info("Opening popup");
      let win = await newFocusedWindow(function () {
        return BrowserTestUtils.synthesizeMouseAtCenter(
          "#openWindow",
          {},
          browser
        );
      });

      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");
      }

      // The click to do window.open() should've consumed the user interaction,
      // and an artificial .click() shouldn't count as a user interaction, so the
      // page shouldn't be allowed to focus it again without user interaction.
      info("Trying to steal focus without interaction");
      await SpecialPowers.spawn(browser, [], function () {
        content.document.querySelector("#focusWindow").click();
      });

      // We need to wait for something _not_ happening, so we need to use an arbitrary setTimeout.
      await new Promise(resolve => {
        // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
        setTimeout(resolve, 500);
      });

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

      info("Trying to move focus with user interaction");
      {
        let focus = BrowserTestUtils.waitForEvent(win, "focus"true);
        await BrowserTestUtils.synthesizeMouseAtCenter(
          "#focusWindow",
          {},
          browser
        );
        await focus;
        is(Services.focus.focusedWindow, win, "should focus back");
      }

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

Messung V0.5
C=86 H=100 G=93

¤ Dauer der Verarbeitung: 0.25 Sekunden  (vorverarbeitet)  ¤

*© 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.