| Index: LayoutTests/fast/images/drag-image-2.html
|
| diff --git a/LayoutTests/fast/images/drag-image.html b/LayoutTests/fast/images/drag-image-2.html
|
| similarity index 66%
|
| copy from LayoutTests/fast/images/drag-image.html
|
| copy to LayoutTests/fast/images/drag-image-2.html
|
| index 744bbd61e725be2fb259b9e2e142fe35baf7f776..312095d0c8164440df690afc51cf9e4ee91e6027 100644
|
| --- a/LayoutTests/fast/images/drag-image.html
|
| +++ b/LayoutTests/fast/images/drag-image-2.html
|
| @@ -1,14 +1,21 @@
|
| <!DOCTYPE html>
|
| <style>
|
| + body {
|
| + background-color: red;
|
| + }
|
| +
|
| #image {
|
| - width: 22px;
|
| - height: 22px;
|
| - image-rendering: pixelated;
|
| + width: 50px;
|
| + height: 50px;
|
| + background-image: url('resources/grid-transparent.png');
|
| + -webkit-user-drag: element;
|
| }
|
| </style>
|
| <body>
|
| - <!-- Simulate dragging an image and dump the generated drag image. -->
|
| - <img id="image" src="resources/grid-small.png">
|
| + <!-- Simulate dragging an element and dump the generated drag image.
|
| + The expected result should be the same as the input image,
|
| + without seeing a red background. -->
|
| + <div id="image"></div>
|
| </body>
|
| <script>
|
| function drag() {
|
|
|