summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/overlay/outside-viewport-005.html
blob: 26e4bff2eb48ff7723798e39fc5c799d5603f022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPe html>
<meta charset='utf-8'>
<title>drag and drop – feedback overlay of elements partly outside the viewport – 005</title>
<style>
div {
  display: block;
  height: 200px;
  width: 200px;
  background-color: blue;
  position: absolute;
  top: 10px;
  right: -100px;
}

p {
 margin-right: 200px;
}
</style>

<div draggable="true" ondragstart="event.dataTransfer.effectAllowed ='copy'"></div>

<p>Drag the blue box on the right. The drag placeholder should ideally be a blue square. It may optionally be a rectangle the same shape as the visible part of the blue box. No part of the UI should be dragged with the box.</p>