| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
| 2 <html> | |
| 3 <head> | |
| 4 <meta http-equiv="Content-Security-Policy" content="img-src 'self'"> | |
| 5 <script src="../../resources/js-test.js"></script> | |
| 6 <script> | |
| 7 description( | |
| 8 "This tests onerror event is fired if we change image src to a url blocked b
y content-security-policy." | |
| 9 ) | |
| 10 | |
| 11 jsTestIsAsync = true; | |
| 12 | |
| 13 function load() | |
| 14 { | |
| 15 var image = document.getElementById('test'); | |
| 16 image.onerror = function() { | |
| 17 testPassed("error event fired."); | |
| 18 finishJSTest(); | |
| 19 }; | |
| 20 image.src = 'http://www.myfakesiteabc.com/image.png'; | |
| 21 | |
| 22 setTimeout(function() { | |
| 23 testFailed("error event is not fired.") | |
| 24 finishJSTest(); | |
| 25 }, 200); | |
| 26 } | |
| 27 </script> | |
| 28 | |
| 29 </head> | |
| 30 <body onload='load()'> | |
| 31 | |
| 32 <img src="./color-jpeg-with-color-profile-expected.png" id="test"></img> | |
| 33 | |
| 34 </body> | |
| 35 </html> | |
| OLD | NEW |