Changeset 147306 in webkit


Ignore:
Timestamp:
Apr 1, 2013 12:04:20 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Enable user-select:all for EFL port
https://bugs.webkit.org/show_bug.cgi?id=113494

.:

Patch by Jinwoo Song <jinwoo7.song@samsung.com> on 2013-04-01
Reviewed by Gyuyoung Kim.

Add a feature flag for user-select:all and enable it for EFL port.

  • Source/cmake/OptionsEfl.cmake:
  • Source/cmake/WebKitFeatures.cmake:
  • Source/cmakeconfig.h.cmake:

LayoutTests:

Patch by Jinwoo Song <jinwoo7.song@samsung.com> on 2013-04-01
Reviewed by Gyuyoung Kim.

Enable user-select:all for EFL port and update the TestExpectations.

  • platform/efl/TestExpectations:
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r147212 r147306  
     12013-04-01  Jinwoo Song  <jinwoo7.song@samsung.com>
     2
     3        [EFL] Enable user-select:all for EFL port
     4        https://bugs.webkit.org/show_bug.cgi?id=113494
     5
     6        Reviewed by Gyuyoung Kim.
     7       
     8        Add a feature flag for user-select:all and enable it for EFL port.
     9
     10        * Source/cmake/OptionsEfl.cmake:
     11        * Source/cmake/WebKitFeatures.cmake:
     12        * Source/cmakeconfig.h.cmake:
     13
    1142013-03-29  Charles Wei  <charles.wei@torchmobile.com.cn>
    215
  • trunk/LayoutTests/ChangeLog

    r147303 r147306  
     12013-04-01  Jinwoo Song  <jinwoo7.song@samsung.com>
     2
     3        [EFL] Enable user-select:all for EFL port
     4        https://bugs.webkit.org/show_bug.cgi?id=113494
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        Enable user-select:all for EFL port and update the TestExpectations.
     9
     10        * platform/efl/TestExpectations:
     11
    1122013-03-31  Zalan Bujtas  <zalan@apple.com>
    213
  • trunk/LayoutTests/platform/efl/TestExpectations

    r147274 r147306  
    15421542webkit.org/b/61138 http/tests/w3c/webperf/submission/Intel/resource-timing [ Skip ]
    15431543
    1544 webkit.org/b/100424 editing/selection/user-select-all-selection.html [ Failure ]
    1545 webkit.org/b/100424 editing/selection/user-select-all-with-shift.html [ Failure ]
    1546 
    15471544# Entering into full screen playback mode fails when triggered by context menu
    15481545Bug(EFL) media/context-menu-actions.html [ Failure ]
  • trunk/Source/cmake/OptionsEfl.cmake

    r147222 r147306  
    8888WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_TEMPLATE_ELEMENT ON)
    8989WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_TOUCH_EVENTS ON)
     90WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_USERSELECT_ALL ON)
    9091WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIBRATION ON)
    9192WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO ON)
  • trunk/Source/cmake/WebKitFeatures.cmake

    r147212 r147306  
    122122    WEBKIT_OPTION_DEFINE(ENABLE_TOUCH_SLIDER "Toggle Touch Slider support" OFF)
    123123    WEBKIT_OPTION_DEFINE(ENABLE_TOUCH_ICON_LOADING "Toggle Touch Icon Loading Support" OFF)
     124    WEBKIT_OPTION_DEFINE(ENABLE_USERSELECT_ALL "Toggle user-select:all support" OFF)
    124125    WEBKIT_OPTION_DEFINE(ENABLE_USER_TIMING "Toggle User Timing support" OFF)
    125126    WEBKIT_OPTION_DEFINE(ENABLE_VIBRATION "Toggle Vibration API support" OFF)
  • trunk/Source/cmakeconfig.h.cmake

    r147212 r147306  
    117117#cmakedefine01 ENABLE_TOUCH_SLIDER
    118118#cmakedefine01 ENABLE_TOUCH_ICON_LOADING
     119#cmakedefine01 ENABLE_USERSELECT_ALL
    119120#cmakedefine01 ENABLE_USER_TIMING
    120121#cmakedefine01 ENABLE_VIBRATION
Note: See TracChangeset for help on using the changeset viewer.