| 1 | <head> |
|---|
| 2 | <title>Testcase for #6350</title> |
|---|
| 3 | |
|---|
| 4 | <script type="text/javascript" src="dojo/dojo.js" djConfig="isDebug:true, parseOnLoad: true" ></script> |
|---|
| 5 | <script type="text/javascript" src="dojo/dnd/Source.js" ></script> |
|---|
| 6 | <script type="text/javascript" src="dojo/dnd/Manager.js" ></script> |
|---|
| 7 | <script type="text/javascript"> |
|---|
| 8 | dojo.require("dojo.dnd.Source"); |
|---|
| 9 | dojo.require("dijit.layout.ContentPane"); |
|---|
| 10 | dojo.require("dojo.parser"); |
|---|
| 11 | </script> |
|---|
| 12 | <style type="text/css"> |
|---|
| 13 | @import "dojo/resources/dojo.css"; |
|---|
| 14 | @import "dijit/themes/dijit.css"; |
|---|
| 15 | @import "dijit/themes/tundra/tundra.css"; |
|---|
| 16 | |
|---|
| 17 | .target {border: 1px dotted gray; padding: 5px;width: 300px; height: 300px;} |
|---|
| 18 | .source {border: 1px dotted skyblue;height: 200px; width: 300px;} |
|---|
| 19 | .bluesquare {height:50px;width:100px;background-color:skyblue} |
|---|
| 20 | .redsquare {height:50px;width:100px;background-color:red} |
|---|
| 21 | </style> |
|---|
| 22 | </head> |
|---|
| 23 | <body> |
|---|
| 24 | <p>Bug: can't drag from INSIDE SOURCE to OUTSIDE TARGET</p> |
|---|
| 25 | <div dojoType="dojo.dnd.Target" id="myTarget1" class="target" accept="blue,darkred"> |
|---|
| 26 | OUTSIDE TARGET |
|---|
| 27 | </div> |
|---|
| 28 | |
|---|
| 29 | <div dojoType="dojo.dnd.Source" id="mySource1" class="source"> |
|---|
| 30 | OUTSIDE SOURCE |
|---|
| 31 | <div class="dojoDndItem" dndType="blue"> |
|---|
| 32 | <div class="bluesquare">BLUE</div> |
|---|
| 33 | </div> |
|---|
| 34 | <div class="dojoDndItem" dndType="red,darkred"> |
|---|
| 35 | <div class="redsquare">RED</div> |
|---|
| 36 | </div> |
|---|
| 37 | </div> |
|---|
| 38 | |
|---|
| 39 | <div title="Floater test ... " id="floater1" style="position:absolute; width:300px; height:300px; top:300px; left:300px; display: block; overflow: auto;"> |
|---|
| 40 | <div dojoType="dojo.dnd.Source" id="mySource2" class="source"> |
|---|
| 41 | INSIDE SOURCE |
|---|
| 42 | <div class="dojoDndItem" dndType="blue"> |
|---|
| 43 | <div class="bluesquare">BLUE</div> |
|---|
| 44 | </div> |
|---|
| 45 | <div class="dojoDndItem" dndType="red,darkred"> |
|---|
| 46 | <div class="redsquare">RED</div> |
|---|
| 47 | </div> |
|---|
| 48 | </div> |
|---|
| 49 | |
|---|
| 50 | <div dojoType="dojo.dnd.Target" id="myTarget2" accept="blue,darkred"> |
|---|
| 51 | INSIDE TARGET |
|---|
| 52 | </div> |
|---|
| 53 | </div> |
|---|
| 54 | |
|---|
| 55 | </body> |
|---|