Bug 439164: refactor test_bug413310 to avoid intermittent timing-related failures, patch by Boris Zbarsky <bzbarsky@mit.edu>

git-svn-id: svn://10.0.0.236/trunk@252923 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
gavin%gavinsharp.com
2008-07-08 22:07:28 +00:00
parent 11332d5fd7
commit db29705cf4

View File

@@ -12,22 +12,17 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=413310
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=413310">Mozilla Bug 413310</a>
<p id="display">
<iframe id="i" src="bug413310-subframe.html" onload="setTimeout(doNextStep, 20)">
</iframe>
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
/** Test for Bug 413310 **/
// NOTE: If we ever make subframes do bfcache stuff, this test will need to be
// modified accordingly! It assumes that subframes do not get bfcached.
// modified accordingly! It assumes that subframes do NOT get bfcached.
var onloadCount = 0;
var step = -1; // One increment will come from the initial subframe onload.
// Note that this script should come before the subframe,
// so that doNextStep is defined when its onload handler fires.
var textContent;
@@ -92,6 +87,14 @@ function doNextStep() {
}
}
</script>
<!-- Use a timeout in onload so that we don't do a load immediately inside onload -->
<iframe id="i" src="bug413310-subframe.html" onload="setTimeout(doNextStep, 20)">
</iframe>
</p>
<div id="content" style="display: none">
</div>
<pre id="test">
</pre>
</body>
</html>