OLD | NEW |
(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" draggable="true" 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 with draggable="true"'); |
| 28 |
| 29 </script> |
OLD | NEW |