Bug 14495 - REGRESSION: Wrong cursor is displayed during drag and drop when text is selected
Summary: REGRESSION: Wrong cursor is displayed during drag and drop when text is selected
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 523.x (Safari 3)
Hardware: All All
: P1 Normal
Assignee: Nobody
URL:
Keywords: InRadar, Regression
Depends on:
Blocks:
 
Reported: 2007-07-02 03:37 PDT by Miroslav Juhos
Modified: 2007-07-04 03:57 PDT (History)
1 user (show)

See Also:


Attachments
Test case (773 bytes, text/html)
2007-07-02 03:37 PDT, Miroslav Juhos
no flags Details
Don't change the cursor to an I-beam unconditionally if selection is impossible (5.10 KB, patch)
2007-07-03 12:04 PDT, mitz
mjs: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
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.