Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<head>
<script>
function boom() {
document.getElementById("k").removeAttribute("href");
ok(true, "changing iframe contents doesn't cause assertions");
SimpleTest.finish();
}
</script>
</head>
<body onload="boom();">
<iframe src="data:text/html,1"><link id="k" href="data:text/html,2" /></iframe>
</body>
</html>