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

Quelle  test_clipboard_owner_chrome.html   Sprache: HTML

 
 products/Sources/formale Sprachen/C/Firefox/widget/tests/test_clipboard_owner_chrome.html


<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1812078
-->

<head>
<title>Test for Bug 1812078</title>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
<script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<script src="clipboard_helper.js"></script>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test"></pre>
<script class="testbody" type="application/javascript">

function testClipboardOwner(aClipboardType, aAsync) {
  let losingOwnership = false;
  const clipboardOwner = {
    QueryInterface: ChromeUtils.generateQI(["nsIClipboardOwner"]),
    // nsIClipboardOwner
    LosingOwnership() {
      losingOwnership = true;
    },
  };

  add_task(function test_clipboard_owner() {
    info(`Test clipboard owner for type ${aClipboardType} ${aAsync ? "async" : ""}`);

    // Setup clipboard owner.
    writeRandomStringToClipboard("text/plain", aClipboardType, clipboardOwner, aAsync);

    // Test should not lose ownership.
    clipboardTypes.forEach(function(otherType) {
      losingOwnership = false;
      if (aClipboardType != otherType && clipboard.isClipboardTypeSupported(otherType)) {
        // Test setting clipboard data.
        writeRandomStringToClipboard("text/plain", otherType);
        ok(!losingOwnership, `Should not lose ownership while setting data to type ${otherType}`);

        // Test async setting clipboard data.
        writeRandomStringToClipboard("text/plain", otherType, null, true);
        ok(!losingOwnership, `Should not lose ownership while async setting data to type ${otherType}`);
      }
    });

    // Test whether should lose ownership.
    losingOwnership = false;
    writeRandomStringToClipboard("text/plain", aClipboardType, clipboardOwner);
    ok(losingOwnership, `Should lose ownership while setting data to type ${aClipboardType}`);

    losingOwnership = false;
    writeRandomStringToClipboard("text/plain", aClipboardType, null, true);
    ok(losingOwnership, `Should lose ownership while async setting data to type ${aClipboardType}`);

    // Clean clipboard data.
    cleanupAllClipboard();
  });
}

/** Test for Bug 1812078 */
clipboardTypes.forEach(function(testType) {
  if (clipboard.isClipboardTypeSupported(testType)) {
    // Test sync set clipboard data.
    testClipboardOwner(testType, false);

    // Test async set clipboard data.
    testClipboardOwner(testType, true);
  }
});

</script>
</body>
</html>

100%


¤ Dauer der Verarbeitung: 0.14 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 ist noch experimentell.