dd.html revision c9bb6f8fa75e2be11f2b7e3611df8e3914d2f918
<html>
<head>
<title>DragDrop Tests</title>
<style>
#wrap {
width: 900px;
height: 600px;
border: 1px solid black;
position: relative;
}
#drag {
height: 100px;
width: 100px;
border: 1px solid black;
background-color: #ccc;
position: relative;
z-index: 1;
}
#drop {
position: absolute;
height: 200px;
width: 200px;
border: 1px solid black;
background-color: #ccc;
top: 10px;
right: 10px;
}
</style>
</head>
<body class="yui-skin-sam">
<div id="wrap">
<div id="drag"></div>
<div id="drop"></div>
</div>
</body>
</html>