Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Firefox/layout/base/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_bug114649.html   Sprache: HTML

 
 products/sources/formale Sprachen/C/Firefox/layout/base/tests/test_bug114649.html


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

<head>
  <title>Test for Bug 114649</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body onload="run()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=114649">Mozilla Bug 114649</a>
<iframe id="display" style="width: 500px; height: 500px;"></iframe>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 114649 **/

var gIFrame;
var gCurrentWidth = 500;
var gGotEventsAt = [];
var gInterval;
var gFinished = false;

function run() {
    SimpleTest.waitForExplicitFinish();
    SimpleTest.requestFlakyTimeout("Simulating dragging to resize a window");

    gIFrame = document.getElementById("display");

    var subdoc = gIFrame.contentDocument;
    subdoc.open();
    subdoc.write("");
    subdoc.close();

    setTimeout(do_a_resize, 50);
}

function do_a_resize()
{
    // decrease the width by 10 until we hit 400, then stop
    gCurrentWidth -= 10;
    gIFrame.style.width = gCurrentWidth + "px";

    if (gCurrentWidth > 400) {
        setTimeout(do_a_resize, 50);
    }
}

function handle_resize_event()
{
    gGotEventsAt.push(gCurrentWidth);

    if (gCurrentWidth == 400) {
        check_resize_events();
    }
}

function check_resize_events()
{
    if (gFinished) {
        // We can get here when the browser can't process the resizes and
        // dispatch resize events as fast as we're doing the resizing. We can
        // then end up with multiple resize events queued up after we set our
        // final size.  This return makes sure that in that case we avoid
        // calling SimpleTest.finish() more than once.
        return;
    }
    gFinished = true;
    ok(gGotEventsAt.length >= 2, "We should get more than one event");
    isnot(gGotEventsAt[0], 400, "The first event shouldn't be for the final size");
    SimpleTest.finish();
}

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

Messung V0.5
C=90 H=93 G=91

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