mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-03 20:49:27 +00:00
28 lines
325 B
HTML
28 lines
325 B
HTML
|
<html>
|
||
|
<head>
|
||
|
<script>
|
||
|
|
||
|
var img;
|
||
|
|
||
|
function boo()
|
||
|
{
|
||
|
img = document.getElementById("img");
|
||
|
setScriptSrc();
|
||
|
}
|
||
|
|
||
|
function setScriptSrc()
|
||
|
{
|
||
|
img.src = "javascript:setScriptSrc();";
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
|
||
|
<body onload="setTimeout(boo, 30);">
|
||
|
|
||
|
<img src="../../../../testing/crashtest/images/tree.gif" id="img">
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|