tenfourfox/layout/reftests/image-element/element-paint-repeated.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

18 lines
550 B
HTML

<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
Test a repeated background image with -moz-element().
-->
<html>
<body>
<div style="width:100px; height:100px; background:-moz-element(#d);
background-attachment:fixed; position:absolute; left:25px; top:25px;"></div>
<div style="overflow:hidden; height:0;">
<div id="d" style="width:50px; height:50px;">
<div style="width:25px; height:25px; background:blue;"></div>
</div>
</div>
</body>
</html>