Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / drag-background-with-padding.html
blobfd2e1f6ba651cdf48d512c5c98a17aae1b8605a3
1 <!DOCTYPE HTML>
2 <html>
3 <body style="background-color: silver;">
4 <p>For a draggable element that has padding, the drag image that is created
5 should respect that background color. Note that none of the drag images
6 use any of the body element's silver background.</p>
8 <div style="position: absolute; top: 100px; padding: 50px; border: solid 2px black;" draggable="true">
9 <div style="background-color: grey; width: 100px; height: 100px;">Drag me! Drag image padding should remain transparent.</div>
10 </div>
12 <div style="position: absolute; top: 350px; padding: 50px; border: solid 2px black; background-color: rgba(1, 0, 0, 0);" draggable="true">
13 <div style="background-color: grey; width: 100px; height: 100px;">Drag me! Drag image padding should be transparent.</div>
14 </div>
16 <div style="position: absolute; top: 350px; left: 250px; padding: 50px; border: solid 2px black; background-color: white;" draggable="true">
17 <div style="background-color: grey; width: 100px; height: 100px;">Drag me! Drag image padding should be white.</div>
18 </div>
20 <div style="position: absolute; top: 350px; left: 500px; padding: 50px; border: solid 2px black; background-color: lime;" draggable="true">
21 <div style="background-color: grey; width: 100px; height: 100px;">Drag me! Drag image padding should be lime.</div>
22 </div>
24 <div style="position: absolute; top: 100px; left: 250px; width: 200px; height: 200px; background-color: cyan;"> Drag on top of me just for reference.</div>
26 </body>
27 </html>