Mypal/dom/html/reftests/image-load-shortcircuit-2.html
2019-03-11 13:26:37 +03:00

11 lines
223 B
HTML

<html>
<body>
<template id="template">
<img src="pass.png" alt="Alt Text" />
</template>
<script>
document.body.appendChild(document.getElementById('template').content.children[0].cloneNode(1));
</script>
</body>
</html>