Changeset 71881 in webkit


Ignore:
Timestamp:
Nov 11, 2010 8:16:12 PM (13 years ago)
Author:
chang.shu@nokia.com
Message:

2010-11-11 Chang Shu <chang.shu@nokia.com>

Reviewed by Antonio Gomes.

[GTK] Unskip tests that are passing now.
fast/events/spatial-navigation/snav-input.html
fast/events/spatial-navigation/snav-textarea.html
https://bugs.webkit.org/show_bug.cgi?id=49056

  • platform/gtk/Skipped:

2010-11-11 Chang Shu <chang.shu@nokia.com>

Reviewed by Antonio Gomes.

[GTK] Replace "MoveForward"/"MoveBackward" with "MoveRight"/"MoveLeft"
to make spatial navigation work on input/textarea.
https://bugs.webkit.org/show_bug.cgi?id=49056

  • WebCoreSupport/EditorClientGtk.cpp: (WebKit::moveCursorCallback):
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r71880 r71881  
     12010-11-11  Chang Shu  <chang.shu@nokia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [GTK] Unskip tests that are passing now.
     6        fast/events/spatial-navigation/snav-input.html
     7        fast/events/spatial-navigation/snav-textarea.html
     8        https://bugs.webkit.org/show_bug.cgi?id=49056
     9
     10        * platform/gtk/Skipped:
     11
    1122010-11-11  Julie-Jeongeun-Kim  <jiyuluna@gmail.com>
    213
  • trunk/LayoutTests/platform/gtk/Skipped

    r71822 r71881  
    49654965fast/loader/crash-copying-backforwardlist.html
    49664966
    4967 # Spatial Navigation
    4968 # https://bugs.webkit.org/show_bug.cgi?id=49056
    4969 fast/events/spatial-navigation/snav-input.html
    4970 fast/events/spatial-navigation/snav-textarea.html
    4971 
    49724967# Implement LayoutTestController::callShouldCloseOnWebView()
    49734968fast/events/onbeforeunload-focused-iframe.html
  • trunk/WebKit/gtk/ChangeLog

    r71604 r71881  
     12010-11-11  Chang Shu  <chang.shu@nokia.com>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        [GTK] Replace "MoveForward"/"MoveBackward" with "MoveRight"/"MoveLeft"
     6        to make spatial navigation work on input/textarea.
     7        https://bugs.webkit.org/show_bug.cgi?id=49056
     8
     9        * WebCoreSupport/EditorClientGtk.cpp:
     10        (WebKit::moveCursorCallback):
     11
    1122010-11-08  Nicolas Dufresne  <nicolas.dufresne@collabora.co.uk>
    213
  • trunk/WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp

    r69301 r71881  
    214214        return;
    215215
     216    if (isSpatialNavigationEnabled(core(client->webView())->focusController()->focusedOrMainFrame()) && step == 1) {
     217        if (direction == 1)
     218            rawCommand = "MoveRight";
     219        else if (!direction)
     220            rawCommand = "MoveLeft";
     221    }
     222
    216223    for (int i = 0; i < abs(count); i++)
    217224        client->addPendingEditorCommand(rawCommand);
Note: See TracChangeset for help on using the changeset viewer.