mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
49 lines
1.6 KiB
HTML
49 lines
1.6 KiB
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id=666446
|
|
-->
|
|
<head>
|
|
<title>Test for Bug 691792 - Change of Source (2nd Version)</title>
|
|
<script type="application/javascript" src="chrome://mochikit/content/MochiKit/packed.js"></script>
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
<script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/WindowSnapshot.js"></script>
|
|
<script type="application/javascript" src="imgutils.js"></script>
|
|
<script type="application/javascript" src="animationPolling.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=691792">
|
|
Mozilla Bug 691792: Change of src attribute for animated gifs no longer works as expected
|
|
</a>
|
|
<p id="display"></p>
|
|
|
|
<div id="content">
|
|
<div id="animatedImage">
|
|
<img id='animatedGif' src="purple.gif" style="display: none;">
|
|
</div>
|
|
<div id="text-descr"></div>
|
|
<div id="debug" style="display:none">
|
|
</div>
|
|
</div>
|
|
<pre id="test">
|
|
<script type="text/javascript;version=1.8">
|
|
const FAILURE_TIMEOUT = 120000; // Fail early after 120 seconds (2 minutes)
|
|
|
|
var gAnimTest;
|
|
var gIntervalId;
|
|
|
|
function main()
|
|
{
|
|
gAnimTest = new AnimationTest(20, FAILURE_TIMEOUT, 'animated-gif2.gif',
|
|
'animatedGif', 'debug', '', 'animated-gif2.gif',
|
|
false);
|
|
gAnimTest.beginTest();
|
|
}
|
|
|
|
window.onload = main;
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|