Changeset 55501 in webkit


Ignore:
Timestamp:
Mar 3, 2010 8:45:32 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-03 Diego Gonzalez <diego.gonzalez@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent

LayoutTests:

fast/events/key-events-in-input-text.html
fast/events/special-key-events-in-input-text.html

[Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
https://bugs.webkit.org/show_bug.cgi?id=35694

  • platform/qt/Skipped:

2010-03-03 Diego Gonzalez <diego.gonzalez@openbossa.org>

Reviewed by Kenneth Rohde Christiansen.

Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent

LayoutTests:

fast/events/key-events-in-input-text.html
fast/events/special-key-events-in-input-text.html

[Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
https://bugs.webkit.org/show_bug.cgi?id=35694

  • platform/qt/PlatformKeyboardEventQt.cpp: (WebCore::keyIdentifierForQtKeyCode):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r55499 r55501  
     12010-03-03  Diego Gonzalez  <diego.gonzalez@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent
     6
     7        LayoutTests:
     8            fast/events/key-events-in-input-text.html
     9            fast/events/special-key-events-in-input-text.html
     10
     11        [Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
     12        https://bugs.webkit.org/show_bug.cgi?id=35694
     13
     14        * platform/qt/Skipped:
     15
    1162010-03-03  Chad Faragher  <wyck@chromium.org>
    217
  • trunk/LayoutTests/platform/qt/Skipped

    r55479 r55501  
    11561156fast/events/attempt-scroll-with-no-scrollbars.html
    11571157fast/events/key-events-in-input-button.html
    1158 fast/events/key-events-in-input-text.html
    11591158fast/forms/input-align-image.html
    11601159fast/forms/input-align.html
     
    47854784fast/events/crash-on-mutate-during-drop.html
    47864785fast/events/pointer-events-2.html
    4787 fast/events/special-key-events-in-input-text.html
    47884786fast/forms/option-mouseevents.html
    47894787fast/forms/search-abs-pos-cancel-button.html
  • trunk/WebCore/ChangeLog

    r55499 r55501  
     12010-03-03  Diego Gonzalez  <diego.gonzalez@openbossa.org>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent
     6
     7        LayoutTests:
     8            fast/events/key-events-in-input-text.html
     9            fast/events/special-key-events-in-input-text.html
     10
     11        [Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
     12        https://bugs.webkit.org/show_bug.cgi?id=35694
     13
     14        * platform/qt/PlatformKeyboardEventQt.cpp:
     15        (WebCore::keyIdentifierForQtKeyCode):
     16
    1172010-03-03  Chad Faragher  <wyck@chromium.org>
    218
  • trunk/WebCore/platform/qt/PlatformKeyboardEventQt.cpp

    r52902 r55501  
    128128        case Qt::Key_Delete:
    129129            return "U+007F";
     130        case Qt::Key_Backspace:
     131            return "U+0008";
    130132        case Qt::Key_Tab:
    131133            return "U+0009";
Note: See TracChangeset for help on using the changeset viewer.