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

Side by Side Diff: content/test/data/drag_and_drop/image_source.html

Issue 2453693003: Browser tests for OOPIF support for drag-n-drop. (Closed)
Patch Set: Giving up and going back to using notifications. 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
(Empty)
1 <!DOCTYPE html>
2 <!-- Frame that can be used to initiate dragging of an image.
3 The image fills the frame from (0,0) to (199,199).
4 -->
5 <head>
6 <meta charset="utf-8">
7 <style>
8 img {
9 position: absolute;
10 top: 0px;
11 left: 0px;
12 width: 200px;
13 height: 200px;
14 border: 0px;
15 margin: 0px;
16 padding: 0px;
17 }
18 </style>
19 <script src="event_monitoring.js"></script>
20 <script>
21 function dragstart_handler(ev) {
22 window.reportDragAndDropEvent(ev);
23 }
24
25 function dragend_handler(ev) {
26 window.reportDragAndDropEvent(ev);
27 }
28 </script>
29 </head>
30 <body>
31 <img ondragstart="dragstart_handler(event);"
32 ondragend="dragend_handler(event);"
33 src="/accessibility/html/pipe.jpg">
34 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698