summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/editing/dnd/overlay/012.xhtml
blob: 49739bc2b730ea621964917d03907a5babfe0ace (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Feedback image and border-radius</title>
<style type="text/css">
body
  {background-color:silver;
  margin:0;}
div
  {background-color:white;}
div > div
  {display:block;
  width:100px;
  height:100px;
  border:solid thin green;
  border-radius:50px;}
</style>
</head>
<body>
<div>
  <div draggable="true" ondragstart="event.dataTransfer.effectAllowed = 'copy'"/>
</div>
<p>Try to drag green circle above. Feedback overlay should be a circle.</p>
</body>
</html>