⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 155436 in webkit


Ignore:
Timestamp:
Sep 10, 2013, 6:36:26 AM (13 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r155430 - [GTK] /webkit2/WebKitWebView/default-menu fails when GtkSettings:gtk-show-input-method-menu is disabled
https://bugs.webkit.org/show_bug.cgi?id=121088

Reviewed by Xan Lopez.

  • UIProcess/API/gtk/tests/TestContextMenu.cpp: Always check

Unicode submenu is present in default context menu for editable
content.

Location:
releases/WebKitGTK/webkit-2.2/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.2/Source/WebKit2/ChangeLog

    r155427 r155436  
     12013-09-10  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] /webkit2/WebKitWebView/default-menu fails when GtkSettings:gtk-show-input-method-menu is disabled
     4        https://bugs.webkit.org/show_bug.cgi?id=121088
     5
     6        Reviewed by Xan Lopez.
     7
     8        * UIProcess/API/gtk/tests/TestContextMenu.cpp: Always check
     9        Unicode submenu is present in default context menu for editable
     10        content.
     11
    1122013-08-29  Brian Holt  <brian.holt@samsung.com>
    213
  • releases/WebKitGTK/webkit-2.2/Source/WebKit2/UIProcess/API/gtk/tests/TestContextMenu.cpp

    r151833 r155436  
    322322            iter = checkCurrentItemIsSeparatorAndGetNext(iter);
    323323            iter = checkCurrentItemIsStockActionAndGetNext(iter, WEBKIT_CONTEXT_MENU_ACTION_SELECT_ALL, Visible | Enabled);
    324             if (shouldShowInputMethodsMenu()) {
    325                 iter = checkCurrentItemIsSeparatorAndGetNext(iter);
     324            iter = checkCurrentItemIsSeparatorAndGetNext(iter);
     325            if (shouldShowInputMethodsMenu())
    326326                iter = checkCurrentItemIsStockActionAndGetNext(iter, WEBKIT_CONTEXT_MENU_ACTION_INPUT_METHODS, Visible | Enabled);
    327                 iter = checkCurrentItemIsStockActionAndGetNext(iter, WEBKIT_CONTEXT_MENU_ACTION_UNICODE, Visible | Enabled);
    328             }
     327            iter = checkCurrentItemIsStockActionAndGetNext(iter, WEBKIT_CONTEXT_MENU_ACTION_UNICODE, Visible | Enabled);
    329328            break;
    330329        default:
Note: See TracChangeset for help on using the changeset viewer.