|
1 <!DOCTYPE HTML> |
|
2 <html> |
|
3 <!-- |
|
4 https://bugzilla.mozilla.org/show_bug.cgi?id=844684 |
|
5 --> |
|
6 <head> |
|
7 <title>Test for Bug 844684</title> |
|
8 <script type="application/javascript" src="/MochiKit/MochiKit.js"></script> |
|
9 <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
|
10 <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
|
11 </head> |
|
12 <body> |
|
13 <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=844684">Mozilla Bug 844684</a> |
|
14 <div id="content"> |
|
15 <img id="testcontent" onload="success()" onerror="failure()"> |
|
16 </div> |
|
17 <pre id="test"> |
|
18 <script type="application/javascript"> |
|
19 SimpleTest.waitForExplicitFinish(); |
|
20 |
|
21 document.getElementById('testcontent').src = "short_header.gif"; |
|
22 |
|
23 function success() { |
|
24 ok(true, "Image loaded."); |
|
25 SimpleTest.finish(); |
|
26 } |
|
27 |
|
28 function failure() { |
|
29 ok(false, "Image didn't load."); |
|
30 SimpleTest.finish(); |
|
31 } |
|
32 </script> |
|
33 </pre> |
|
34 </body> |
|
35 </html> |