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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dnd/link-dragging-non-draggable-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 attempt to drag the "Drag Me" text into the "Drop Here" box.
9 </p>
10
11 <article>
12 <a class="dragged box" href="https://www.chromium.org">
13 Drag Me
14 </a>
15 <div class="dropzone box">
16 Drop Here
17 </div>
18 </article>
19
20 <script>
21
22 promise_test((t) => {
23 return runLinkDraggingTest(t, {
24 dragStartUriList: 'https://www.chromium.org/',
25 dragStartTypes: ['text/html', 'text/plain', 'text/uri-list'],
26 });
27 }, 'Dragging a link without a draggable attribute');
28
29 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698