Changeset 104532 in webkit


Ignore:
Timestamp:
Jan 9, 2012 6:40:36 PM (12 years ago)
Author:
rwlbuis@webkit.org
Message:

2012-01-09 Rob Buis <rbuis@rim.com>

Upstream change to disable input[color] css rules for BlackBerry port
https://bugs.webkit.org/show_bug.cgi?id=75719

Reviewed by Antonio Gomes.

Do not enable default css color rules for inputcolor? for BlackBerry port.

  • CMakeLists.txt:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/CMakeLists.txt

    r104528 r104532  
    23312331SET(FEATURE_DEFINES_WITH_SPACE_SEPARATOR "")
    23322332FOREACH(_feature ${FEATURE_DEFINES})
    2333     SET(FEATURE_DEFINES_WITH_SPACE_SEPARATOR "${FEATURE_DEFINES_WITH_SPACE_SEPARATOR} ${_feature}")
     2333    # filter out color input since we have our own solution
     2334    IF (NOT CMAKE_SYSTEM_NAME MATCHES "QNX" OR NOT _feature MATCHES "ENABLE_INPUT_COLOR")
     2335        SET(FEATURE_DEFINES_WITH_SPACE_SEPARATOR "${FEATURE_DEFINES_WITH_SPACE_SEPARATOR} ${_feature}")
     2336    ENDIF()
    23342337ENDFOREACH()
    23352338
  • trunk/Source/WebCore/ChangeLog

    r104531 r104532  
     12012-01-09  Rob Buis  <rbuis@rim.com>
     2
     3        Upstream change to disable input[color] css rules for BlackBerry port
     4        https://bugs.webkit.org/show_bug.cgi?id=75719
     5
     6        Reviewed by Antonio Gomes.
     7
     8        Do not enable default css color rules for input["color"] for BlackBerry port.
     9
     10        * CMakeLists.txt:
     11
    1122012-01-09  Greg Billock  <gbillock@google.com>
    213
Note: See TracChangeset for help on using the changeset viewer.