resizable in v 1.6rc6 not working in firefox?

resizable in v 1.6rc6 not working in firefox?


This is working ok in ie8 but not resizing in firefox: with
jquery-1.2.6.js and jquery-ui-personalized-1.5.3.js both ok
<!DOCTYPE html>
<html>
<head>                 <!-- works ok in ie8 but no resizing in firefox -->
<link rel= stylesheet type="text/css" media="screen" href="n:\apps
\JQuery\v1.6\theme\ui.all.css">
<script type="text/javascript" src="jquery-1.3.2.js"></script>
<script type="text/javascript" src="jquery-ui-
personalized-1.6rc6.min.js" ></script>
                                                                                 <!-- online example uses src="http://
jqueryui.com/latest/ui/
ui.core.js"
src="http://jqueryui.com/latest/ui/
ui.resizable.js"
                                                                                                                     -->
<style type="text/css">
#draggable { width: 100px; height: 70px; background: silver; }
</style>
<script type="text/javascript">
     $(document).ready(function(){
$("#draggable").draggable({ containment:'parent' });
});
$(document).ready(function(){
$("#draggable").resizable({containment:'parent'}); // ie8 ok,
firefox no ??
});
</script>
</head>
<body>
<div id = "contain" style="position:absolute; top:10px; left:10px;
height:500px; width:500px;border: 1px solid red;">
<div id ="draggable" >1 Drag me
anywhere</div>
</div>
</body>
</html>
Anyone confirm?
Eamon