Mypal/dom/html/reftests/image-load-shortcircuit-2.html

11 lines
223 B
HTML
Raw Permalink Normal View History

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