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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dnd/resources/event-mouse-coordinates.css

Issue 2471843005: Delegate dragend to the correct frame's EventHandler. (Closed)
Patch Set: Addressed some of the feedback. 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 html, body {
2 margin: 0;
3 padding: 0;
4 display: block;
5 }
6 .box {
7 display: block;
8 border: 1px solid black;
9 width: 100px;
10 height: 100px;
11 }
12 .dragged {
13 position: absolute;
14 left: 199px; /* Get the box's client area at 200,100. */
15 top: 99px;
16 cursor: pointer;
17 }
18 .dropzone {
19 position: absolute;
20 left: 399px; /* Get the box's client area at 400,300. */
21 top: 299px;
22 border-style: dashed;
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698