diff options
| author | Ben Murdoch <benm@google.com> | 2009-08-11 17:01:47 +0100 |
|---|---|---|
| committer | Ben Murdoch <benm@google.com> | 2009-08-11 18:21:02 +0100 |
| commit | 0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5 (patch) | |
| tree | 2943df35f62d885c89d01063cc528dd73b480fea /WebCore/manual-tests/drag-with-div-or-image-as-data-image.html | |
| parent | 7e7a70bfa49a1122b2597a1e6367d89eb4035eca (diff) | |
| download | external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.zip external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.gz external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.bz2 | |
Merge in WebKit r47029.
Diffstat (limited to 'WebCore/manual-tests/drag-with-div-or-image-as-data-image.html')
| -rw-r--r-- | WebCore/manual-tests/drag-with-div-or-image-as-data-image.html | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/WebCore/manual-tests/drag-with-div-or-image-as-data-image.html b/WebCore/manual-tests/drag-with-div-or-image-as-data-image.html new file mode 100644 index 0000000..1d5a791 --- /dev/null +++ b/WebCore/manual-tests/drag-with-div-or-image-as-data-image.html @@ -0,0 +1,55 @@ +<html> + <head> + <title>Test for WebKit bug 24735: Poor setDragImage support on Windows</title> + <style type="text/css"> + + .draggable { + -webkit-user-drag: element; + -webkit-user-select: none; + } + + #linkToUseAsImage { + background-color: silver; + } + + #divToUseAsImage { + background-color: pink; + } + + </style> + + <script type="text/javascript"> + function dragDivAndSeeImageDragged() + { + event.dataTransfer.setDragImage(document.getElementById("imgToUseAsImage"), event.pageX, event.pageY); + } + + function dragImageAndSeeDivDragged() + { + event.dataTransfer.setDragImage(document.getElementById("divToUseAsImage"), event.pageX, event.pageY); + } + </script> + </head> + <body > + <h3>Test for <a href='https://bugs.webkit.org/show_bug.cgi?id=24735'>WebKit bug 24735</a>: Poor setDragImage support on Windows</h3> + + <p>Instructions: </p> + <p>When you drag the first div, the image under the cursor should be of the second image. </p> + <p>When you drag the first image, the image under the cursor should be of the second div. </p> + + <br /> + <br /> + + <div class="draggable" ondragstart="dragDivAndSeeImageDragged()"> Drag me, I am a div! (first div)</div>
+ <br />
+ <br />
+ <img src="resources/webkit-background.png" class="draggable" ondragstart="dragImageAndSeeDivDragged()" />
+ <br />
+ <br />
+ <img src="resources/drag-image.png" id="imgToUseAsImage" />
+ <br />
+ <br />
+ <div id="divToUseAsImage"> When a drag is started on the image, this is the div that is used as the drag image! (second div)</div>
+ + </body> +</html> |
