Trouble with droppable and div with overflow

Trouble with droppable and div with overflow

Hi,

I have a unexpected behavior with the following code :
  1. <style>
  2.         div
  3.         {
  4.             margin: 10px;
  5.         }
  6.         .droppable
  7.         {
  8.             background-color: red;
  9.         }
  10.         .draggable
  11.         {
  12.             background-color: green;
  13.         }
  14.     </style>
  15.     <div id="divContainer" style="height: 100px; overflow: auto;">
  16.         <div id="drop1" class="droppable" style="height: 500px">
  17.         </div>
  18.     </div>
  19.     <div id="drop2" class="droppable" style="height: 50px;">
  20.     </div>
  21.     <div class="draggable" style="height: 50px;">
  22.     </div>
  23.     <script type="text/javascript">
  24.         $('.draggable').draggable();
  25.         $('.droppable').droppable({ drop: function (event, ui) { $(this).text('dropped'); } });
  26.     </script>
When I drag the green div on the red div with id='drop2', the text 'dropped' is display on the div with id='drop1'.
Is it correct or is it a bug ? If it's normal, what changes can I make to fire the event on the div 'drop2'  and not on 'drop1' ?

I'm using jquery 1.4.2, jquery ui 1.8.2. I tested on IE8 and Chrome 5.0 beta.

Thanks for your help.