|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <!-- |
|
4 https://bugzilla.mozilla.org/show_bug.cgi?id=767779 |
|
5 --> |
|
6 <head> |
|
7 <title>Test for Bug 767779</title> |
|
8 <script type="application/javascript" src="/MochiKit/MochiKit.js"></script> |
|
9 <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
|
10 <script type="application/javascript" src="/tests/SimpleTest/WindowSnapshot.js"></script> |
|
11 <script type="application/javascript" src="imgutils.js"></script> |
|
12 <script type="application/javascript" src="animationPolling.js"></script> |
|
13 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
|
14 </head> |
|
15 <body> |
|
16 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=767779">Mozilla Bug 767779</a> |
|
17 <p id="display"></p> |
|
18 <pre id="test"> |
|
19 <script type="application/javascript"> |
|
20 const FAILURE_TIMEOUT = 30000; // Fail early after 30 seconds |
|
21 |
|
22 function main() |
|
23 { |
|
24 // referenceDiv's size and color correspond to the last frame of the GIF |
|
25 var animTest = new AnimationTest(20, FAILURE_TIMEOUT, 'referenceDiv', |
|
26 'animatedGif', 'debug'); |
|
27 animTest.beginTest(); |
|
28 } |
|
29 |
|
30 window.onload = main; |
|
31 </script> |
|
32 </pre> |
|
33 <div id="content"> <!-- style="display: none" --> |
|
34 <div id="referenceDiv" style="height: 40px; width: 40px; |
|
35 display: none; background: #18ff00;"></div> |
|
36 <div id="animatedImage"> |
|
37 <img id="animatedGif" src="bug767779.sjs" style="display: none;"/> |
|
38 <div id="text-descr"></div> |
|
39 </div> |
|
40 <div id="debug" style="display:none"> |
|
41 </div> |
|
42 </div> |
|
43 </body> |
|
44 </html> |