gecko-dev/dom/html/reftests/image-load-shortcircuit-2.html
Edgar Chen e0c91d38b6 Bug 1317901 - Ensure image loads don't short-circuit if element's adopting steps are run; r=jdm
MozReview-Commit-ID: Cbg3EHtyL8f

--HG--
rename : dom/html/reftests/image-load-shortcircuit.html => dom/html/reftests/image-load-shortcircuit-1.html
extra : rebase_source : 1c11f394ca4dd8f354eb38b1ff5c6eb165b9d899
2016-11-18 15:54:21 +08: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>