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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dnd/link-dragging-draggable-div-with-link.html

Issue 2441023003: Align drag feedback for links with draggable="true" to Safari. (Closed)
Patch Set: Rebased, added dependency on CL that fixes testing logistical issue. 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 <link rel="stylesheet" href="resources/link-dragging-common.css" />
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <script src="resources/link-dragging-common.js"></script>
6
7 <p>
8 Please drag the leftmost box into the "Drop Here" box.
9 </p>
10
11 <article>
12 <div class="dragged box" draggable="true">
13 <a href="https://www.chromium.org">
14 Drag the box, not the text
15 </a>
16 </div>
17 <div class="dropzone box">
18 Drop Here
19 </div>
20 </article>
21
22 <script>
23
24 promise_test((t) => {
25 return runLinkDraggingTest(t, {
26 dragStartUriList: '',
27 dragStartTypes: [],
28 });
29 }, 'Dragging a div with draggable="true" with a link inside of it');
30
31 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698