gecko-dev/dom/base/crashtests/509536-1.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 строки
293 B
HTML
Исходник Обычный вид История

2010-12-12 23:54:26 +03: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>