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

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

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

Powered by Google App Engine
This is Rietveld 408576698