Bug 14495

Summary: REGRESSION: Wrong cursor is displayed during drag and drop when text is selected
Product: WebKit Reporter: Miroslav Juhos <mjuhos>
Component: CSSAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: mitz
Priority: P1 Keywords: InRadar, Regression
Version: 523.x (Safari 3)   
Hardware: All   
OS: All   
Attachments:
Description Flags
Test case
none
Don't change the cursor to an I-beam unconditionally if selection is impossible mjs: review+

Description Miroslav Juhos 2007-07-02 03:37:01 PDT
Overview Description: Wrong cursor is displayed during drag and drop when text is selected

Steps to Reproduce:
1) Open test case
2) Select text in yellow box
3) Move using drag'n'drop blue box

Actual Results:
Text cursor is displayed as mouse cursor.

Expected Results:
Mouse cursor will be "default" thus arrow

Build Date & Platform:
WebKit r23922 on WinXP
Safari 3.0 (5222.8.3) on Mac OS 10.5. (9A466)

Additional Information:
On Safari 2.0.4 (419.3) test case works correctly.

Test case:
<html>
  <style>
    * {
      cursor:default;
    }
    div {
      position:absolute;
      width:100px;
      height:100px;
    }
  </style>
  <script>
    var allowMove = false;
    var movable;
    onload = function() {
      movable = document.getElementById('movable');
      movable.onmousedown = function() {
        allowMove = true;
        return false;
      }
    }
    onmouseup = function(event) {allowMove = false;}
    onmousemove = function(event) {
      if (allowMove) {
        movable.style.top = event.clientY  + 10 + 'px';
        movable.style.left = event.clientX + 10 + 'px';
      }
    }
  </script>
  <body>
    <div style="background-color:blue;left:100px;position:absolute" id="movable"></div>
    <div style="background-color:yellow;left:300px;">Select me</div>
  </body>
</html>
Comment 1 Miroslav Juhos 2007-07-02 03:37:51 PDT
Created attachment 15347 [details]
Test case
Comment 2 Alexey Proskuryakov 2007-07-02 03:56:42 PDT
Confirmed as a regression with r23841.
Comment 3 mitz 2007-07-03 12:04:37 PDT
Created attachment 15372 [details]
Don't change the cursor to an I-beam unconditionally if selection is impossible
Comment 4 Maciej Stachowiak 2007-07-04 03:30:39 PDT
Comment on attachment 15372 [details]
Don't change the cursor to an I-beam unconditionally if selection is impossible

r=me
Comment 5 Mark Rowe (bdash) 2007-07-04 03:55:50 PDT
<rdar://problem/5312384>
Comment 6 Mark Rowe (bdash) 2007-07-04 03:57:30 PDT
Landed in r23983.