blob: 98816460137bce7bf571d7683bb512e600523729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript">
function boom()
{
var frame = document.createElement("iframe");
frame.setAttribute("src", "1");
document.body.appendChild(frame);
frame.setAttribute("src", "2");
}
</script>
</head>
<body onload="boom();"></body>
</html>
|