mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
483 B
HTML
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>
|