index.html revision c9bb6f8fa75e2be11f2b7e3611df8e3914d2f918
0N/A<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
6061N/A<html>
0N/A<head>
0N/A <title>DragDrop Tests</title>
0N/A <script type="text/javascript" src="/build/yui/yui.js"></script>
0N/A
2362N/A <style>
0N/A #wrap {
2362N/A width: 900px;
0N/A height: 600px;
0N/A border: 1px solid black;
0N/A position: relative;
0N/A }
0N/A #drag {
0N/A height: 100px;
0N/A width: 100px;
0N/A border: 1px solid black;
0N/A background-color: #ccc;
0N/A position: relative;
0N/A z-index: 1;
2362N/A }
2362N/A #drop {
2362N/A position: absolute;
0N/A height: 200px;
0N/A width: 200px;
0N/A border: 1px solid black;
0N/A background-color: #ccc;
0N/A top: 10px;
0N/A right: 10px;
0N/A }
0N/A </style>
0N/A
0N/A</head>
0N/A<body class="yui-skin-sam">
0N/A <div id="wrap">
0N/A <div id="drag"></div>
0N/A <div id="drop"></div>
0N/A </div>
0N/A<script type="text/javascript" src="dd.js"></script>
0N/A</body>
0N/A</html>
0N/A