tenfourfox/browser/base/content/test/general/test_mcb_double_redirect_image.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

24 lines
707 B
HTML

<!DOCTYPE HTML>
<html>
<!--
Test 7-9 for Bug 1082837 - See file browser_mcb_redirect.js for description.
https://bugzilla.mozilla.org/show_bug.cgi?id=1082837
-->
<head>
<meta charset="utf-8">
<title>Bug 1082837</title>
<script>
function image_loaded() {
document.getElementById("mctestdiv").innerHTML = "image loaded";
}
function image_blocked() {
document.getElementById("mctestdiv").innerHTML = "image blocked";
}
</script>
</head>
<body>
<div id="mctestdiv"></div>
<img src="https://example.com/browser/browser/base/content/test/general/test_mcb_redirect.sjs?image_redirect_http_sjs" onload="image_loaded()" onerror="image_blocked()" ></image>
</body>
</html>