layout/reftests/image-element/element-paint-recursion.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <!--
michael@0 2 Any copyright is dedicated to the Public Domain.
michael@0 3 http://creativecommons.org/licenses/publicdomain/
michael@0 4
michael@0 5 Test painting elements recursively using each other as background.
michael@0 6 -->
michael@0 7 <html>
michael@0 8 <body>
michael@0 9 <p id="d" style="width:100px; height:100px; border:10px solid black;
michael@0 10 background:-moz-element(#d);"></p>
michael@0 11 <div id="e">
michael@0 12 <div style="width:100px; height:100px; border:10px solid blue;
michael@0 13 background:-moz-element(#e);"></div>
michael@0 14 </div>
michael@0 15 <div id="f"></div>
michael@0 16 <!-- test zero-sized images -->
michael@0 17 <p style="width:100px; height:100px; border:10px solid green;
michael@0 18 background:-moz-element(#f) yellow;"></div>
michael@0 19 <div id="g">
michael@0 20 <div style="width:100px; height:100px; border:10px solid cyan;
michael@0 21 background:-moz-element(#h);"></div>
michael@0 22 </div>
michael@0 23 <div id="h">
michael@0 24 <div style="width:100px; height:100px; border:10px solid magenta;
michael@0 25 background:-moz-element(#g);"></div>
michael@0 26 </div>
michael@0 27 </body>
michael@0 28 </html>

mercurial