Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/devtools/server/tests/xpcshell/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 1 kB image not shown  

Quelle  test_framebindings-08.js

  Sprache: JAVA
 

/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */


"use strict";

// Check that we're getting arg / variable named "__proto__" (See Bug 1980263)

add_task(
  threadFrontTest(async ({ threadFront, debuggee }) => {
    const packet = await executeOnNextTickAndWaitForPause(
      () =>
        debuggee.eval(`
          function foo(__proto__){
            debugger;
          }
          foo("bar")
        `),
      threadFront
    );

    const environment = await packet.frame.getEnvironment();
    Assert.equal(environment.type, "function");
    Assert.equal(
      // The original bug is only reproducible in the test when cloning the result, since
      // threadFrontTest uses a direct transport that gets us the object returned from
      // the actor.
      // eslint-disable-next-line no-proto
      structuredClone(environment).bindings.arguments[0].__proto__.value,
      "bar"
    );

    await threadFront.resume();
  })
);

add_task(
  threadFrontTest(async ({ threadFront, debuggee }) => {
    const packet = await executeOnNextTickAndWaitForPause(
      () =>
        debuggee.eval(`
          (function() {
            const __proto__ = "foo";
            debugger;
          })()
        `),
      threadFront
    );

    const environment = await packet.frame.getEnvironment();
    Assert.equal(
      // The original bug is only reproducible in the test when cloning the result, since
      // threadFrontTest uses a direct transport that gets us the object returned from
      // the actor.
      // eslint-disable-next-line no-proto
      structuredClone(environment).bindings.variables.__proto__.value,
      "foo"
    );
    await threadFront.resume();
  })
);

Messung V0.5 in Prozent
C=86 H=99 G=92

¤ Dauer der Verarbeitung: 0.24 Sekunden  (vorverarbeitet am  2026-08-25) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.