1
0
Fork 0
firefox/layout/reftests/image-element/canvas-outside-document.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

18 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>