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

Changeset 118647 in webkit


Ignore:
Timestamp:
May 27, 2012, 10:00:28 PM (14 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] Enable blob support for the EFL port
https://bugs.webkit.org/show_bug.cgi?id=85363

Patch by Sudarsana Nagineni <sudarsana.nagineni@linux.intel.com> on 2012-05-27
Reviewed by Hajime Morita.

.:

Enable Blob support by default for the EFL port.

  • Source/cmake/OptionsEfl.cmake:

Tools:

Enable Blob support by default for the EFL port.

  • Scripts/webkitperl/FeatureList.pm:

LayoutTests:

Unskip tests which require blob support to be enabled.

  • platform/efl/Skipped:
  • platform/efl/test_expectations.txt:
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r118640 r118647  
     12012-05-27  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
     2
     3        [EFL] Enable blob support for the EFL port
     4        https://bugs.webkit.org/show_bug.cgi?id=85363
     5
     6        Reviewed by Hajime Morita.
     7
     8        Enable Blob support by default for the EFL port.
     9
     10        * Source/cmake/OptionsEfl.cmake:
     11
    1122012-05-27  Raphael Kubo da Costa  <rakuco@webkit.org>
    213
  • trunk/LayoutTests/ChangeLog

    r118645 r118647  
     12012-05-27  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
     2
     3        [EFL] Enable blob support for the EFL port
     4        https://bugs.webkit.org/show_bug.cgi?id=85363
     5
     6        Reviewed by Hajime Morita.
     7
     8        Unskip tests which require blob support to be enabled.
     9
     10        * platform/efl/Skipped:
     11        * platform/efl/test_expectations.txt:
     12
    1132012-05-27  Hayato Ito  <hayato@chromium.org>
    214
  • trunk/LayoutTests/platform/efl/Skipped

    r118516 r118647  
    956956fast/events/remove-target-with-shadow-in-drag.html
    957957fast/files/blob-builder-crash.html
    958 fast/files/blob-slice-overflow.html
    959 fast/files/blob-slice-test.html
    960 fast/files/create-blob-url-crash.html
    961 fast/files/file-reader-fffd.html
    962 fast/files/not-enough-arguments.html
    963 fast/files/revoke-blob-url.html
    964 fast/files/url-required-arguments.html
    965958fast/forms/001.html
    966959fast/forms/float-before-fieldset.html
     
    13021295http/tests/cache/subresource-failover-to-network.html
    13031296http/tests/cache/subresource-multiple-instances.html
    1304 http/tests/fileapi/create-blob-url-from-data-url.html
    13051297http/tests/loading/authentication-after-redirect-stores-wrong-credentials/authentication-after-redirect-stores-wrong-credentials.html
    1306 http/tests/local/blob/send-data-blob.html
    1307 http/tests/local/blob/send-sliced-data-blob.html
    13081298http/tests/loading/nested_bad_objects.php
    13091299http/tests/loading/progress-finished-callback.html
  • trunk/LayoutTests/platform/efl/test_expectations.txt

    r118515 r118647  
    405405// EFL does not support WebGL
    406406BUGWK77219 : compositing/visibility/visibility-simple-webgl-layer.html = TEXT
     407BUGWK77219 : fast/dom/constructed-objects-prototypes.html = TEXT
    407408
    408409BUGWK84759 : ietestcenter/css3/multicolumn/column-containing-block-001.htm = IMAGE
     
    422423BUGWK84778 : ietestcenter/css3/multicolumn/column-width-negative-001.htm = IMAGE
    423424
    424 // Turn on blob support for the EFL port.
    425 BUGWK85363 : fast/dom/DOMURL/check-instanceof-domurl-functions.html = TEXT
    426 BUGWK85363 : fast/dom/call-a-constructor-as-a-function.html = TEXT
    427 BUGWK85363 : fast/dom/constructed-objects-prototypes.html = TEXT
    428 BUGWK85363 : fast/files/url-null.html = TEXT
    429 
    430425// Expose title direction in WebKit API
    431426BUGWK58845 : fast/dom/title-directionality.html = FAIL
  • trunk/Source/cmake/OptionsEfl.cmake

    r118123 r118647  
    6767WEBKIT_OPTION_BEGIN()
    6868WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BATTERY_STATUS ON)
     69WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BLOB ON)
    6970WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DRAG_SUPPORT ON)
    7071WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FAST_MOBILE_SCROLLING ON)
  • trunk/Tools/ChangeLog

    r118631 r118647  
     12012-05-27  Sudarsana Nagineni  <sudarsana.nagineni@linux.intel.com>
     2
     3        [EFL] Enable blob support for the EFL port
     4        https://bugs.webkit.org/show_bug.cgi?id=85363
     5
     6        Reviewed by Hajime Morita.
     7
     8        Enable Blob support by default for the EFL port.
     9
     10        * Scripts/webkitperl/FeatureList.pm:
     11
    1122012-05-27  Benjamin Poulain  <bpoulain@apple.com>
    213
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r118484 r118647  
    141141
    142142    { option => "blob", desc => "Toggle Blob support",
    143       define => "ENABLE_BLOB", default => (isAppleMacWebKit() || isGtk() || isChromium() || isBlackBerry()), value => \$blobSupport },
     143      define => "ENABLE_BLOB", default => (isAppleMacWebKit() || isGtk() || isChromium() || isBlackBerry() || isEfl()), value => \$blobSupport },
    144144
    145145    { option => "channel-messaging", desc => "Toggle Channel Messaging support",
Note: See TracChangeset for help on using the changeset viewer.