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

Side by Side Diff: third_party/WebKit/LayoutTests/images/drag-image-descendant-painting-sibling.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 #draggable { 3 #draggable {
4 position: relative; 4 position: relative;
5 width: 100px; 5 width: 100px;
6 height: 100px; 6 height: 100px;
7 background: red; 7 background: red;
8 -webkit-user-drag: element; 8 -webkit-user-drag: element;
9 } 9 }
10 10
(...skipping 27 matching lines...) Expand all
38 eventSender.mouseMoveTo(positionX, positionY); 38 eventSender.mouseMoveTo(positionX, positionY);
39 eventSender.mouseUp(); 39 eventSender.mouseUp();
40 } 40 }
41 41
42 if (!window.testRunner || !window.eventSender) { 42 if (!window.testRunner || !window.eventSender) {
43 document.write("This test does not work in manual mode."); 43 document.write("This test does not work in manual mode.");
44 } else { 44 } else {
45 window.onload = drag; 45 window.onload = drag;
46 } 46 }
47 </script> 47 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698