Changeset 150575 in webkit


Ignore:
Timestamp:
May 23, 2013 12:06:30 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Back, Forward and Stop should be hidden in context menu
https://bugs.webkit.org/show_bug.cgi?id=116615

Patch by Michał Pakuła vel Rutka <Michał Pakuła vel Rutka> on 2013-05-23
Reviewed by Christophe Dumez.

Context menu items: Back, Forward, Stop, Reload, should be shown only when
they are able to perform action.

No new tests - no new functionality.

  • page/ContextMenuController.cpp:

(WebCore::ContextMenuController::populate):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r150561 r150575  
     12013-05-23  Michał Pakuła vel Rutka  <m.pakula@samsung.com>
     2
     3        [EFL] Back, Forward and Stop should be hidden in context menu
     4        https://bugs.webkit.org/show_bug.cgi?id=116615
     5
     6        Reviewed by Christophe Dumez.
     7
     8        Context menu items: Back, Forward, Stop, Reload, should be shown only when
     9        they are able to perform action.
     10
     11        No new tests - no new functionality.
     12
     13        * page/ContextMenuController.cpp:
     14        (WebCore::ContextMenuController::populate):
     15
    1162013-05-22  Dean Jackson  <dino@apple.com>
    217
  • trunk/Source/WebCore/page/ContextMenuController.cpp

    r150214 r150575  
    891891#endif
    892892
    893                 // In GTK+ and EFL, unavailable items are not hidden but insensitive.
    894 #if PLATFORM(GTK) || PLATFORM(EFL)
     893                // In GTK+ unavailable items are not hidden but insensitive.
     894#if PLATFORM(GTK)
    895895                appendItem(BackItem, m_contextMenu.get());
    896896                appendItem(ForwardItem, m_contextMenu.get());
Note: See TracChangeset for help on using the changeset viewer.