Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <!-- |
michael@0 | 4 | https://bugzilla.mozilla.org/show_bug.cgi?id=809003 |
michael@0 | 5 | --> |
michael@0 | 6 | <head> |
michael@0 | 7 | <meta charset="utf-8"> |
michael@0 | 8 | <title>Test for Bug 809003</title> |
michael@0 | 9 | <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> |
michael@0 | 10 | <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/> |
michael@0 | 11 | <style> |
michael@0 | 12 | #testdiv:before { |
michael@0 | 13 | content: url('data:image/gif,GIF89a%01%00%01%00%80%01%00%FF%00%00%FF%FF%FF!%F9%04%01%00%00%01%00%2C%00%00%00%00%01%00%01%00%00%02%02D%01%00%3B'); |
michael@0 | 14 | } |
michael@0 | 15 | #testdiv:after { |
michael@0 | 16 | content: url('non_existing_image.gif'); |
michael@0 | 17 | } |
michael@0 | 18 | </style> |
michael@0 | 19 | </head> |
michael@0 | 20 | <body> |
michael@0 | 21 | <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=809003">Mozilla Bug 809003</a> |
michael@0 | 22 | <p id="display"></p> |
michael@0 | 23 | <div id="content" style="display: none"> |
michael@0 | 24 | |
michael@0 | 25 | </div> |
michael@0 | 26 | <pre id="test"> |
michael@0 | 27 | <script type="application/javascript"> |
michael@0 | 28 | |
michael@0 | 29 | /** Test for Bug 809003 **/ |
michael@0 | 30 | |
michael@0 | 31 | window.didGetLoad = false; |
michael@0 | 32 | window.didGetError = false; |
michael@0 | 33 | |
michael@0 | 34 | SimpleTest.waitForExplicitFinish(); |
michael@0 | 35 | |
michael@0 | 36 | setTimeout(function() { |
michael@0 | 37 | is(window.didGetLoad, false, "Shouldn't have got load event!"); |
michael@0 | 38 | is(window.didGetError, false, "Shouldn't have got error event!"); |
michael@0 | 39 | SimpleTest.finish(); |
michael@0 | 40 | }, 1000); |
michael@0 | 41 | |
michael@0 | 42 | </script> |
michael@0 | 43 | </pre> |
michael@0 | 44 | <div id="testdiv" onload="window.didGetLoad = true;" onerror="window.didGetError = true;"></div> |
michael@0 | 45 | </body> |
michael@0 | 46 | </html> |