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

Side by Side Diff: LayoutTests/fast/events/drag-downloadURL.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months 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 <style> 4 <style>
5 #drag { 5 #drag {
6 border: 1px solid black; 6 border: 1px solid black;
7 height: 200px; 7 height: 200px;
8 width: 200px; 8 width: 200px;
9 } 9 }
10 #drop { 10 #drop {
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 </script> 63 </script>
64 </head> 64 </head>
65 <body> 65 <body>
66 <p>To manually test, drag 'Drag Me' to 'Drop Here' and drop. The word 'SUCCESS' should appear. 66 <p>To manually test, drag 'Drag Me' to 'Drop Here' and drop. The word 'SUCCESS' should appear.
67 <div draggable="true" id="drag" ondragstart="dragstart(event)">Drag Me</div> 67 <div draggable="true" id="drag" ondragstart="dragstart(event)">Drag Me</div>
68 <div id="drop" ondragenter="dragenter(event)" ondragover="dragover(event)" ondro p="drop(event)">Drop Here</div> 68 <div id="drop" ondragenter="dragenter(event)" ondragover="dragover(event)" ondro p="drop(event)">Drop Here</div>
69 </div> 69 </div>
70 <div id="result"></div> 70 <div id="result"></div>
71 </body> 71 </body>
72 </html> 72 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698