Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/accessible/tests/browser/fission/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  browser_src_change.js   Sprache: JAVA

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


"use strict";

/* import-globals-from ../../mochitest/role.js */
loadScripts({ name: "role.js", dir: MOCHITESTS_DIR });

addAccessibleTask(
  `<input id="textbox" value="hello"/>`,
  async function (browser, iframeDocAcc, contentDocAcc) {
    info(
      "Check that the IFRAME and the IFRAME document are accessible initially."
    );
    let iframeAcc = findAccessibleChildByID(contentDocAcc, DEFAULT_IFRAME_ID);
    ok(isAccessible(iframeAcc), "IFRAME should be accessible");
    ok(isAccessible(iframeDocAcc), "IFRAME document should be accessible");

    info("Replace src URL for the IFRAME with one with different origin.");
    const onDocLoad = waitForEvent(
      EVENT_DOCUMENT_LOAD_COMPLETE,
      DEFAULT_IFRAME_DOC_BODY_ID
    );

    await SpecialPowers.spawn(
      browser,
      [DEFAULT_IFRAME_ID, CURRENT_CONTENT_DIR],
      (id, olddir) => {
        const { src } = content.document.getElementById(id);
        content.document.getElementById(id).src = src.replace(
          olddir,
          // eslint-disable-next-line @microsoft/sdl/no-insecure-url
          "http://example.net/browser/accessible/tests/browser/"
        );
      }
    );
    const newiframeDocAcc = (await onDocLoad).accessible;

    ok(isAccessible(iframeAcc), "IFRAME should be accessible");
    ok(
      isAccessible(newiframeDocAcc),
      "new IFRAME document should be accessible"
    );
    isnot(
      iframeDocAcc,
      newiframeDocAcc,
      "A new accessible is created for a IFRAME document."
    );
    is(
      iframeAcc.firstChild,
      newiframeDocAcc,
      "An IFRAME has a new accessible for a IFRAME document as a child."
    );
    is(
      newiframeDocAcc.parent,
      iframeAcc,
      "A new accessible for a IFRAME document has an IFRAME as a parent."
    );
  },
  { topLevel: false, iframe: true, remoteIframe: true }
);

Messung V0.5
C=74 H=93 G=83

¤ Dauer der Verarbeitung: 0.11 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.