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

Side by Side Diff: LayoutTests/editing/pasteboard/drag-and-drop-inputimage-contenteditable.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 <style> 5 <style>
6 #target { 6 #target {
7 height: 200px; 7 height: 200px;
8 width: 220px; 8 width: 220px;
9 border: 5px solid blue; 9 border: 5px solid blue;
10 } 10 }
11 </style> 11 </style>
12 </head> 12 </head>
13 <body onload="runTest()"> 13 <body onload="runTest()">
14 <p id="description"></p> 14 <p id="description"></p>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 e = document.getElementById("target"); 50 e = document.getElementById("target");
51 x = e.offsetLeft + e.offsetWidth / 2; 51 x = e.offsetLeft + e.offsetWidth / 2;
52 y = e.offsetTop + e.offsetHeight / 2; 52 y = e.offsetTop + e.offsetHeight / 2;
53 53
54 eventSender.mouseMoveTo(x, y); 54 eventSender.mouseMoveTo(x, y);
55 eventSender.mouseUp(); 55 eventSender.mouseUp();
56 } 56 }
57 </script> 57 </script>
58 </body> 58 </body>
59 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698