tenfourfox/layout/reftests/image-element/canvas-outside-document.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07: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>