[Webkit-unassigned] [Bug 55523] New: Fix a bug in platform/mac/editing/input/selection-change-closes-typing.html

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Mar 1 16:19:44 PST 2011


https://bugs.webkit.org/show_bug.cgi?id=55523

           Summary: Fix a bug in
                    platform/mac/editing/input/selection-change-closes-typ
                    ing.html
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Tools / Tests
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: rniwa at webkit.org


In platform/mac/editing/input/selection-change-closes-typing.html,

we do:

textInputController.setMarkedText("P", 1, 0);
testInput.value="PAS";
eventSender.keyDown("S");

but it should read:

textInputController.setMarkedText("P", 0, 1);
testInput.value="PAS";
eventSender.keyDown("S");

because textInput initially has no value, and the marked text must be inserted at offset 0 with length 1, not at offset 1 with length 0.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list