Changeset 199876 in webkit


Ignore:
Timestamp:
Apr 22, 2016 5:49:03 AM (8 years ago)
Author:
Carlos Garcia Campos
Message:

[GTK] Enable the download attribute support
https://bugs.webkit.org/show_bug.cgi?id=99025

Reviewed by Žan Doberšek.

.:

  • Source/cmake/OptionsGTK.cmake:

Tools:

  • Scripts/webkitperl/FeatureList.pm:

LayoutTests:

Unskip tests that should pass now.

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

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r199694 r199876  
     12016-04-22  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Enable the download attribute support
     4        https://bugs.webkit.org/show_bug.cgi?id=99025
     5
     6        Reviewed by Žan Doberšek.
     7
     8        * Source/cmake/OptionsGTK.cmake:
     9
    1102016-04-18  Yusuke Suzuki  <utatane.tea@gmail.com>
    211
  • trunk/LayoutTests/ChangeLog

    r199874 r199876  
     12016-04-22  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Enable the download attribute support
     4        https://bugs.webkit.org/show_bug.cgi?id=99025
     5
     6        Reviewed by Žan Doberšek.
     7
     8        Unskip tests that should pass now.
     9
     10        * platform/gtk/TestExpectations:
     11
    1122016-04-22  Manuel Rego Casasnovas  <rego@igalia.com>
    213
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r199814 r199876  
    280280webkit.org/b/99024 media/encrypted-media [ Skip ]
    281281webkit.org/b/99024 fast/events/constructors/media-key-event-constructor.html [ Timeout ]
    282 
    283 # Tests that require ENABLE(DOWNLOAD_ATTRIBUTE).
    284 webkit.org/b/99025 fast/dom/HTMLAnchorElement/anchor-nodownload.html [ Pass ]
    285 webkit.org/b/99025 fast/dom/HTMLAnchorElement/anchor-download.html [ Failure ]
    286 webkit.org/b/99025 fast/dom/HTMLAnchorElement/anchor-nodownload-set.html [ Failure ]
    287 webkit.org/b/99025 fast/dom/HTMLAnchorElement/anchor-download-unset.html [ Timeout Pass ]
    288282
    289283# CSS Filters is disabled
  • trunk/Source/cmake/OptionsGTK.cmake

    r199007 r199876  
    157157WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_SELECTORS_LEVEL4 PRIVATE ON)
    158158WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DATABASE_PROCESS PRIVATE ON)
     159WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DOWNLOAD_ATTRIBUTE PRIVATE ON)
    159160WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FTL_JIT PRIVATE ${ENABLE_FTL_DEFAULT})
    160161WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FTPDIR PRIVATE OFF)
  • trunk/Tools/ChangeLog

    r199834 r199876  
     12016-04-22  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [GTK] Enable the download attribute support
     4        https://bugs.webkit.org/show_bug.cgi?id=99025
     5
     6        Reviewed by Žan Doberšek.
     7
     8        * Scripts/webkitperl/FeatureList.pm:
     9
    1102016-04-21  Keith Miller  <keith_miller@apple.com>
    211
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r199214 r199876  
    250250
    251251    { option => "download-attribute", desc => "Toggle Download Attribute support",
    252       define => "ENABLE_DOWNLOAD_ATTRIBUTE", default => isEfl(), value => \$downloadAttributeSupport },
     252      define => "ENABLE_DOWNLOAD_ATTRIBUTE", default => (isEfl() || isGtk()), value => \$downloadAttributeSupport },
    253253
    254254    { option => "fetch-api", desc => "Toggle Fetch API support",
Note: See TracChangeset for help on using the changeset viewer.