Login Register

FloatingPane odd drag behavior

Um, odd.

So, given the code below, it will not allow you to drag the floating pane. However, if you remove the dojo.css import, then everything is hunky dory. I have yet to dive into the dojo.css file to see what is happening.

Is this expected behavior?

<head>
        <title>Float my boat</title>
        <style type="text/css">
                @import url("http://o.aolcdn.com/dojo/1.1.0/dojo/resources/dojo.css");/*Remove this and it works*/
                @import url("http://o.aolcdn.com/dojo/1.1.0/dijit/themes/tundra/tundra.css");
                @import url("http://o.aolcdn.com/dojo/1.1.0/dojox/layout/resources/FloatingPane.css");
        </style>
        <script type="text/javascript" src="http://o.aolcdn.com/dojo/1.1.0/dojo/dojo.xd.js.uncompressed.js" djConfig="parseOnLoad:true"></script>
        <script type='text/javascript' src='http://o.aolcdn.com/dojo/1.1.0/dijit/dijit.xd.js'></script>
        <script language="JavaScript" someProperty="text/javascript">
                dojo.require("dojo.parser");
                dojo.require("dojox.layout.FloatingPane");

        </script>
</head>
<body class="tundra">
       
        <div dojoType="dojox.layout.FloatingPane" title="test" style="height:400px;width:400px">
         Float Me? Float YOU.
        </div>
</div>
       
</body>