summaryrefslogtreecommitdiffstats
path: root/dom/jsurl/crashtests/344874-1.html
blob: 4df2723e40f9e5cd02b5ffeec2a243c16a379724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<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>