Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: third_party/WebKit/LayoutTests/images/drag-image.html

Issue 2496663002: Merge css3/image/ and fast/images/ to images/ (Closed)
Patch Set: Address failing tests (3 of them) Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 #image { 3 #image {
4 width: 22px; 4 width: 22px;
5 height: 22px; 5 height: 22px;
6 image-rendering: pixelated; 6 image-rendering: pixelated;
7 } 7 }
8 </style> 8 </style>
9 <body> 9 <body>
10 <!-- Simulate dragging an image and dump the generated drag image. --> 10 <!-- Simulate dragging an image and dump the generated drag image. -->
(...skipping 15 matching lines...) Expand all
26 eventSender.mouseMoveTo(positionX, positionY); 26 eventSender.mouseMoveTo(positionX, positionY);
27 eventSender.mouseUp(); 27 eventSender.mouseUp();
28 } 28 }
29 29
30 if (!window.testRunner || !window.eventSender) { 30 if (!window.testRunner || !window.eventSender) {
31 document.write("This test does not work in manual mode."); 31 document.write("This test does not work in manual mode.");
32 } else { 32 } else {
33 window.onload = drag; 33 window.onload = drag;
34 } 34 }
35 </script> 35 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698