blob: fdebf1341d0fd0388be10588dc5632a1f6d0c499 [file] [log] [blame]
<body>
<style>
#filtered {
width: 160px;
height: 90px;
filter: url(#imagereplace);
}
</style>
<script type="text/html" id="source">
<div id="filtered"></div>
<svg xmlns="http://www.w3.org/3000/svg" width="0" height="0" xmlns:xlink="http://www.w3.org/1999/xlink">
<filter id="imagereplace" x="0%" y="0" width="100%" height="100%">
<feimage xlink:href="resources/reference.png"/>
</filter>
</svg>
</script>
<script>
document.body.offsetLeft;
var div = document.createElement('div');
div.innerHTML = document.getElementById('source').textContent;
document.body.appendChild(div);
</script>
</body>