gecko/layout/reftests/image-element/canvas-outside-document.html
2010-08-13 15:36:19 +02:00

19 lines
483 B
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
Test document.mozSetImageElement() with a DOM element not in a document.
-->
<html>
<body style="margin:0">
<div style="width:100px; height:100px;
background:-moz-element(#d);"></div>
<script src="canvas-drawing.js"></script>
<script>
var canvas = createCanvas();
document.mozSetImageElement("d", canvas);
</script>
</body>
</html>