blob: daff18c7ec40b816ed42874c85573d1f158fd987 [file] [log] [blame]
<html>
<body>
<div id="x">this text should show up twice</div>
<div id="y"></div>
<div>this text should show up once</div>
<script language="JavaScript">
document.getElementById("y").innerHTML = document.getElementById("x").outerHTML;
</script>
</body>
</html>