Mypal/dom/base/crashtests/509536-1.html

18 lines
293 B
HTML
Raw Normal View History

2019-03-11 10:26:37 +00:00
<!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>