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 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> |
OLD | NEW |