Commit acec0c92 authored by ben%netscape.com's avatar ben%netscape.com
Browse files

check in fix for 40751 for Kevin Puetzk, r=myself

parent caabf01a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
 * Rights Reserved.
 *
 * Contributor(s): 
 *  - Kevin Puetz (puetz@iastate.edu)
 *  - Kevin Puetz (puetzk@iastate.edu)
 */

//
@@ -296,7 +296,7 @@ function BeginDragContentArea ( event )
  var htmlstring = null;
  var textstring = null;
  var domselection = window.content.getSelection();
  if ( domselection && !domselection.isCollapsed)
  if ( domselection && !domselection.isCollapsed  && domselection.containsNode(event.target,false))
  {
    // the window has a selection so we should grab that rather than looking for specific elements
//    dump(domselection);