Changeset 118647 in webkit
- Timestamp:
- May 27, 2012, 10:00:28 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 7 edited
-
ChangeLog (modified) (1 diff)
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/platform/efl/Skipped (modified) (2 diffs)
-
LayoutTests/platform/efl/test_expectations.txt (modified) (2 diffs)
-
Source/cmake/OptionsEfl.cmake (modified) (1 diff)
-
Tools/ChangeLog (modified) (1 diff)
-
Tools/Scripts/webkitperl/FeatureList.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r118640 r118647 1 2012-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 1 12 2012-05-27 Raphael Kubo da Costa <rakuco@webkit.org> 2 13 -
trunk/LayoutTests/ChangeLog
r118645 r118647 1 2012-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 1 13 2012-05-27 Hayato Ito <hayato@chromium.org> 2 14 -
trunk/LayoutTests/platform/efl/Skipped
r118516 r118647 956 956 fast/events/remove-target-with-shadow-in-drag.html 957 957 fast/files/blob-builder-crash.html 958 fast/files/blob-slice-overflow.html959 fast/files/blob-slice-test.html960 fast/files/create-blob-url-crash.html961 fast/files/file-reader-fffd.html962 fast/files/not-enough-arguments.html963 fast/files/revoke-blob-url.html964 fast/files/url-required-arguments.html965 958 fast/forms/001.html 966 959 fast/forms/float-before-fieldset.html … … 1302 1295 http/tests/cache/subresource-failover-to-network.html 1303 1296 http/tests/cache/subresource-multiple-instances.html 1304 http/tests/fileapi/create-blob-url-from-data-url.html1305 1297 http/tests/loading/authentication-after-redirect-stores-wrong-credentials/authentication-after-redirect-stores-wrong-credentials.html 1306 http/tests/local/blob/send-data-blob.html1307 http/tests/local/blob/send-sliced-data-blob.html1308 1298 http/tests/loading/nested_bad_objects.php 1309 1299 http/tests/loading/progress-finished-callback.html -
trunk/LayoutTests/platform/efl/test_expectations.txt
r118515 r118647 405 405 // EFL does not support WebGL 406 406 BUGWK77219 : compositing/visibility/visibility-simple-webgl-layer.html = TEXT 407 BUGWK77219 : fast/dom/constructed-objects-prototypes.html = TEXT 407 408 408 409 BUGWK84759 : ietestcenter/css3/multicolumn/column-containing-block-001.htm = IMAGE … … 422 423 BUGWK84778 : ietestcenter/css3/multicolumn/column-width-negative-001.htm = IMAGE 423 424 424 // Turn on blob support for the EFL port.425 BUGWK85363 : fast/dom/DOMURL/check-instanceof-domurl-functions.html = TEXT426 BUGWK85363 : fast/dom/call-a-constructor-as-a-function.html = TEXT427 BUGWK85363 : fast/dom/constructed-objects-prototypes.html = TEXT428 BUGWK85363 : fast/files/url-null.html = TEXT429 430 425 // Expose title direction in WebKit API 431 426 BUGWK58845 : fast/dom/title-directionality.html = FAIL -
trunk/Source/cmake/OptionsEfl.cmake
r118123 r118647 67 67 WEBKIT_OPTION_BEGIN() 68 68 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BATTERY_STATUS ON) 69 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BLOB ON) 69 70 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_DRAG_SUPPORT ON) 70 71 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_FAST_MOBILE_SCROLLING ON) -
trunk/Tools/ChangeLog
r118631 r118647 1 2012-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 1 12 2012-05-27 Benjamin Poulain <bpoulain@apple.com> 2 13 -
trunk/Tools/Scripts/webkitperl/FeatureList.pm
r118484 r118647 141 141 142 142 { 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 }, 144 144 145 145 { option => "channel-messaging", desc => "Toggle Channel Messaging support",
Note:
See TracChangeset
for help on using the changeset viewer.