[webkit-changes] [243433] trunk

2019-03-25 Thread gyuyoung . kim
Title: [243433] trunk








Revision 243433
Author gyuyoung@webkit.org
Date 2019-03-25 01:07:14 -0700 (Mon, 25 Mar 2019)


Log Message
Remove NavigatorContentUtils in WebCore/Modules
https://bugs.webkit.org/show_bug.cgi?id=196070

Reviewed by Alex Christensen.

NavigatorContentUtils was to support the custom scheme spec [1].
However, in WebKit side, no port has supported the feature in
WebKit layer after EFL port was removed. So there has been the
only IDL implementation of the NavigatorContentUtils in WebCore.
Source/_javascript_Core:

So we don't need to keep the implementation in WebCore anymore.

[1] https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

So we don't need to keep the implementation in WebCore anymore.

[1] https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers

No new tests because this patch is just to remove the feature.

* CMakeLists.txt:
* Modules/navigatorcontentutils/NavigatorContentUtils.cpp: Removed.
* Modules/navigatorcontentutils/NavigatorContentUtils.h: Removed.
* Modules/navigatorcontentutils/NavigatorContentUtils.idl: Removed.
* Modules/navigatorcontentutils/NavigatorContentUtilsClient.h: Removed.
* Sources.txt:

Source/WebCore/PAL:

So we don't need to keep the implementation in WebCore anymore.

[1] https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers

* Configurations/FeatureDefines.xcconfig:

Source/WebKit:

So we don't need to keep the implementation in WebCore anymore.

[1] https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers

* Configurations/FeatureDefines.xcconfig:
* WebProcess/WebCoreSupport/WebNavigatorContentUtilsClient.h: Removed.

Source/WebKitLegacy/mac:

So we don't need to keep the implementation in WebKit.

* Configurations/FeatureDefines.xcconfig:

Tools:

So we don't need to keep the implementation in WebCore anymore.

[1] https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers

* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

LayoutTests:

So we don't need to keep the implementation in WebCore anymore.

[1] https://html.spec.whatwg.org/multipage/system-state.html#custom-handlers

* fast/dom/NavigatorContentUtils/is-protocol-handler-registered-expected.txt: Removed.
* fast/dom/NavigatorContentUtils/is-protocol-handler-registered.html: Removed.
* fast/dom/NavigatorContentUtils/register-protocol-handler-expected.txt: Removed.
* fast/dom/NavigatorContentUtils/register-protocol-handler.html: Removed.
* fast/dom/NavigatorContentUtils/unregister-protocol-handler-expected.txt: Removed.
* fast/dom/NavigatorContentUtils/unregister-protocol-handler.html: Removed.
* platform/gtk/TestExpectations:
* platform/ios/TestExpectations:
* platform/mac/TestExpectations:
* platform/wincairo/TestExpectations:
* platform/wpe/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/gtk/TestExpectations
trunk/LayoutTests/platform/ios/TestExpectations
trunk/LayoutTests/platform/mac/TestExpectations
trunk/LayoutTests/platform/wincairo/TestExpectations
trunk/LayoutTests/platform/wpe/TestExpectations
trunk/Source/_javascript_Core/ChangeLog
trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig
trunk/Source/WebCore/CMakeLists.txt
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig
trunk/Source/WebCore/PAL/ChangeLog
trunk/Source/WebCore/PAL/Configurations/FeatureDefines.xcconfig
trunk/Source/WebCore/Sources.txt
trunk/Source/WebKit/ChangeLog
trunk/Source/WebKit/Configurations/FeatureDefines.xcconfig
trunk/Source/WebKitLegacy/mac/ChangeLog
trunk/Source/WebKitLegacy/mac/Configurations/FeatureDefines.xcconfig
trunk/Source/cmake/OptionsWin.cmake
trunk/Source/cmake/WebKitFeatures.cmake
trunk/Source/cmake/tools/vsprops/FeatureDefines.props
trunk/Source/cmake/tools/vsprops/FeatureDefinesCairo.props
trunk/Tools/ChangeLog
trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig


Removed Paths

trunk/LayoutTests/fast/dom/NavigatorContentUtils/
trunk/Source/WebCore/Modules/navigatorcontentutils/
trunk/Source/WebKit/WebProcess/WebCoreSupport/WebNavigatorContentUtilsClient.h




Diff

Modified: trunk/LayoutTests/ChangeLog (243432 => 243433)

--- trunk/LayoutTests/ChangeLog	2019-03-25 07:46:54 UTC (rev 243432)
+++ trunk/LayoutTests/ChangeLog	2019-03-25 08:07:14 UTC (rev 243433)
@@ -1,3 +1,30 @@
+2019-03-25  Gyuyoung Kim  
+
+Remove NavigatorContentUtils in WebCore/Modules
+https://bugs.webkit.org/show_bug.cgi?id=196070
+
+Reviewed by Alex Christensen.
+
+NavigatorContentUtils was to support the custom scheme spec [1].
+However, in WebKit side, no port has supported the feature in
+WebKit layer after EFL port was removed. So there has been the
+only IDL implementation of the NavigatorContentUtils in WebCore.
+So we don't need to keep the implementation in WebCore anym

[webkit-changes] [243057] trunk/Source/WebCore

2019-03-18 Thread gyuyoung . kim
Title: [243057] trunk/Source/WebCore








Revision 243057
Author gyuyoung@webkit.org
Date 2019-03-18 02:30:47 -0700 (Mon, 18 Mar 2019)


Log Message
[WPE][GTK] Fix a build warning because of missing to handle an enum value
https://bugs.webkit.org/show_bug.cgi?id=195876

Reviewed by Žan Doberšek.

When building WPE or GTK port, there is a build warning. The switch-case needs to
handle *Positioned* enum value as well in order to avoid the build warning.

* page/scrolling/nicosia/ScrollingTreeNicosia.cpp:
(WebCore::ScrollingTreeNicosia::createScrollingTreeNode): Add case ScrollingNodeType::Positioned.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/page/scrolling/nicosia/ScrollingTreeNicosia.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (243056 => 243057)

--- trunk/Source/WebCore/ChangeLog	2019-03-18 09:07:06 UTC (rev 243056)
+++ trunk/Source/WebCore/ChangeLog	2019-03-18 09:30:47 UTC (rev 243057)
@@ -1,3 +1,16 @@
+2019-03-18  Gyuyoung Kim  
+
+[WPE][GTK] Fix a build warning because of missing to handle an enum value
+https://bugs.webkit.org/show_bug.cgi?id=195876
+
+Reviewed by Žan Doberšek.
+
+When building WPE or GTK port, there is a build warning. The switch-case needs to
+handle *Positioned* enum value as well in order to avoid the build warning.
+
+* page/scrolling/nicosia/ScrollingTreeNicosia.cpp:
+(WebCore::ScrollingTreeNicosia::createScrollingTreeNode): Add case ScrollingNodeType::Positioned.
+
 2019-03-17  Yusuke Suzuki  
 
 REGRESSION: !vm.isInitializingObject() void* JSC::tryAllocateCellHelper JSC::Structure::create


Modified: trunk/Source/WebCore/page/scrolling/nicosia/ScrollingTreeNicosia.cpp (243056 => 243057)

--- trunk/Source/WebCore/page/scrolling/nicosia/ScrollingTreeNicosia.cpp	2019-03-18 09:07:06 UTC (rev 243056)
+++ trunk/Source/WebCore/page/scrolling/nicosia/ScrollingTreeNicosia.cpp	2019-03-18 09:30:47 UTC (rev 243057)
@@ -62,6 +62,8 @@
 return ScrollingTreeFixedNode::create(*this, nodeID);
 case ScrollingNodeType::Sticky:
 return ScrollingTreeStickyNode::create(*this, nodeID);
+case ScrollingNodeType::Positioned:
+RELEASE_ASSERT_NOT_REACHED();
 }
 
 RELEASE_ASSERT_NOT_REACHED();






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [219196] trunk/Tools

2017-07-06 Thread gyuyoung . kim
Title: [219196] trunk/Tools








Revision 219196
Author gyuyoung@webkit.org
Date 2017-07-06 07:45:17 -0700 (Thu, 06 Jul 2017)


Log Message
Unreviewed, update my email address.

Patch by Gyuyoung Kim <gyuyoung@webkit.org> on 2017-07-06

* Scripts/webkitpy/common/config/contributors.json:

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitpy/common/config/contributors.json




Diff

Modified: trunk/Tools/ChangeLog (219195 => 219196)

--- trunk/Tools/ChangeLog	2017-07-06 13:35:02 UTC (rev 219195)
+++ trunk/Tools/ChangeLog	2017-07-06 14:45:17 UTC (rev 219196)
@@ -1,3 +1,9 @@
+2017-07-06  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed, update my email address.
+
+* Scripts/webkitpy/common/config/contributors.json:
+
 2017-07-06  Charlie Turner  <ctur...@igalia.com>
 [GStreamer] vid.me videos do not play
 https://bugs.webkit.org/show_bug.cgi?id=172240


Modified: trunk/Tools/Scripts/webkitpy/common/config/contributors.json (219195 => 219196)

--- trunk/Tools/Scripts/webkitpy/common/config/contributors.json	2017-07-06 13:35:02 UTC (rev 219195)
+++ trunk/Tools/Scripts/webkitpy/common/config/contributors.json	2017-07-06 14:45:17 UTC (rev 219196)
@@ -2273,6 +2273,7 @@
"Gyuyoung Kim" : {
   "emails" : [
  "gyuyoung@webkit.org",
+ "gyuyo...@igalia.com",
  "gyuyoung@navercorp.com",
  "gyuyo...@gmail.com",
  "gyuyoung@samsung.com"






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [211351] trunk/LayoutTests

2017-01-29 Thread gyuyoung . kim
Title: [211351] trunk/LayoutTests








Revision 211351
Author gyuyoung@webkit.org
Date 2017-01-29 06:30:46 -0800 (Sun, 29 Jan 2017)


Log Message
[EFL] Gardening on 29th Jan.

Unreviewed EFL gardening. Update flaky tests and crash tests.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (211350 => 211351)

--- trunk/LayoutTests/ChangeLog	2017-01-29 10:06:30 UTC (rev 211350)
+++ trunk/LayoutTests/ChangeLog	2017-01-29 14:30:46 UTC (rev 211351)
@@ -1,3 +1,11 @@
+2017-01-29  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Gardening on 29th Jan.
+
+Unreviewed EFL gardening. Update flaky tests and crash tests.
+
+* platform/efl/TestExpectations:
+
 2017-01-28  David Kilzer  <ddkil...@apple.com>
 
 Migrate 97 *-disabled tests to use TestExpectations


Modified: trunk/LayoutTests/platform/efl/TestExpectations (211350 => 211351)

--- trunk/LayoutTests/platform/efl/TestExpectations	2017-01-29 10:06:30 UTC (rev 211350)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2017-01-29 14:30:46 UTC (rev 211351)
@@ -946,6 +946,20 @@
 webkit.org/b/167357 media/modern-media-controls/tracks-support/tracks-support-show-panel-fullscreen.html [ Skip ]
 webkit.org/b/167357 media/modern-media-controls/volume-support/volume-support-drag.html [ Skip ]
 
+animations/animation-callback-timestamp.html [ Skip ]
+fast/forms/multiple-form-submission-protection-mouse.html [ Skip ]
+fast/forms/validation-message-detached-iframe.html [ Skip ]
+fast/forms/validation-message-detached-iframe2.html [ Skip ]
+inspector/debugger/call-frame-function-name.html [ Skip ]
+inspector/debugger/stepping/stepping-misc.html [ Skip ]
+inspector/dom/customElementState.html [ Skip ]
+js/shared-array-buffer-webgl.html [ Skip ]
+media/media-source/media-source-error-crash.html [ Skip ]
+media/modern-media-controls/layout-node/subclassing.html [ Skip ]
+media/modern-media-controls/macos-inline-media-controls/macos-inline-media-controls-resize-with-hidden-controls-bar.html [ Skip ]
+media/modern-media-controls/tracks-panel/tracks-panel-hide-click-outside.html [ Skip ]
+media/modern-media-controls/tracks-panel/tracks-panel-hide.html [ Skip ]
+
 # There are too many timeout and crashes.
 imported/w3c/web-platform-tests [ Skip ]
 
@@ -1010,8 +1024,6 @@
 storage/indexeddb/modern/index-3-private.html [ Crash ]
 storage/indexeddb/modern/opendatabase-success-after-versionchange.html [ Crash ]
 
-
-
 fast/forms/submit-to-url-fragment.html [ Crash ]
 fast/frames/frame-dead-region.html [ Crash ]
 fast/history/history-traversal-is-asynchronous.html [ Crash ]
@@ -1087,6 +1099,49 @@
 Bug(EFL) svg/W3C-SVG-1.1/text-text-05-t.svg [ Crash ]
 Bug(EFL) svg/W3C-SVG-1.1/text-text-06-t.svg [ Crash ]
 
+Bug(EFL) fast/history/multiple-classes-visited.html [ Crash ]
+Bug(EFL) fast/history/page-cache-back-navigation-crash.html [ Crash ]
+Bug(EFL) http/tests/cache/history-only-cached-subresource-loads.html [ Crash ]
+Bug(EFL) http/tests/media/video-cross-site.html [ Crash ]
+Bug(EFL) http/tests/performance/performance-resource-timing-cached-entries.html [ Crash ]
+Bug(EFL) inspector/debugger/call-frame-this-nonstrict.html [ Crash ]
+Bug(EFL) inspector/debugger/continueUntilNextRunLoop.html [ Crash ]
+Bug(EFL) inspector/debugger/setBreakpoint-options-exception.html [ Crash ]
+Bug(EFL) inspector/debugger/setBreakpoint.html [ Crash ]
+Bug(EFL) media/crash-closing-page-with-media-as-plugin-fallback.html [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1-SE/interact-pointer-03-t.svg [ Crash ]
+
+
+Bug(EFL) fast/dom/message-port-deleted-by-accessor.html [ Crash ]
+Bug(EFL) fast/dom/window-inner-size-scaling.html [ Crash ]
+Bug(EFL) fast/events/page-visibility-iframe-propagation-test.html [ Crash ]
+Bug(EFL) fast/selectors/querySelector-in-range-crash.html [ Crash ]
+Bug(EFL) http/tests/security/xss-DENIED-xsl-document.xml [ Crash ]
+Bug(EFL) inspector/debugger/setBreakpoint-options-exception.html [ Crash ]
+Bug(EFL) inspector/sampling-profiler/eval-source-url.html [ Crash ]
+Bug(EFL) storage/indexeddb/modern/blob-simple-workers.html [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1-SE/painting-marker-05-f.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1-SE/painting-marker-06-f.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1-SE/painting-marker-07-f.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-12-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-13-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-14-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-15-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-16-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-17-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-18-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-19-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-20-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/animate-elem-21-t.svg [ Crash ]
+Bug(EFL) svg/W3C-SVG-1.1/ani

[webkit-changes] [211077] trunk/LayoutTests

2017-01-23 Thread gyuyoung . kim
Title: [211077] trunk/LayoutTests








Revision 211077
Author gyuyoung@webkit.org
Date 2017-01-23 22:07:28 -0800 (Mon, 23 Jan 2017)


Log Message
[EFL] Update timeout tests in media/modern-media-controls

Unreviewed EFL gardening.

* platform/efl/TestExpectations: Dozens of modern-media-controls tests are timeout.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (211076 => 211077)

--- trunk/LayoutTests/ChangeLog	2017-01-24 06:01:27 UTC (rev 211076)
+++ trunk/LayoutTests/ChangeLog	2017-01-24 06:07:28 UTC (rev 211077)
@@ -1,3 +1,11 @@
+2017-01-23  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Update timeout tests in media/modern-media-controls
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: Dozens of modern-media-controls tests are timeout.
+
 2017-01-23  Ryan Haddad  <ryanhad...@apple.com>
 
 LayoutTest gardening for modern-media-tests.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (211076 => 211077)

--- trunk/LayoutTests/platform/efl/TestExpectations	2017-01-24 06:01:27 UTC (rev 211076)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2017-01-24 06:07:28 UTC (rev 211077)
@@ -917,6 +917,35 @@
 inspector/debugger/stepping/stepping-literal-construction.html [ Skip ]
 inspector/debugger/stepping/stepping-try-catch-finally.html [ Skip ]
 
+webkit.org/b/167357 media/modern-media-controls/airplay-support/airplay-support.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/audio/audio-controls-buttons.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/fullscreen-support/fullscreen-support-click.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/fullscreen-support/ipad/fullscreen-support-tap.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/layout-node/children.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/layout-node/visible.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/macos-fullscreen-media-controls/macos-fullscreen-media-controls-drag.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/macos-fullscreen-media-controls/macos-fullscreen-media-controls-right-container-margin.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/media-controller/media-controller-fade-controls-when-entering-fullscreen.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/media-controller/media-controller-inline-to-fullscreen-to-inline.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/media-controller/media-controller-inline-to-fullscreen-to-pip-to-inline.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/mute-support/mute-support-button-click.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/pip-support/ipad/pip-support-tap.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/pip-support/pip-support-click.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/placard-support/ipad/placard-support-pip.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/placard-support/placard-support-airplay.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/placard-support/placard-support-pip.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/playback-support/playback-support-button-click.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/scrubber-support/ipad/scrubber-support-drag.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/seek-backward-support/seek-backward-support.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/seek-forward-support/seek-forward-support.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/start-support/start-support-click-to-start.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/tracks-panel/tracks-panel-hide-esc-key.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/tracks-panel/tracks-panel-select-track-with-keyboard.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/tracks-support/tracks-support-show-and-populate-panel.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/tracks-support/tracks-support-show-panel-after-dragging-controls.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/tracks-support/tracks-support-show-panel-fullscreen.html [ Skip ]
+webkit.org/b/167357 media/modern-media-controls/volume-support/volume-support-drag.html [ Skip ]
+
 # There are too many timeout and crashes.
 imported/w3c/web-platform-tests [ Skip ]
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [210696] trunk/LayoutTests

2017-01-12 Thread gyuyoung . kim
Title: [210696] trunk/LayoutTests








Revision 210696
Author gyuyoung@webkit.org
Date 2017-01-12 21:44:59 -0800 (Thu, 12 Jan 2017)


Log Message
[EFL] Skip to test imported/w3c/web-platform-tests

Unreviewed EFL gardening. There are too many timeout and crash.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (210695 => 210696)

--- trunk/LayoutTests/ChangeLog	2017-01-13 04:03:47 UTC (rev 210695)
+++ trunk/LayoutTests/ChangeLog	2017-01-13 05:44:59 UTC (rev 210696)
@@ -1,3 +1,11 @@
+2017-01-12  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Skip to test imported/w3c/web-platform-tests
+
+Unreviewed EFL gardening. There are too many timeout and crash.
+
+* platform/efl/TestExpectations:
+
 2017-01-12  Enrica Casucci  <enr...@apple.com>
 
 Do not allow selection of editable content when not editing.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (210695 => 210696)

--- trunk/LayoutTests/platform/efl/TestExpectations	2017-01-13 04:03:47 UTC (rev 210695)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2017-01-13 05:44:59 UTC (rev 210696)
@@ -917,39 +917,8 @@
 inspector/debugger/stepping/stepping-literal-construction.html [ Skip ]
 inspector/debugger/stepping/stepping-try-catch-finally.html [ Skip ]
 
-imported/w3c/web-platform-tests/IndexedDB/idbfactory_cmp.htm [ Skip ]
-imported/w3c/web-platform-tests/IndexedDB/idbindex_count3.htm [ Skip ]
-imported/w3c/web-platform-tests/IndexedDB/idbindex_get2.htm [ Skip ]
-imported/w3c/web-platform-tests/IndexedDB/idbkeyrange.htm [ Skip ]
-imported/w3c/web-platform-tests/IndexedDB/transaction-lifetime-empty.html [ Skip ]
-imported/w3c/web-platform-tests/custom-elements/reactions/DOMTokenList.html [ Skip ]
-imported/w3c/web-platform-tests/custom-elements/reactions/HTMLOutputElement.html [ Skip ]
-imported/w3c/web-platform-tests/dom/events/Event-type-empty.html [ Skip ]
-imported/w3c/web-platform-tests/dom/nodes/ChildNode-before.html [ Skip ]
-imported/w3c/web-platform-tests/dom/nodes/Element-firstElementChild-entity-xhtml.xhtml [ Skip ]
-imported/w3c/web-platform-tests/dom/nodes/Node-contains.html [ Skip ]
-imported/w3c/web-platform-tests/dom/nodes/Node-isEqualNode-xhtml.xhtml [ Skip ]
-imported/w3c/web-platform-tests/dom/nodes/getElementsByClassName-10.xml [ Skip ]
-imported/w3c/web-platform-tests/dom/nodes/getElementsByClassName-31.htm [ Skip ]
-imported/w3c/web-platform-tests/encoding/idlharness.html [ Skip ]
-imported/w3c/web-platform-tests/fetch/api/cors/cors-preflight-referrer-worker.html [ Skip ]
-imported/w3c/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/unload/002.html [ Skip ]
-imported/w3c/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/iframe_005.html [ Skip ]
-imported/w3c/web-platform-tests/html/dom/elements/global-attributes/dataset-get.html [ Skip ]
-imported/w3c/web-platform-tests/html/dom/interfaces.html [ Failure Timeout ]
-imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/fallback.basic.html [ Skip ]
-imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/initial.reset.same.html [ Skip ]
-imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/toBlob.png.html [ Skip ]
-imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/move_iframe_in_dom_03.html [ Skip ]
-imported/w3c/web-platform-tests/html/semantics/interactive-elements/the-dialog-element/dialog-showModal.html [ Skip ]
-imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/script-languages-02.html [ Skip ]
-imported/w3c/web-platform-tests/html/semantics/text-level-semantics/the-time-element/001.html [ Skip ]
-imported/w3c/web-platform-tests/html/syntax/parsing/html5lib_main-element.html [ Skip ]
-imported/w3c/web-platform-tests/html/webappapis/scripting/processing-model-2/runtime-error-same-origin.html [ Skip ]
-imported/w3c/web-platform-tests/html/webappapis/scripting/processing-model-2/window-onerror-runtime-error-throw.html [ Skip ]
-imported/w3c/web-platform-tests/shadow-dom/scroll-to-the-fragment-in-shadow-tree.html [ Skip ]
-imported/w3c/web-platform-tests/streams/readable-streams/pipe-through.https.html [ Skip ]
-imported/w3c/web-platform-tests/touch-events/historical.html [ Skip ]
+# There are too many timeout and crashes.
+imported/w3c/web-platform-tests [ Skip ]
 
 fast/canvas/webgl [ Skip ]
 webgl [ Skip ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [210632] trunk/LayoutTests

2017-01-12 Thread gyuyoung . kim
Title: [210632] trunk/LayoutTests








Revision 210632
Author gyuyoung@webkit.org
Date 2017-01-12 08:07:02 -0800 (Thu, 12 Jan 2017)


Log Message
[EFL] Gardening on 13th Jan.

Unreviewed EFL Gardening. Update crash and timeout tests after bumping Ubuntu version.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (210631 => 210632)

--- trunk/LayoutTests/ChangeLog	2017-01-12 13:56:05 UTC (rev 210631)
+++ trunk/LayoutTests/ChangeLog	2017-01-12 16:07:02 UTC (rev 210632)
@@ -1,5 +1,13 @@
 2017-01-12  Gyuyoung Kim  <gyuyoung@webkit.org>
 
+[EFL] Gardening on 13th Jan.
+
+Unreviewed EFL Gardening. Update crash and timeout tests after bumping Ubuntu version.
+
+* platform/efl/TestExpectations:
+
+2017-01-12  Gyuyoung Kim  <gyuyoung@webkit.org>
+
 [EFL] Second update TestExpectation file for Ubuntu 16.04.
 
 Unreviewed EFL gardening.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (210631 => 210632)

--- trunk/LayoutTests/platform/efl/TestExpectations	2017-01-12 13:56:05 UTC (rev 210631)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2017-01-12 16:07:02 UTC (rev 210632)
@@ -903,6 +903,54 @@
 inspector/debugger/stepping/stepping-literal-construction.html [ Skip ]
 inspector/debugger/stepping/stepping-try-catch-finally.html [ Skip ]
 
+http/tests/security/contentSecurityPolicy/worker-set-timeout-blocked.html [ Skip ]
+http/tests/ssl/referer-301.html [ Skip ]
+http/tests/ssl/referer-303.html [ Skip ]
+imported/blink/compositing/layer-creation/incremental-destruction.html [ Skip ]
+imported/blink/fast/canvas/canvas-clip-stack-persistence.html [ Skip ]
+imported/blink/svg/filters/feColorMatrix-setAttribute-crash1.html [ Skip ]
+imported/blink/svg/filters/feColorMatrix-setAttribute-crash2.html [ Skip ]
+imported/blink/svg/hittest/rect-miterlimit.html [ Skip ]
+inspector/debugger/break-on-exception.html [ Skip ]
+inspector/debugger/stepping/stepping-arrow-functions.html [ Skip ]
+inspector/debugger/stepping/stepping-function-calls.html [ Skip ]
+inspector/debugger/stepping/stepping-literal-construction.html [ Skip ]
+inspector/debugger/stepping/stepping-try-catch-finally.html [ Skip ]
+
+imported/w3c/web-platform-tests/IndexedDB/idbfactory_cmp.htm [ Skip ]
+imported/w3c/web-platform-tests/IndexedDB/idbindex_count3.htm [ Skip ]
+imported/w3c/web-platform-tests/IndexedDB/idbindex_get2.htm [ Skip ]
+imported/w3c/web-platform-tests/IndexedDB/idbkeyrange.htm [ Skip ]
+imported/w3c/web-platform-tests/IndexedDB/transaction-lifetime-empty.html [ Skip ]
+imported/w3c/web-platform-tests/custom-elements/reactions/DOMTokenList.html [ Skip ]
+imported/w3c/web-platform-tests/custom-elements/reactions/HTMLOutputElement.html [ Skip ]
+imported/w3c/web-platform-tests/dom/events/Event-type-empty.html [ Skip ]
+imported/w3c/web-platform-tests/dom/nodes/ChildNode-before.html [ Skip ]
+imported/w3c/web-platform-tests/dom/nodes/Element-firstElementChild-entity-xhtml.xhtml [ Skip ]
+imported/w3c/web-platform-tests/dom/nodes/Node-contains.html [ Skip ]
+imported/w3c/web-platform-tests/dom/nodes/Node-isEqualNode-xhtml.xhtml [ Skip ]
+imported/w3c/web-platform-tests/dom/nodes/getElementsByClassName-10.xml [ Skip ]
+imported/w3c/web-platform-tests/dom/nodes/getElementsByClassName-31.htm [ Skip ]
+imported/w3c/web-platform-tests/encoding/idlharness.html [ Skip ]
+imported/w3c/web-platform-tests/fetch/api/cors/cors-preflight-referrer-worker.html [ Skip ]
+imported/w3c/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/unload/002.html [ Skip ]
+imported/w3c/web-platform-tests/html/dom/dynamic-markup-insertion/document-write/iframe_005.html [ Skip ]
+imported/w3c/web-platform-tests/html/dom/elements/global-attributes/dataset-get.html [ Skip ]
+imported/w3c/web-platform-tests/html/dom/interfaces.html [ Failure Timeout ]
+imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/fallback.basic.html [ Skip ]
+imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/initial.reset.same.html [ Skip ]
+imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/toBlob.png.html [ Skip ]
+imported/w3c/web-platform-tests/html/semantics/embedded-content/the-iframe-element/move_iframe_in_dom_03.html [ Skip ]
+imported/w3c/web-platform-tests/html/semantics/interactive-elements/the-dialog-element/dialog-showModal.html [ Skip ]
+imported/w3c/web-platform-tests/html/semantics/scripting-1/the-script-element/script-languages-02.html [ Skip ]
+imported/w3c/web-platform-tests/html/semantics/text-level-semantics/the-time-element/001.html [ Skip ]
+imported/w3c/web-platform-tests/html/syntax/parsing/html5lib_main-element.html [ Skip ]
+imported/w3c/web-platform-tests/html/webappapis/scripting/processing-model-2/runtime-error-same-origin.html [ Skip ]
+imported/w3c/web-p

[webkit-changes] [210192] trunk/LayoutTests

2016-12-28 Thread gyuyoung . kim
Title: [210192] trunk/LayoutTests








Revision 210192
Author gyuyoung@webkit.org
Date 2016-12-28 01:59:45 -0800 (Wed, 28 Dec 2016)


Log Message
[EFL] Gardening on 28th Dec.

Unreviewed EFL gardening.

* platform/efl/TestExpectations: Mark failing tests to Failure or ImageOnlyFailure.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (210191 => 210192)

--- trunk/LayoutTests/ChangeLog	2016-12-28 09:47:50 UTC (rev 210191)
+++ trunk/LayoutTests/ChangeLog	2016-12-28 09:59:45 UTC (rev 210192)
@@ -1,3 +1,11 @@
+2016-12-28  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Gardening on 28th Dec.
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: Mark failing tests to Failure or ImageOnlyFailure.
+
 2016-12-27  Gyuyoung Kim  <gyuyoung@navercorp.com>
 
 [EFL] Gardening on 27th Dec.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (210191 => 210192)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-12-28 09:47:50 UTC (rev 210191)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-12-28 09:59:45 UTC (rev 210192)
@@ -2415,6 +2415,78 @@
 webkit.org/b/149202 fast/forms/input-appearance-spinbutton.html [ Failure ]
 webkit.org/b/149202 fast/forms/listbox-scrollbar-hit-test.html [ Failure ]
 
+# Below tests need to have own expectataion files after r190893 and r191119.
+css2.1/tables/table-anonymous-objects-015.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-016.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-023.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-024.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-035.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-036.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-037.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-038.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-045.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-046.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-047.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-048.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-049.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-050.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-055.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-056.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-091.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-092.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-099.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-100.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-103.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-104.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-105.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-106.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-107.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-108.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-109.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-110.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-111.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-112.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-113.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-114.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-115.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-116.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-117.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-118.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-119.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-120.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-121.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-122.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-123.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-124.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-139.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-140.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-149.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-150.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-155.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-156.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-159.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-160.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-165.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-166.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-177.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-178.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-179.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-180.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-181.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-189.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-190.xht [ Missing ]
+css2.1/tables/table-anonymous-objects-191.xht [

[webkit-changes] [210153] trunk/LayoutTests

2016-12-27 Thread gyuyoung . kim
Title: [210153] trunk/LayoutTests








Revision 210153
Author gyuyoung@webkit.org
Date 2016-12-27 00:04:25 -0800 (Tue, 27 Dec 2016)


Log Message
[EFL] Gardening on 27th Dec.

Unreviewed EFL gardening.

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-12-27

* platform/efl/TestExpectations: Mark failing tests to Timeout or Skip.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (210152 => 210153)

--- trunk/LayoutTests/ChangeLog	2016-12-27 03:14:31 UTC (rev 210152)
+++ trunk/LayoutTests/ChangeLog	2016-12-27 08:04:25 UTC (rev 210153)
@@ -1,3 +1,11 @@
+2016-12-27  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+[EFL] Gardening on 27th Dec.
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: Mark failing tests to Timeout or Skip.
+
 2016-12-26  Zalan Bujtas  <za...@apple.com>
 
 ASSERTION FAILED: !rect.isEmpty() in WebCore::GraphicsContext::drawRect


Modified: trunk/LayoutTests/platform/efl/TestExpectations (210152 => 210153)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-12-27 03:14:31 UTC (rev 210152)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-12-27 08:04:25 UTC (rev 210153)
@@ -391,6 +391,72 @@
 # GTK port only supports it now.
 mathml/presentation/bug159513.html [ Skip ]
 
+crypto/workers/subtle/aes-cbc-import-key-decrypt.html [ Skip ]
+crypto/workers/subtle/aes-cbc-import-key-encrypt.html [ Skip ]
+crypto/workers/subtle/aes-cbc-import-key-unwrap-key.html [ Skip ]
+crypto/workers/subtle/aes-cbc-import-key-wrap-key.html [ Skip ]
+crypto/workers/subtle/aes-kw-import-key-unwrap-key.html [ Skip ]
+crypto/workers/subtle/aes-kw-import-key-wrap-key.html [ Skip ]
+crypto/workers/subtle/rsa-export-pkcs8-key.html [ Skip ]
+crypto/workers/subtle/rsa-export-spki-key.html [ Skip ]
+crypto/workers/subtle/rsa-generate-export-key-jwk.html [ Skip ]
+crypto/workers/subtle/rsa-import-jwk-private-key.html [ Skip ]
+crypto/workers/subtle/rsa-import-jwk-public-key.html [ Skip ]
+crypto/workers/subtle/rsa-import-pkcs8-key.html [ Skip ]
+crypto/workers/subtle/rsa-import-spki-key.html [ Skip ]
+crypto/workers/subtle/rsa-oaep-import-key-decrypt.html [ Skip ]
+crypto/workers/subtle/rsa-oaep-import-key-encrypt.html [ Skip ]
+crypto/workers/subtle/rsa-oaep-import-key-unwrap-key.html [ Skip ]
+crypto/workers/subtle/rsa-oaep-import-key-wrap-key.html [ Skip ]
+crypto/workers/subtle/rsaes-pkcs1-v1_5-import-key-decrypt.html [ Skip ]
+crypto/workers/subtle/rsaes-pkcs1-v1_5-import-key-encrypt.html [ Skip ]
+crypto/workers/subtle/rsassa-pkcs1-v1_5-import-key-sign.html [ Skip ]
+crypto/workers/subtle/rsassa-pkcs1-v1_5-import-key-verify.html [ Skip ]
+
+fast/events/before-input-prevent-insert-replacement.html [ Skip ]
+fast/events/input-event-insert-replacement.html [ Skip ]
+fast/forms/state-restore-to-non-edited-controls.html [ Skip ]
+fast/forms/validation-bubble-disappears-when-input-detached.html [ Skip ]
+fast/forms/validation-bubble-disappears-when-input-moved.html [ Skip ]
+fast/forms/validation-bubble-disappears-when-input-no-longer-visible.html [ Skip ]
+fast/forms/validation-custom-message.html [ Skip ]
+fast/forms/validation-messages.html [ Skip ]
+fast/history/page-cache-media-source-closed-2.html [ Skip ]
+fast/history/page-cache-media-source-closed.html [ Skip ]
+fast/history/page-cache-media-source-opened.html [ Skip ]
+http/tests/appcache/main-resource-fallback-for-network-error-crash.html [ Skip ]
+http/tests/media/clearkey/clear-key-hls-aes128.html [ Skip ]
+http/tests/media/media-source/mediasource-play-then-seek-back-with-remote-control.html [ Skip ]
+http/tests/media/track-in-band-hls-metadata.html [ Skip ]
+
+fast/dom/Range/detach-range-during-deletecontents.html [ Skip ]
+fast/events/before-input-prevent-insert-replacement.html [ Skip ]
+fast/events/input-event-insert-replacement.html [ Skip ]
+fast/forms/validation-bubble-disappears-when-input-detached.html [ Skip ]
+fast/forms/validation-bubble-disappears-when-input-moved.html [ Skip ]
+fast/forms/validation-bubble-disappears-when-input-no-longer-visible.html [ Skip ]
+fast/forms/validation-custom-message.html [ Skip ]
+fast/forms/validation-messages.html [ Skip ]
+fast/history/page-cache-media-source-closed-2.html [ Skip ]
+fast/history/page-cache-media-source-opened.html [ Skip ]
+fast/parser/xhtml-dom-character-data-modified-crash.html [ Skip ]
+http/tests/appcache/main-resource-fallback-for-network-error-crash.html [ Skip ]
+http/tests/media/media-source/mediasource-play-then-seek-back-with-remote-control.html [ Skip ]
+http/tests/media/modern-media-controls/skip-back-support/skip-back-support-button-click.html [ Skip ]
+http/tests/media/video-play-stall-seek.html [ Skip ]
+http/tests/media/video-play-waiting.html [ Skip ]
+http/tests/navigation/navigation-dismisses-validation-bubbles.html [ Skip ]
+http/tests/ssl/media-stream/get-user-media-different-host.html 

[webkit-changes] [209310] trunk

2016-12-04 Thread gyuyoung . kim
Title: [209310] trunk








Revision 209310
Author gyuyoung@webkit.org
Date 2016-12-04 01:20:35 -0800 (Sun, 04 Dec 2016)


Log Message
Fix a build break on EFL since r209303.

Unreviewed build fix.

Source/WebCore:

* bindings/js/SerializedScriptValue.cpp:
(WebCore::exceptionForSerializationFailure): Add a return in the end of function.

Tools:

* Scripts/webkitperl/FeatureList.pm: Disable SS Device Adaptation temporarily.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/bindings/js/SerializedScriptValue.cpp
trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitperl/FeatureList.pm




Diff

Modified: trunk/Source/WebCore/ChangeLog (209309 => 209310)

--- trunk/Source/WebCore/ChangeLog	2016-12-04 00:28:49 UTC (rev 209309)
+++ trunk/Source/WebCore/ChangeLog	2016-12-04 09:20:35 UTC (rev 209310)
@@ -1,3 +1,12 @@
+2016-12-04  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Fix a build break on EFL since r209303.
+
+Unreviewed build fix.
+
+* bindings/js/SerializedScriptValue.cpp:
+(WebCore::exceptionForSerializationFailure): Add a return in the end of function.
+
 2016-12-03  Dan Bernstein  <m...@apple.com>
 
 [Cocoa] Expose InjectedBundlePageEditorClient via the Objective-C bundle SPI


Modified: trunk/Source/WebCore/bindings/js/SerializedScriptValue.cpp (209309 => 209310)

--- trunk/Source/WebCore/bindings/js/SerializedScriptValue.cpp	2016-12-04 00:28:49 UTC (rev 209309)
+++ trunk/Source/WebCore/bindings/js/SerializedScriptValue.cpp	2016-12-04 09:20:35 UTC (rev 209310)
@@ -2732,6 +2732,8 @@
 ASSERT_NOT_REACHED();
 return Exception { TypeError };
 }
+ASSERT_NOT_REACHED();
+return Exception { TypeError };
 }
 
 RefPtr SerializedScriptValue::create(ExecState& exec, JSValue value, SerializationErrorMode throwExceptions)


Modified: trunk/Tools/ChangeLog (209309 => 209310)

--- trunk/Tools/ChangeLog	2016-12-04 00:28:49 UTC (rev 209309)
+++ trunk/Tools/ChangeLog	2016-12-04 09:20:35 UTC (rev 209310)
@@ -1,3 +1,11 @@
+2016-12-04  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Fix a build break on EFL since r209303.
+
+Unreviewed build fix.
+
+* Scripts/webkitperl/FeatureList.pm: Disable SS Device Adaptation temporarily.
+
 2016-12-03  Yusuke Suzuki  <utatane@gmail.com>
 
 Refactor SymbolImpl layout


Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (209309 => 209310)

--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2016-12-04 00:28:49 UTC (rev 209309)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2016-12-04 09:20:35 UTC (rev 209310)
@@ -198,7 +198,7 @@
   define => "ENABLE_CSS_COMPOSITING", default => isAppleWebKit(), value => \$cssCompositingSupport },
 
 { option => "css-device-adaptation", desc => "Toggle CSS Device Adaptation support",
-  define => "ENABLE_CSS_DEVICE_ADAPTATION", default => isEfl(), value => \$cssDeviceAdaptation },
+  define => "ENABLE_CSS_DEVICE_ADAPTATION", default => 0, value => \$cssDeviceAdaptation },
 
 { option => "css-grid-layout", desc => "Toggle CSS Grid Layout support",
   define => "ENABLE_CSS_GRID_LAYOUT", default => 1, value => \$cssGridLayoutSupport },






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [209174] trunk/Source/WebCore

2016-11-30 Thread gyuyoung . kim
Title: [209174] trunk/Source/WebCore








Revision 209174
Author gyuyoung@webkit.org
Date 2016-11-30 21:25:24 -0800 (Wed, 30 Nov 2016)


Log Message
Build break when using --minimal
https://bugs.webkit.org/show_bug.cgi?id=165238

Reviewed by Darin Adler.

* css/parser/CSSSelectorParser.cpp:
(WebCore::CSSSelectorParser::consumePseudo): Use #if ENABLE(VIDEO_TRACK) guard.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/css/parser/CSSSelectorParser.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (209173 => 209174)

--- trunk/Source/WebCore/ChangeLog	2016-12-01 04:32:50 UTC (rev 209173)
+++ trunk/Source/WebCore/ChangeLog	2016-12-01 05:25:24 UTC (rev 209174)
@@ -1,3 +1,13 @@
+2016-11-30  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Build break when using --minimal
+https://bugs.webkit.org/show_bug.cgi?id=165238
+
+Reviewed by Darin Adler.
+
+* css/parser/CSSSelectorParser.cpp:
+(WebCore::CSSSelectorParser::consumePseudo): Use #if ENABLE(VIDEO_TRACK) guard.
+
 2016-11-30  Antoine Quint  <grao...@apple.com>
 
 [Modern Media Controls] Add support for right-to-left layouts


Modified: trunk/Source/WebCore/css/parser/CSSSelectorParser.cpp (209173 => 209174)

--- trunk/Source/WebCore/css/parser/CSSSelectorParser.cpp	2016-12-01 04:32:50 UTC (rev 209173)
+++ trunk/Source/WebCore/css/parser/CSSSelectorParser.cpp	2016-12-01 05:25:24 UTC (rev 209174)
@@ -533,6 +533,7 @@
 selector = std::unique_ptr(CSSParserSelector::parsePseudoClassSelectorFromStringView(value));
 else {
 selector = std::unique_ptr(CSSParserSelector::parsePseudoElementSelectorFromStringView(value));
+#if ENABLE(VIDEO_TRACK)
 if (selector && selector->match() == CSSSelector::PseudoElement && selector->pseudoElementType() == CSSSelector::PseudoElementWebKitCustom) {
 // FIXME-NEWPARSER: The old parser treats cue as two pseudo-element types, because it
 // is unable to handle a dual pseudo-element (one that can be both an ident or a
@@ -546,6 +547,7 @@
 if (token.type() == FunctionToken && value.startsWithIgnoringASCIICase("cue"))
 selector->setPseudoElementType(CSSSelector::PseudoElementCue);
 }
+#endif
 }
 
 if (!selector || (selector->match() == CSSSelector::PseudoElement && m_disallowPseudoElements))






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [208440] trunk

2016-11-09 Thread gyuyoung . kim
Title: [208440] trunk








Revision 208440
Author gyuyoung@webkit.org
Date 2016-11-09 10:24:09 -0800 (Wed, 09 Nov 2016)


Log Message
[EFL] Use libgcrypt instead of GnuTLS for CryptoDigest
https://bugs.webkit.org/show_bug.cgi?id=164461

Reviewed by Michael Catanzaro.

.:

* Source/cmake/OptionsEfl.cmake: Find LibGcrypt package instead of GnuTLS.

Source/WebCore:

As GTK port in r208297, EFL port starts to use libgcrypt instead of GnuTLS as well.

No new tests, no behavior change.

* PlatformEfl.cmake:

Tools:

As GTK port in r208297, EFL port starts to use libgcrypt instead of GnuTLS as well.

* efl/install-dependencies: Add libgcript package dependecy.

Modified Paths

trunk/ChangeLog
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/PlatformEfl.cmake
trunk/Source/cmake/OptionsEfl.cmake
trunk/Tools/ChangeLog
trunk/Tools/efl/install-dependencies




Diff

Modified: trunk/ChangeLog (208439 => 208440)

--- trunk/ChangeLog	2016-11-09 18:23:27 UTC (rev 208439)
+++ trunk/ChangeLog	2016-11-09 18:24:09 UTC (rev 208440)
@@ -1,3 +1,12 @@
+2016-11-09  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Use libgcrypt instead of GnuTLS for CryptoDigest
+https://bugs.webkit.org/show_bug.cgi?id=164461
+
+Reviewed by Michael Catanzaro.
+
+* Source/cmake/OptionsEfl.cmake: Find LibGcrypt package instead of GnuTLS.
+
 2016-11-05  Konstantin Tokarev  <annu...@yandex.ru>
 
 [MinGW] Fixed C99/C++11 format attributes in printf-like functions


Modified: trunk/Source/WebCore/ChangeLog (208439 => 208440)

--- trunk/Source/WebCore/ChangeLog	2016-11-09 18:23:27 UTC (rev 208439)
+++ trunk/Source/WebCore/ChangeLog	2016-11-09 18:24:09 UTC (rev 208440)
@@ -1,3 +1,16 @@
+2016-11-09  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Use libgcrypt instead of GnuTLS for CryptoDigest
+https://bugs.webkit.org/show_bug.cgi?id=164461
+
+Reviewed by Michael Catanzaro.
+
+As GTK port in r208297, EFL port starts to use libgcrypt instead of GnuTLS as well.
+
+No new tests, no behavior change.
+
+* PlatformEfl.cmake:
+
 2016-11-09  Ryan Haddad  <ryanhad...@apple.com>
 
 Unreviewed, rolling out r208422.


Modified: trunk/Source/WebCore/PlatformEfl.cmake (208439 => 208440)

--- trunk/Source/WebCore/PlatformEfl.cmake	2016-11-09 18:23:27 UTC (rev 208439)
+++ trunk/Source/WebCore/PlatformEfl.cmake	2016-11-09 18:24:09 UTC (rev 208440)
@@ -91,7 +91,7 @@
 
 platform/audio/efl/AudioBusEfl.cpp
 
-platform/crypto/gnutls/CryptoDigestGnuTLS.cpp
+platform/crypto/gcrypt/CryptoDigestGCrypt.cpp
 
 platform/efl/CursorEfl.cpp
 platform/efl/DragDataEfl.cpp
@@ -276,8 +276,8 @@
 ${GLIB_GIO_LIBRARIES}
 ${GLIB_GOBJECT_LIBRARIES}
 ${GLIB_LIBRARIES}
-${GNUTLS_LIBRARIES}
 ${HARFBUZZ_LIBRARIES}
+${LIBGCRYPT_LIBRARIES}
 ${LIBSOUP_LIBRARIES}
 ${LIBXML2_LIBRARIES}
 ${LIBXSLT_LIBRARIES}
@@ -302,7 +302,7 @@
 ${FREETYPE2_INCLUDE_DIRS}
 ${GEOCLUE_INCLUDE_DIRS}
 ${GIO_UNIX_INCLUDE_DIRS}
-${GNUTLS_INCLUDE_DIRS}
+${LIBGCRYPT_INCLUDE_DIRS}
 ${LIBXML2_INCLUDE_DIR}
 ${LIBXSLT_INCLUDE_DIR}
 ${SQLITE_INCLUDE_DIR}
@@ -423,9 +423,10 @@
 crypto/algorithms/CryptoAlgorithmSHA384.cpp
 crypto/algorithms/CryptoAlgorithmSHA512.cpp
 
+crypto/gcrypt/CryptoAlgorithmHMACGCrypt.cpp
+
 crypto/gnutls/CryptoAlgorithmAES_CBCGnuTLS.cpp
 crypto/gnutls/CryptoAlgorithmAES_KWGnuTLS.cpp
-crypto/gnutls/CryptoAlgorithmHMACGnuTLS.cpp
 crypto/gnutls/CryptoAlgorithmRSAES_PKCS1_v1_5GnuTLS.cpp
 crypto/gnutls/CryptoAlgorithmRSASSA_PKCS1_v1_5GnuTLS.cpp
 crypto/gnutls/CryptoAlgorithmRSA_OAEPGnuTLS.cpp


Modified: trunk/Source/cmake/OptionsEfl.cmake (208439 => 208440)

--- trunk/Source/cmake/OptionsEfl.cmake	2016-11-09 18:23:27 UTC (rev 208439)
+++ trunk/Source/cmake/OptionsEfl.cmake	2016-11-09 18:24:09 UTC (rev 208440)
@@ -139,7 +139,7 @@
 # Begin to find necessary packages for EFL port.
 find_package(Cairo 1.10.2 REQUIRED)
 find_package(Fontconfig 2.8.0 REQUIRED)
-find_package(GnuTLS 3.0.0 REQUIRED)
+find_package(LibGcrypt 1.6.0 REQUIRED)
 find_package(LibXml2 2.8.0 REQUIRED)
 find_package(LibXslt 1.1.7 REQUIRED)
 find_package(ICU REQUIRED)


Modified: trunk/Tools/ChangeLog (208439 => 208440)

--- trunk/Tools/ChangeLog	2016-11-09 18:23:27 UTC (rev 208439)
+++ trunk/Tools/ChangeLog	2016-11-09 18:24:09 UTC (rev 208440)
@@ -1,5 +1,16 @@
 2016-11-09  Gyuyoung Kim  <gyuyoung@webkit.org>
 
+[EFL] Use libgcrypt instead of GnuTLS for CryptoDigest
+https://bugs.webkit.org/show_bug.cgi?id=164461
+
+Reviewed by Michael Catanzaro.
+
+As GTK port in r208297, EFL port starts to use libgcrypt instead of GnuTLS as well.
+
+* efl/install-dependencies: Add libgcript package dependecy.
+
+2016-11-09  Gyuyoung Kim  <gyuyoung@webkit.org>
+
 [EFL] Remove unused function in MiniBrows

[webkit-changes] [208439] trunk/Tools

2016-11-09 Thread gyuyoung . kim
Title: [208439] trunk/Tools








Revision 208439
Author gyuyoung@webkit.org
Date 2016-11-09 10:23:27 -0800 (Wed, 09 Nov 2016)


Log Message
[EFL] Remove unused function in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=164398

Reviewed by Darin Adler.

* MiniBrowser/efl/main.c:
(window_find_with_elm_window): Deleted because it is not used anywhere.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/MiniBrowser/efl/main.c




Diff

Modified: trunk/Tools/ChangeLog (208438 => 208439)

--- trunk/Tools/ChangeLog	2016-11-09 18:07:07 UTC (rev 208438)
+++ trunk/Tools/ChangeLog	2016-11-09 18:23:27 UTC (rev 208439)
@@ -1,3 +1,13 @@
+2016-11-09  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Remove unused function in MiniBrowser
+https://bugs.webkit.org/show_bug.cgi?id=164398
+
+Reviewed by Darin Adler.
+
+* MiniBrowser/efl/main.c:
+(window_find_with_elm_window): Deleted because it is not used anywhere.
+
 2016-11-09  Chris Dumez  <cdu...@apple.com>
 
 [WK2][NETWORK_SESSION] Add support for downloading file backed blobs


Modified: trunk/Tools/MiniBrowser/efl/main.c (208438 => 208439)

--- trunk/Tools/MiniBrowser/efl/main.c	2016-11-09 18:07:07 UTC (rev 208438)
+++ trunk/Tools/MiniBrowser/efl/main.c	2016-11-09 18:23:27 UTC (rev 208439)
@@ -212,22 +212,6 @@
 static Browser_Window *window_create(Ewk_View_Configuration* configuration, int width, int height);
 static Ewk_View_Configuration* configuration();
 
-static Browser_Window *window_find_with_elm_window(Evas_Object *elm_window)
-{
-   Eina_List *l;
-   void *data;
-
-   if (!elm_window)
- return NULL;
-
-   EINA_LIST_FOREACH(windows, l, data) {
- Browser_Window *window = (Browser_Window *)data;
- if (window->elm_window == elm_window)
-   return window;
-   }
-   return NULL;
-}
-
 static Browser_Window *window_find_with_ewk_view(Evas_Object *ewk_view)
 {
Eina_List *l;






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [208138] trunk/LayoutTests

2016-10-30 Thread gyuyoung . kim
Title: [208138] trunk/LayoutTests








Revision 208138
Author gyuyoung@webkit.org
Date 2016-10-30 22:22:42 -0700 (Sun, 30 Oct 2016)


Log Message
[EFL] Skip media tests because timeout happens on many media tests.

Unreviewed EFL gardening.

Treat the media folder to *Skip* temporarily.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (208137 => 208138)

--- trunk/LayoutTests/ChangeLog	2016-10-31 00:48:18 UTC (rev 208137)
+++ trunk/LayoutTests/ChangeLog	2016-10-31 05:22:42 UTC (rev 208138)
@@ -1,3 +1,13 @@
+2016-10-30  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Skip media tests because timeout happens on many media tests.
+
+Unreviewed EFL gardening.
+
+Treat the media folder to *Skip* temporarily.
+
+* platform/efl/TestExpectations:
+
 2016-10-30  Darin Adler  <da...@apple.com>
 
 Move Element, NamedNodeMap, and DOMStringMap from ExceptionCode to Exception


Modified: trunk/LayoutTests/platform/efl/TestExpectations (208137 => 208138)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-31 00:48:18 UTC (rev 208137)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-31 05:22:42 UTC (rev 208138)
@@ -46,12 +46,6 @@
 # EFL's LayoutTestController does not implement keepWebHistory
 fast/history/window-open.html
 
-# EFL's LayoutTestController does not implement shadowPseudoId
-media/video-volume-slider.html
-
-# BUG: Captions support needed in the media engine (via GTK+)
-media/media-captions.html
-
 # The EFL port has no support for detecting slow unload handlers
 fast/dom/Window/slow-unload-handler.html
 fast/dom/Window/slow-unload-handler-only-frame-is-stopped.html
@@ -135,16 +129,6 @@
 # https://bugs.webkit.org/show_bug.cgi?id=68278
 http/tests/history/back-with-fragment-change.php
 
-# Failing http tests (via GTK+)
-http/tests/loading/bad-scheme-subframe.html
-http/tests/media/video-play-stall-seek.html
-http/tests/media/video-play-stall.html
-http/tests/media/video-play-waiting.html
-http/tests/security/feed-urls-from-remote.html
-http/tests/media/video-buffered-range-contains-currentTime.html [ Timeout ]
-media/airplay-autoplay.html [ Timeout ]
-media/media-fullscreen-return-to-inline.html [ Timeout ]
-
 # --
 # Tests which need investigation
 # --
@@ -227,9 +211,6 @@
 fast/text/international/bidi-menulist.html
 fast/text/international/pop-up-button-text-alignment-and-direction.html
 
-# BUG: video sizes not being set properly
-media/video-size-intrinsic-scale.html
-
 # BUG: the theme probably has a different thumb value
 fast/forms/range/slider-zoomed.html
 
@@ -566,11 +547,6 @@
 # ENABLE_GAMEPAD not enabled.
 webkit.org/b/134718 gamepad [ Skip ]
 
-# These tests are for an obsolete version of the EME spec.
-media/encrypted-media/encrypted-media-events.html [ WontFix ]
-media/encrypted-media/encrypted-media-not-loaded.html [ WontFix ]
-media/encrypted-media/encrypted-media-syntax.html [ WontFix ]
-
 # No support for Filters Level 2 on EFL yet
 Bug(EFL) css3/filters/backdrop [ Skip ]
 
@@ -580,9 +556,6 @@
 # EFL port doesn't support attachment feature yet. It was added by r180193, r181056, r181114, r181118 and r181418.
 webkit.org/b/141894 fast/attachment [ Skip ]
 
-# EFL port doesn't fully support EME yet.
-webkit.org/b/141959 http/tests/media/clearkey/clear-key-hls-aes128.html [ Crash ]
-
 # Need a new baseline for EFL port. It was added by r72173.
 Bug(EFL) fast/css/line-height-determined-by-primary-font.html [ Failure ]
 
@@ -614,13 +587,6 @@
 webkit.org/b/105870 webaudio/audionode-channel-rules.html [ Pass Crash ]
 webkit.org/b/105870 webaudio/mediastreamaudiosourcenode.html [ Crash Timeout ]
 
-# Media regressions after updating to gstreamer 1.0.
-webkit.org/b/104809 media/video-src.html [ Crash Pass ]
-webkit.org/b/104809 media/video-src-blob.html [ Crash Failure Timeout ]
-webkit.org/b/104809 media/video-src-change.html [ Crash Pass Failure ]
-webkit.org/b/104809 media/remove-from-document.html [ Crash Pass Failure ]
-webkit.org/b/104809 media/video-timeupdate-during-playback.html [ Crash Pass Failure ]
-
 # Sometimes crashes in PlatformContextCairo::drawSurfaceToContext().
 webkit.org/b/116025 compositing/video/video-background-color.html [ Crash Pass Failure ]
 
@@ -774,8 +740,6 @@
 webkit.org/b/131729 http/tests/misc/acid3.html [ Failure Pass ]
 webkit.org/b/131729 http/tests/misc/image-blocked-src-change.html [ Failure Pass ]
 webkit.org/b/131729 http/tests/misc/slow-loading-image-in-pattern.html [ Failure ]
-webkit.org/b/131729 http/tests/media/video-error-abort.html [ Crash Pass ]
-webkit.org/b/131729 http/tests/media/video-redirect.html [ Crash Pass ]
 webkit.org/b/131729 http/tests/security/cross-origin-plugin-private-browsing-toggled.html [ Failure ]
 webkit.org/b/131729 http/tests/security/drag-drop-local-file.html [ Fai

[webkit-changes] [208126] trunk/LayoutTests

2016-10-30 Thread gyuyoung . kim
Title: [208126] trunk/LayoutTests








Revision 208126
Author gyuyoung@webkit.org
Date 2016-10-30 08:15:15 -0700 (Sun, 30 Oct 2016)


Log Message
[EFL] Remove duplicated media/media-source tests in TestExpectations

Unreviewed EFL gardening.

Tests of media/media-source have caused timeout on EFL layout test. However
it hasn't been marked to *Skip* because some tests are multiple marked.
So this patch cleans up it, and skip media/media-source for a while.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (208125 => 208126)

--- trunk/LayoutTests/ChangeLog	2016-10-30 13:42:39 UTC (rev 208125)
+++ trunk/LayoutTests/ChangeLog	2016-10-30 15:15:15 UTC (rev 208126)
@@ -1,5 +1,17 @@
 2016-10-30  Gyuyoung Kim  <gyuyoung@webkit.org>
 
+[EFL] Remove duplicated media/media-source tests in TestExpectations
+
+Unreviewed EFL gardening.
+
+Tests of media/media-source have caused timeout on EFL layout test. However
+it hasn't been marked to *Skip* because some tests are multiple marked.
+So this patch cleans up it, and skip media/media-source for a while.
+
+* platform/efl/TestExpectations:
+
+2016-10-30  Gyuyoung Kim  <gyuyoung@webkit.org>
+
 Unreviewed EFL gardening. Mark some tests to Timeout.
 
 * platform/efl/TestExpectations: Urgent fix to run layout test.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (208125 => 208126)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-30 13:42:39 UTC (rev 208125)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-30 15:15:15 UTC (rev 208126)
@@ -144,7 +144,6 @@
 http/tests/media/video-buffered-range-contains-currentTime.html [ Timeout ]
 media/airplay-autoplay.html [ Timeout ]
 media/media-fullscreen-return-to-inline.html [ Timeout ]
-media/media-source/media-source-small-gap.html [ Timeout ]
 
 # --
 # Tests which need investigation
@@ -1518,13 +1517,7 @@
 
 # Though MEDIA_SOURCE is enabled, below tests are still failing.
 webkit.org/b/134974 http/tests/media/media-source [ Skip ]
-webkit.org/b/134974 media/media-source/media-source-stpp-crash.html [ Skip ]
-webkit.org/b/134974 media/media-source/media-source-append-failed.html [ Timeout ]
-webkit.org/b/134974 media/media-source/media-source-seek-complete.html [ Timeout ]
-webkit.org/b/134974 media/media-source/media-source-stalled-holds-sleep-assertion.html [ Timeout ]
-webkit.org/b/134974 media/media-source/media-source-duplicate-seeked.html [ Failure ]
-webkit.org/b/134974 media/media-source/media-source-play.html [ Failure ]
-webkit.org/b/134974 media/media-source/media-source-append-buffer-with-append-window.html [ Failure Pass ]
+webkit.org/b/164022 media/media-source [ Skip ]
 
 # Skip imported/w3c/web-platform-tests for a while.
 #webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/URL-createObjectURL-null.html [ Failure ]
@@ -2670,14 +2663,6 @@
 webkit.org/b/156024 svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml [ Failure ]
 
 # Media tests have been failing since we bumped gstreamer ver.
-webkit.org/b/156969 media/media-source/media-source-canplaythrough.html [ Timeout ]
-webkit.org/b/156969 media/media-source/media-source-end-of-stream-buffered.html [ Timeout ]
-webkit.org/b/156969 media/media-source/media-source-end-of-stream-readyState.html [ Timeout ]
-webkit.org/b/156969 media/media-source/media-source-end-of-stream.html [ Timeout ]
-webkit.org/b/156969 media/media-source/media-source-fudge-factor.html [ Timeout ]
-webkit.org/b/156969 media/media-source/media-source-loadedmetada-with-two-sourcebuffers.html [ Timeout ]
-webkit.org/b/156969 media/media-source/media-source-multiple-initialization-segments.html [ Timeout ]
-webkit.org/b/156969 media/media-source/media-source-remove.html [ Timeout ]
 webkit.org/b/156969 media/track/track-automatic-subtitles.html [ Timeout ]
 webkit.org/b/156969 media/track/track-cues-pause-on-exit.html [ Timeout ]
 webkit.org/b/156969 media/video-controls-toggling.html [ Timeout ]
@@ -2686,17 +2671,6 @@
 webkit.org/b/156969 media/controls-without-preload.html [ Failure ]
 webkit.org/b/156969 media/media-controls-drag-timeline-set-controls-property.html [ Failure ]
 webkit.org/b/156969 media/media-controls-invalid-url.html [ Failure ]
-webkit.org/b/156969 media/media-source/media-source-append-media-segment-without-init.html [ Failure ]
-webkit.org/b/156969 media/media-source/media-source-append-nonsync-sample-after-abort.html [ Failure ]
-webkit.org/b/156969 media/media-source/media-source-duration-after-append.html [ Failure ]
-webkit.org/b/156969 media/media-source/media-source-monitor-source-buffers.html [ Failure ]
-webkit.org/b/156969 media/media-source/media-source-overlapping-append.html [ Failure ]
-webkit.org/b/156969 media/media-source/media-source-overlapping-decodet

[webkit-changes] [208122] trunk/LayoutTests

2016-10-30 Thread gyuyoung . kim
Title: [208122] trunk/LayoutTests








Revision 208122
Author gyuyoung@webkit.org
Date 2016-10-30 02:14:03 -0700 (Sun, 30 Oct 2016)


Log Message
Unreviewed EFL gardening. Mark some tests to Timeout.

* platform/efl/TestExpectations: Urgent fix to run layout test.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (208121 => 208122)

--- trunk/LayoutTests/ChangeLog	2016-10-30 06:44:32 UTC (rev 208121)
+++ trunk/LayoutTests/ChangeLog	2016-10-30 09:14:03 UTC (rev 208122)
@@ -1,3 +1,9 @@
+2016-10-30  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening. Mark some tests to Timeout.
+
+* platform/efl/TestExpectations: Urgent fix to run layout test.
+
 2016-10-29  Dean Jackson  <d...@apple.com>
 
 Parse color() function


Modified: trunk/LayoutTests/platform/efl/TestExpectations (208121 => 208122)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-30 06:44:32 UTC (rev 208121)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-30 09:14:03 UTC (rev 208122)
@@ -2828,3 +2828,43 @@
 
 # webrtc not supported
 imported/w3c/web-platform-tests/webrtc [ Skip ]
+
+accessibility/textarea-selected-text-range.html [ Timeout ]
+crypto/workers/subtle/rsa-generate-key.html [ Timeout ]
+css3/masking/mask-svg-no-fragmentId-tiled.html [ Timeout ]
+css3/masking/mask-svg-no-fragmentId.html [ Timeout ]
+fast/events/can-click-element-on-page-with-active-pseudo-class-and-search-field.html [ Timeout ]
+fast/events/drag-and-drop-link-fast-multiple-times-does-not-crash.html [ Timeout ]
+fast/history/page-cache-media-source-closed-2.html [ Timeout ]
+fast/history/page-cache-media-source-closed.html [ Timeout ]
+fast/history/page-cache-media-source-opened.html [ Timeout ]
+fast/history/page-cache-removed-source-buffer.html [ Timeout ]
+fast/loader/file-URL-with-port-number.html [ Timeout ]
+http/tests/incremental/slow-utf8-css.html [ Timeout ]
+http/tests/navigation/ping-attribute/anchor-ping-and-follow-redirect-when-sending-ping.html [ Timeout ]
+http/tests/security/video-cross-origin-caching.html [ Timeout ]
+http/tests/xmlhttprequest/on-network-timeout-error-during-preflight.html [ Timeout ]
+http/tests/xmlhttprequest/resetting-timeout-to-zero.html [ Timeout ]
+imported/mozilla/svg/text/textLength-6.svg [ Timeout ]
+media/encrypted-media/encrypted-media-session-lifetime.html [ Timeout ]
+media/encrypted-media/encrypted-media-v2-events.html [ Timeout ]
+media/encrypted-media/encrypted-media-v2-syntax.html [ Timeout ]
+media/media-controls-drag-timeline-set-controls-property.html [ Timeout ]
+media/media-source/media-source-append-buffer-with-append-window.html [ Timeout ]
+media/media-source/media-source-append-media-segment-without-init.html [ Timeout ]
+media/media-source/media-source-append-nonsync-sample-after-abort.html [ Timeout ]
+media/media-source/media-source-duplicate-seeked.html [ Timeout ]
+media/media-source/media-source-duration-after-append.html [ Timeout ]
+media/media-source/media-source-monitor-source-buffers.html [ Timeout ]
+media/media-source/media-source-overlapping-append.html [ Timeout ]
+media/media-source/media-source-overlapping-decodetime.html [ Timeout ]
+media/media-source/media-source-play.html [ Timeout ]
+media/media-source/media-source-sequence-timestamps.html [ Timeout ]
+media/media-source/media-source-timeoffset.html [ Timeout ]
+media/media-source/media-source-track-enabled.html [ Timeout ]
+media/media-source/media-source-tracks.html [ Timeout ]
+media/media-source/media-source-video-playback-quality.html [ Timeout ]
+media/modern-media-controls/scrubber-support/scrubber-support-click.html [ Timeout ]
+media/modern-media-controls/scrubber-support/scrubber-support-drag.html [ Timeout ]
+media/muted-video-is-playing-audio.html [ Timeout ]
+svg/animations/animate-linear-discrete-additive.svg [ Timeout ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [208038] trunk/LayoutTests

2016-10-28 Thread gyuyoung . kim
Title: [208038] trunk/LayoutTests








Revision 208038
Author gyuyoung@webkit.org
Date 2016-10-27 23:12:10 -0700 (Thu, 27 Oct 2016)


Log Message
[EFL] Skip media test for a while

Unreviewed EFL gardening.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (208037 => 208038)

--- trunk/LayoutTests/ChangeLog	2016-10-28 06:10:33 UTC (rev 208037)
+++ trunk/LayoutTests/ChangeLog	2016-10-28 06:12:10 UTC (rev 208038)
@@ -1,3 +1,11 @@
+2016-10-27  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Skip media test for a while
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations:
+
 2016-10-27  Myles C. Maxfield  <mmaxfi...@apple.com>
 
 Teach WebGL code about new buffer targets in WebGL2


Modified: trunk/LayoutTests/platform/efl/TestExpectations (208037 => 208038)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-28 06:10:33 UTC (rev 208037)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-28 06:12:10 UTC (rev 208038)
@@ -2821,3 +2821,6 @@
 webkit.org/b/163503 fast/dom/HTMLMeterElement/meter-element-markup.html [ Failure ]
 
 webkit.org/b/164022 media/media-source [ Skip ]
+
+# Skip media test for a while because EFL layout test has been blocked.
+media [ Skip ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [207392] trunk/LayoutTests

2016-10-16 Thread gyuyoung . kim
Title: [207392] trunk/LayoutTests








Revision 207392
Author gyuyoung@webkit.org
Date 2016-10-16 07:30:37 -0700 (Sun, 16 Oct 2016)


Log Message
[EFL] Meter tests have been failed since r207280

Unreviewed EFL gardening. And add new baseline for meter-element.html.

* platform/efl/TestExpectations: Mark 2 tests to failure.
* platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.txt: Added.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations


Added Paths

trunk/LayoutTests/platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.txt




Diff

Modified: trunk/LayoutTests/ChangeLog (207391 => 207392)

--- trunk/LayoutTests/ChangeLog	2016-10-16 09:31:13 UTC (rev 207391)
+++ trunk/LayoutTests/ChangeLog	2016-10-16 14:30:37 UTC (rev 207392)
@@ -1,3 +1,12 @@
+2016-10-16  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Meter tests have been failed since r207280
+
+Unreviewed EFL gardening. And add new baseline for meter-element.html.
+
+* platform/efl/TestExpectations: Mark 2 tests to failure.
+* platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.txt: Added.
+
 2016-10-15  Said Abou-Hallawa  <sabouhall...@apple.com>
 
 Delete the animated image catchup code


Modified: trunk/LayoutTests/platform/efl/TestExpectations (207391 => 207392)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-16 09:31:13 UTC (rev 207391)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-16 14:30:37 UTC (rev 207392)
@@ -2812,3 +2812,6 @@
 webkit.org/b/163320 fast/css/getComputedStyle/computed-style-cross-fade.html [ Failure ]
 webkit.org/b/163320 fast/css/getComputedStyle/getComputedStyle-background-shorthand.html [ Failure ]
 webkit.org/b/163320 fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html [ Failure ]
+
+webkit.org/b/163503 fast/dom/HTMLMeterElement/meter-clone.html [ Failure ]
+webkit.org/b/163503 fast/dom/HTMLMeterElement/meter-element-markup.html [ Failure ]


Added: trunk/LayoutTests/platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.txt (0 => 207392)

--- trunk/LayoutTests/platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.txt	(rev 0)
+++ trunk/LayoutTests/platform/efl/fast/dom/HTMLMeterElement/meter-element-expected.txt	2016-10-16 14:30:37 UTC (rev 207392)
@@ -0,0 +1,14 @@
+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x600
+  RenderBlock {HTML} at (0,0) size 800x600
+RenderBody {BODY} at (8,8) size 784x584
+  RenderBlock {METER} at (0,43) size 80x17
+RenderMeter {DIV} at (0,0) size 80x16
+  RenderBlock {DIV} at (0,0) size 80x16
+RenderBlock {DIV} at (0,0) size 18x16
+  RenderBlock {METER} at (80,-1) size 10x61
+RenderMeter {DIV} at (0,0) size 10x60
+  RenderBlock {DIV} at (0,0) size 10x60
+RenderBlock {DIV} at (0,0) size 7x60
+  RenderText {#text} at (0,0) size 0x0






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [207189] trunk/LayoutTests

2016-10-11 Thread gyuyoung . kim
Title: [207189] trunk/LayoutTests








Revision 207189
Author gyuyoung@webkit.org
Date 2016-10-11 22:34:26 -0700 (Tue, 11 Oct 2016)


Log Message
[EFL] Mark url tests to failure

Unreviewed EFL gardening on Oct. 12th.

URL tests have been failed since r207162.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (207188 => 207189)

--- trunk/LayoutTests/ChangeLog	2016-10-12 04:48:13 UTC (rev 207188)
+++ trunk/LayoutTests/ChangeLog	2016-10-12 05:34:26 UTC (rev 207189)
@@ -1,3 +1,13 @@
+2016-10-11  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Mark url tests to failure
+
+Unreviewed EFL gardening on Oct. 12th.
+
+URL tests have been failed since r207162.
+
+* platform/efl/TestExpectations:
+
 2016-10-11  Dean Jackson  <d...@apple.com>
 
 Fix a typo in the test.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (207188 => 207189)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-12 04:48:13 UTC (rev 207188)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-12 05:34:26 UTC (rev 207189)
@@ -2787,3 +2787,28 @@
 webkit.org/b/163192 crypto/workers/subtle/hrsa-postMessage-worker.html [ Timeout ]
 webkit.org/b/163192 crypto/workers/subtle/multiple-postMessage-worker.html [ Timeout ]
 webkit.org/b/163192 crypto/workers/subtle/rsa-postMessage-worker.html [ Timeout ]
+
+webkit.org/b/163320 fast/url/anchor.html [ Failure ]
+webkit.org/b/163320 fast/url/file-http-base.html [ Failure ]
+webkit.org/b/163320 fast/url/file.html [ Failure ]
+webkit.org/b/163320 fast/url/host-lowercase-per-scheme.html [ Failure ]
+webkit.org/b/163320 fast/url/host.html [ Failure ]
+webkit.org/b/163320 fast/url/idna2003.html [ Failure ]
+webkit.org/b/163320 fast/url/invalid-idn.html [ Failure ]
+webkit.org/b/163320 fast/url/invalid-urls-utf8.html [ Failure ]
+webkit.org/b/163320 fast/url/ipv4.html [ Failure ]
+webkit.org/b/163320 fast/url/ipv6.html [ Failure ]
+webkit.org/b/163320 fast/url/path.html [ Failure ]
+webkit.org/b/163320 fast/url/relative-win.html [ Failure ]
+webkit.org/b/163320 fast/url/relative.html [ Failure ]
+webkit.org/b/163320 fast/url/safari-extension.html [ Failure ]
+webkit.org/b/163320 fast/url/segments-from-data-url.html [ Failure ]
+webkit.org/b/163320 fast/url/segments-userinfo-vs-host.html [ Failure ]
+webkit.org/b/163320 fast/url/segments.html [ Failure ]
+webkit.org/b/163320 fast/url/standard-url.html [ Failure ]
+webkit.org/b/163320 fast/url/tab-and-newline-stripping.html [ Failure ]
+webkit.org/b/163320 fast/url/url-credentials-escaping.html [ Failure ]
+webkit.org/b/163320 fast/css/getComputedStyle/computed-style-border-image.html [ Failure ]
+webkit.org/b/163320 fast/css/getComputedStyle/computed-style-cross-fade.html [ Failure ]
+webkit.org/b/163320 fast/css/getComputedStyle/getComputedStyle-background-shorthand.html [ Failure ]
+webkit.org/b/163320 fast/css/getComputedStyle/getComputedStyle-list-style-shorthand.html [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [207183] trunk/Source/WebCore

2016-10-11 Thread gyuyoung . kim
Title: [207183] trunk/Source/WebCore








Revision 207183
Author gyuyoung@webkit.org
Date 2016-10-11 18:52:27 -0700 (Tue, 11 Oct 2016)


Log Message
Unreviewed, EFL build fix because of r207173.

* testing/InternalSettings.cpp:
(WebCore::InternalSettings::forcedPrefersReducedMotionValue):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/testing/InternalSettings.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (207182 => 207183)

--- trunk/Source/WebCore/ChangeLog	2016-10-12 01:40:14 UTC (rev 207182)
+++ trunk/Source/WebCore/ChangeLog	2016-10-12 01:52:27 UTC (rev 207183)
@@ -1,3 +1,10 @@
+2016-10-11  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed, EFL build fix because of r207173.
+
+* testing/InternalSettings.cpp:
+(WebCore::InternalSettings::forcedPrefersReducedMotionValue):
+
 2016-10-11  Said Abou-Hallawa  <sabouhall...@apple.com>
 
 [CG] Add the option to immediately decode an image frame and control its memory caching


Modified: trunk/Source/WebCore/testing/InternalSettings.cpp (207182 => 207183)

--- trunk/Source/WebCore/testing/InternalSettings.cpp	2016-10-12 01:40:14 UTC (rev 207182)
+++ trunk/Source/WebCore/testing/InternalSettings.cpp	2016-10-12 01:52:27 UTC (rev 207183)
@@ -691,6 +691,9 @@
 case Settings::ForcedPrefersReducedMotionValue::Off:
 return InternalSettings::ForcedPrefersReducedMotionValue::Off;
 }
+
+ASSERT_NOT_REACHED();
+return InternalSettings::ForcedPrefersReducedMotionValue::Off;
 }
 
 void InternalSettings::setForcedPrefersReducedMotionValue(InternalSettings::ForcedPrefersReducedMotionValue value)






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [207045] trunk/LayoutTests

2016-10-11 Thread gyuyoung . kim
Title: [207045] trunk/LayoutTests








Revision 207045
Author gyuyoung@webkit.org
Date 2016-10-10 23:08:52 -0700 (Mon, 10 Oct 2016)


Log Message
[EFL] Skip imported/w3c/web-platform-tests for a while

Unreviewed EFL gardening.

Many imported/w3c/web-platform-tests have been failed, timeout, and crash.
So skip the tests until fixing all problems.

Additionally this patch removes duplciated tests.

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-10-10

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (207044 => 207045)

--- trunk/LayoutTests/ChangeLog	2016-10-11 06:06:46 UTC (rev 207044)
+++ trunk/LayoutTests/ChangeLog	2016-10-11 06:08:52 UTC (rev 207045)
@@ -1,3 +1,16 @@
+2016-10-10  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+[EFL] Skip imported/w3c/web-platform-tests for a while
+
+Unreviewed EFL gardening.
+
+Many imported/w3c/web-platform-tests have been failed, timeout, and crash.
+So skip the tests until fixing all problems.
+
+Additionally this patch removes duplciated tests.
+
+* platform/efl/TestExpectations:
+
 2016-10-10  Chris Dumez  <cdu...@apple.com>
 
 Update WheelEvent / MouseEvent to stop using legacy [ConstructorTemplate=Event]


Modified: trunk/LayoutTests/platform/efl/TestExpectations (207044 => 207045)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-11 06:06:46 UTC (rev 207044)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-11 06:08:52 UTC (rev 207045)
@@ -141,14 +141,9 @@
 http/tests/media/video-play-stall.html
 http/tests/media/video-play-waiting.html
 http/tests/security/feed-urls-from-remote.html
-http/tests/media/clearkey/clear-key-hls-aes128.html [ Timeout ]
 http/tests/media/video-buffered-range-contains-currentTime.html [ Timeout ]
-http/tests/media/video-redirect.html [ Timeout ]
 media/airplay-autoplay.html [ Timeout ]
-media/media-controls-drag-timeline-set-controls-property.html [ Timeout ]
 media/media-fullscreen-return-to-inline.html [ Timeout ]
-media/media-source/media-source-duplicate-seeked.html [ Timeout ]
-media/media-source/media-source-play.html [ Timeout ]
 media/media-source/media-source-small-gap.html [ Timeout ]
 
 # --
@@ -573,8 +568,6 @@
 webkit.org/b/134718 gamepad [ Skip ]
 
 # These tests are for an obsolete version of the EME spec.
-webkit.org/b/95297 fast/events/constructors/media-key-event-constructor.html [ WontFix ]
-media/encrypted-media/encrypted-media-can-play-type-webm.html [ WontFix ]
 media/encrypted-media/encrypted-media-events.html [ WontFix ]
 media/encrypted-media/encrypted-media-not-loaded.html [ WontFix ]
 media/encrypted-media/encrypted-media-syntax.html [ WontFix ]
@@ -676,7 +669,6 @@
 
 Bug(EFL) fast/dom/Window/property-access-on-cached-window-after-frame-removed.html [ Crash ]
 Bug(EFL) fast/selectors/querySelector-in-range-crash.html [ Crash ]
-Bug(EFL) http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Crash ]
 Bug(EFL) webaudio/decode-audio-data-basic.html [ Crash ]
 
 #
@@ -1092,8 +1084,8 @@
 webkit.org/b/148470 css1/box_properties/padding_top.html [ Failure ImageOnlyFailure Pass ]
 webkit.org/b/148470 css1/box_properties/width.html [ Failure ImageOnlyFailure Pass ]
 
-webkit.org/b/158412 imported/w3c/web-platform-tests/html/dom/reflection-grouping.html [ Timeout Pass ]
-webkit.org/b/158412 imported/w3c/web-platform-tests/html/semantics/grouping-content/the-ul-element/grouping-ul.html [ Timeout Pass ]
+#webkit.org/b/158412 imported/w3c/web-platform-tests/html/dom/reflection-grouping.html [ Timeout Pass ]
+#webkit.org/b/158412 imported/w3c/web-platform-tests/html/semantics/grouping-content/the-ul-element/grouping-ul.html [ Timeout Pass ]
 
 #
 # PASSING TESTS WITH INCORRECT EXPECTATIONS
@@ -1299,23 +1291,20 @@
 imported/w3c/css/css-multicol-1/multicol-width-ems-001.xht [ Pass ]
 imported/w3c/css/css-multicol-1/multicol-width-small-001.xht [ Pass ]
 imported/w3c/css/css-multicol-1/multicol-zero-height-001.xht [ Pass ]
-imported/w3c/web-platform-tests/html/dom/elements/global-attributes/dir_auto-pre-N-between-Rs.html [ Pass ]
-imported/w3c/web-platform-tests/html/dom/elements/global-attributes/dir_auto-textarea-N-between-Rs.html [ Pass ]
-imported/w3c/web-platform-tests/html/dom/elements/global-attributes/dir_auto-textarea-script-N-between-Rs.html [ Pass ]
-imported/w3c/web-platform-tests/html/dom/elements/global-attributes/style-01.html [ Pass ]
-imported/w3c/web-platform-tests/html/semantics/embedded-content/the-embed-element/embed-represent-nothing-01.html [ Pass ]
-imported/w3c/web-platform-tests/html/semantics/embedded-content/the-embed-element/embed-r

[webkit-changes] [206981] trunk/LayoutTests

2016-10-09 Thread gyuyoung . kim
Title: [206981] trunk/LayoutTests








Revision 206981
Author gyuyoung@webkit.org
Date 2016-10-09 22:34:11 -0700 (Sun, 09 Oct 2016)


Log Message
Unreviewed, EFL Gardening on Oct. 10th - 2

Mark missing test to Skip because the tests aren't supported by EFL yet.
Unskip passing tests and add *PASS* to some flaky tests because I guess
it is still flaky.

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-10-09

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (206980 => 206981)

--- trunk/LayoutTests/ChangeLog	2016-10-10 05:22:09 UTC (rev 206980)
+++ trunk/LayoutTests/ChangeLog	2016-10-10 05:34:11 UTC (rev 206981)
@@ -1,3 +1,13 @@
+2016-10-09  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+Unreviewed, EFL Gardening on Oct. 10th - 2
+
+Mark missing test to Skip because the tests aren't supported by EFL yet.
+Unskip passing tests and add *PASS* to some flaky tests because I guess
+it is still flaky.
+
+* platform/efl/TestExpectations:
+
 2016-10-09  Wenson Hsieh  <wenson_hs...@apple.com>
 
 Support InputEvent.inputType for the new InputEvent spec


Modified: trunk/LayoutTests/platform/efl/TestExpectations (206980 => 206981)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-10 05:22:09 UTC (rev 206980)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-10 05:34:11 UTC (rev 206981)
@@ -68,6 +68,7 @@
 animations/trigger-container-scroll-boundaries.html [ Skip ]
 
 # EFL WebKitTestRunner doesn't support this test based on emoji font
+editing/deleting/delete-emoji.html [ Skip ]
 editing/selection/extend-by-character-007.html [ Skip ]
 fast/text/softbank-emoji.html [ Skip ]
 fast/text/emoji.html [ Skip ]
@@ -95,6 +96,7 @@
 fast/text/emoji-single-parent-family.html [ Skip ]
 fast/text/emoji-single-parent-family-2.html [ Skip ]
 
+
 # This test has been added for ios port since r185842.
 fast/text/arabic-times-new-roman.html [ Skip ]
 
@@ -411,6 +413,9 @@
 fast/repaint/selection-gap-transformed-absolute-child.html [ Skip ]
 fast/repaint/selection-gap-transformed-fixed-child.html [ Skip ]
 
+# GTK port only supports it now.
+mathml/presentation/bug159513.html [ Skip ]
+
 #
 # TESTS EXPECTED TO FAIL
 #
@@ -608,9 +613,6 @@
 # Crashes on plugin test, also blocked by 108077
 webkit.org/b/98747 plugins/document-open.html [ Crash Failure Timeout ]
 
-webkit.org/b/102200 fast/dom/HTMLAnchorElement/anchor-download.html [ Timeout ]
-webkit.org/b/102200 fast/dom/HTMLAnchorElement/anchor-nodownload-set.html [ Timeout ]
-
 # Sometimes hit !m_finishedNodes.size() assertion in AudioContext destructor.
 webkit.org/b/105870 webaudio/audiobuffersource.html [ Pass Crash ]
 webkit.org/b/105870 webaudio/audionode-connect-order.html [ Pass Crash ]
@@ -789,10 +791,10 @@
 webkit.org/b/135498 css3/device-adapt/viewport-width-not-affecting-next-page.html [ Failure ]
 
 # Started to timeout after bumping EFL to 1.9
-webkit.org/b/136099 fast/animation/request-animation-frame-during-modal.html [ Crash Timeout ]
-webkit.org/b/136099 fast/dom/Window/open-window-min-size.html [ Crash Timeout ]
-webkit.org/b/136099 fast/events/show-modal-dialog-onblur-onfocus.html [ Crash Timeout ]
-webkit.org/b/136099 fast/events/scroll-event-during-modal-dialog.html [ Crash Timeout ]
+webkit.org/b/136099 fast/animation/request-animation-frame-during-modal.html [ Crash Pass Timeout ]
+webkit.org/b/136099 fast/dom/Window/open-window-min-size.html [ Crash Pass Timeout ]
+webkit.org/b/136099 fast/events/show-modal-dialog-onblur-onfocus.html [ Crash Pass Timeout ]
+webkit.org/b/136099 fast/events/scroll-event-during-modal-dialog.html [ Crash Pass Timeout ]
 webkit.org/b/136099 fast/harness/show-modal-dialog.html [ Crash Timeout ]
 
 #webkit.org/b/142158 inspector/dom/remove-multiple-nodes.html [ Crash Pass ]
@@ -1878,9 +1880,6 @@
 # Enable when support drag-and-drop autoscrolling
 webkit.org/b/39725 fast/events/drag-and-drop-autoscroll.html [ Skip ]
 
-# New test added in r142335 that is failing on EFL, Qt and GTK.
-webkit.org/b/109353 fast/flexbox/line-clamp-link-after-ellipsis.html [ Failure ]
-
 # Leaking state into the next test.
 webkit.org/b/85522 http/tests/security/sandboxed-iframe-form-top.html [ Skip ]
 
@@ -2143,7 +2142,6 @@
 webkit.org/b/127725 media/video-restricted-no-preload-auto.html [ Crash ]
 
 # Subpixel rendering: borders are reporting float values.
-webkit.org/b/128061 fast/block/float/016.html [ Failure ]
 webkit.org/b/128061 fast/multicol/span/anonymous-style-inheritance.html [ Failure ]
 webkit.org/b/128061 fast/repaint/repaint-during-scroll-with-zoom.html [ Failure ]
 webkit.org/b/128061 svg/zoom/page/zoom-img-preserveAspectRatio-support-1.htm

[webkit-changes] [206978] trunk/LayoutTests

2016-10-09 Thread gyuyoung . kim
Title: [206978] trunk/LayoutTests








Revision 206978
Author gyuyoung@webkit.org
Date 2016-10-09 19:19:32 -0700 (Sun, 09 Oct 2016)


Log Message
[EFL] Gardening timout tests, failure tests on Oct. 10th.

Unreviewed EFL gardening.

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-10-09

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (206977 => 206978)

--- trunk/LayoutTests/ChangeLog	2016-10-10 02:14:05 UTC (rev 206977)
+++ trunk/LayoutTests/ChangeLog	2016-10-10 02:19:32 UTC (rev 206978)
@@ -1,3 +1,11 @@
+2016-10-09  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+[EFL] Gardening timout tests, failure tests on Oct. 10th.
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations:
+
 2016-10-07  Ryosuke Niwa  <rn...@webkit.org>
 
 REGRESSION(r165103): labels list doesn't get invalidated when other lists are invalidated at document level


Modified: trunk/LayoutTests/platform/efl/TestExpectations (206977 => 206978)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-10 02:14:05 UTC (rev 206977)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-10 02:19:32 UTC (rev 206978)
@@ -71,6 +71,29 @@
 editing/selection/extend-by-character-007.html [ Skip ]
 fast/text/softbank-emoji.html [ Skip ]
 fast/text/emoji.html [ Skip ]
+fast/text/emoji-gender-2.html [ Skip ]
+fast/text/emoji-gender-2-3.html [ Skip ]
+fast/text/emoji-gender-2-4.html [ Skip ]
+fast/text/emoji-gender-2-5.html [ Skip ]
+fast/text/emoji-gender-2-6.html [ Skip ]
+fast/text/emoji-gender-2-7.html [ Skip ]
+fast/text/emoji-gender-2-8.html [ Skip ]
+fast/text/emoji-gender-2-9.html [ Skip ]
+fast/text/emoji-gender-3.html [ Skip ]
+fast/text/emoji-gender-4.html [ Skip ]
+fast/text/emoji-gender-5.html [ Skip ]
+fast/text/emoji-gender-6.html [ Skip ]
+fast/text/emoji-gender-8.html [ Skip ]
+fast/text/emoji-gender-9.html [ Skip ]
+fast/text/emoji-gender-fe0f-3.html [ Skip ]
+fast/text/emoji-gender-fe0f-4.html [ Skip ]
+fast/text/emoji-gender-fe0f-5.html [ Skip ]
+fast/text/emoji-gender-fe0f-6.html [ Skip ]
+fast/text/emoji-gender-fe0f-7.html [ Skip ]
+fast/text/emoji-gender-fe0f-8.html [ Skip ]
+fast/text/emoji-gender-fe0f-9.html [ Skip ]
+fast/text/emoji-single-parent-family.html [ Skip ]
+fast/text/emoji-single-parent-family-2.html [ Skip ]
 
 # This test has been added for ios port since r185842.
 fast/text/arabic-times-new-roman.html [ Skip ]
@@ -123,6 +146,8 @@
 media/media-controls-drag-timeline-set-controls-property.html [ Timeout ]
 media/media-fullscreen-return-to-inline.html [ Timeout ]
 media/media-source/media-source-duplicate-seeked.html [ Timeout ]
+media/media-source/media-source-play.html [ Timeout ]
+media/media-source/media-source-small-gap.html [ Timeout ]
 
 # --
 # Tests which need investigation
@@ -1364,27 +1389,6 @@
 
 webkit.org/b/148695 fast/shadow-dom [ Pass ]
 
-Bug(EFL) fast/text/emoji-gender-2-3.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-2-4.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-2-5.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-2-6.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-2-7.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-2-8.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-2-9.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-3.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-4.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-5.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-6.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-8.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-9.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-fe0f-3.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-fe0f-4.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-fe0f-5.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-fe0f-6.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-fe0f-7.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-fe0f-8.html [ Pass ]
-Bug(EFL) fast/text/emoji-gender-fe0f-9.html [ Pass ]
-
 Bug(EFL) fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2.html [ Pass ]
 Bug(EFL) fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html [ Pass ]
 Bug(EFL) fast/scrolling/rtl-scrollbars-elementFromPoint-static.html [ Pass ]
@@ -2824,3 +2828,9 @@
 Bug(EFL) crypto/workers/hrsa-postMessage-worker.html [ Timeout ]
 Bug(EFL) crypto/workers/multiple-postMessage-worker.html [ Timeout ]
 Bug(EFL) crypto/workers/rsa-postMessage-worker.html [ Timeout ]
+
+webkit.org/b/163192 crypto/workers/subtle/aes-postMessage-worker.html [ Timeout ]
+webkit.org/b/163192 crypto/workers/subtle/hmac-postMessage-worker.html [ Timeout ]
+webkit.org/b/163192 crypto/workers/subtle/hrsa-postMessage-worker.html [ Timeout ]
+webkit.org/b/163192 crypto/workers/subtle/multiple-postMessage-worker.html [ Timeout ]
+webkit.org/b/163192 crypto/workers/subtle/rsa

[webkit-changes] [206895] trunk/LayoutTests

2016-10-06 Thread gyuyoung . kim
Title: [206895] trunk/LayoutTests








Revision 206895
Author gyuyoung@webkit.org
Date 2016-10-06 20:03:57 -0700 (Thu, 06 Oct 2016)


Log Message
[EFL] Skip to test imported/w3c/web-platform-tests/

Unreivewed EFL gardening

Too many tests have been failures, timeout, and crash.
Skip it for a while until we fix it.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (206894 => 206895)

--- trunk/LayoutTests/ChangeLog	2016-10-07 02:33:38 UTC (rev 206894)
+++ trunk/LayoutTests/ChangeLog	2016-10-07 03:03:57 UTC (rev 206895)
@@ -1,3 +1,14 @@
+2016-10-06  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Skip to test imported/w3c/web-platform-tests/
+
+Unreivewed EFL gardening
+
+Too many tests have been failures, timeout, and crash.
+Skip it for a while until we fix it.
+
+* platform/efl/TestExpectations:
+
 2016-10-06  Commit Queue  <commit-qu...@webkit.org>
 
 Unreviewed, rolling out r206713.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (206894 => 206895)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-07 02:33:38 UTC (rev 206894)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-07 03:03:57 UTC (rev 206895)
@@ -1513,6 +1513,10 @@
 Bug(EFL) fast/images/webp-color-profile-lossy-alpha.html [ Skip ]
 Bug(EFL) fast/images/webp-color-profile-lossy.html [ Skip ]
 
+# Too many tests are failure, timeout, and crash. So it would be good to
+# skip these tests until we find solution to fix.
+webkit.org/b/161839 imported/w3c/web-platform-tests/ [ Skip ]
+
 # Though MEDIA_SOURCE is enabled, below tests are still failing.
 webkit.org/b/134974 http/tests/media/media-source [ Skip ]
 webkit.org/b/134974 media/media-source/media-source-stpp-crash.html [ Skip ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [206840] trunk/LayoutTests

2016-10-05 Thread gyuyoung . kim
Title: [206840] trunk/LayoutTests








Revision 206840
Author gyuyoung@webkit.org
Date 2016-10-05 17:47:39 -0700 (Wed, 05 Oct 2016)


Log Message
[EFL] Mark timeout tests to *Timeout*

Unreviewed EFL gardening.

Timeout has been happened on some tests.

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-10-05

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (206839 => 206840)

--- trunk/LayoutTests/ChangeLog	2016-10-06 00:40:41 UTC (rev 206839)
+++ trunk/LayoutTests/ChangeLog	2016-10-06 00:47:39 UTC (rev 206840)
@@ -1,3 +1,13 @@
+2016-10-05  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+[EFL] Mark timeout tests to *Timeout*
+
+Unreviewed EFL gardening.
+
+Timeout has been happened on some tests.
+
+* platform/efl/TestExpectations:
+
 2016-10-05  Ryosuke Niwa  <rn...@webkit.org>
 
 Import v1 custom elements tests from W3C


Modified: trunk/LayoutTests/platform/efl/TestExpectations (206839 => 206840)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-10-06 00:40:41 UTC (rev 206839)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-10-06 00:47:39 UTC (rev 206840)
@@ -116,6 +116,13 @@
 http/tests/media/video-play-stall.html
 http/tests/media/video-play-waiting.html
 http/tests/security/feed-urls-from-remote.html
+http/tests/media/clearkey/clear-key-hls-aes128.html [ Timeout ]
+http/tests/media/video-buffered-range-contains-currentTime.html [ Timeout ]
+http/tests/media/video-redirect.html [ Timeout ]
+media/airplay-autoplay.html [ Timeout ]
+media/media-controls-drag-timeline-set-controls-property.html [ Timeout ]
+media/media-fullscreen-return-to-inline.html [ Timeout ]
+media/media-source/media-source-duplicate-seeked.html [ Timeout ]
 
 # --
 # Tests which need investigation
@@ -1596,7 +1603,29 @@
 webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.plus.html [ Skip ]
 webkit.org/b/161839 imported/w3c/web-platform-tests/streams/readable-streams/garbage-collection.https.html [ Skip ]
 webkit.org/b/161839 imported/w3c/web-platform-tests/streams/readable-streams/readable-stream-reader.https.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbcursor_delete_index5.htm [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbdatabase_close2.htm [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_index.htm [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/XMLHttpRequest/open-method-case-sensitive.htm [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/dom/events/Event-constructors.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/browsers/history/the-location-interface/location_hostname.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/browsers/history/the-location-interface/reload_document_open_write.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/browsers/windows/nested-browsing-contexts/window-top-001.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/document-metadata/the-base-element/base_srcdoc.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/context.emptystring.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.space.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/toBlob.jpeg.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/toDataURL.zeroheight.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/forms/the-textarea-element/cloning-steps.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/scripting-1/the-template-element/template-element/node-document-changes.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/syntax/parsing/html5lib_main-element.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/syntax/parsing/html5lib_tests26.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/syntax/parsing/template/additions-to-the-in-frameset-insertion-mode/end-tag-frameset.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-av-framesize.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/shadow-dom/Element-interface-attachShadow.html [ Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/url/historical.html [ Timeout ]
 
+
 # Requires

[webkit-changes] [206429] trunk/Tools

2016-09-27 Thread gyuyoung . kim
Title: [206429] trunk/Tools








Revision 206429
Author gyuyoung@webkit.org
Date 2016-09-27 04:46:41 -0700 (Tue, 27 Sep 2016)


Log Message
[EFL] Locate color picker popup to center of window
https://bugs.webkit.org/show_bug.cgi?id=162540

Reviewed by Michael Catanzaro.

Color picker popup hasn't located in a center of main window, because
elm_win_center() function doesn't work correctly. It looks a bug.

To fix the problem, this patch uses evas_object_geometry_set() instead.

* MiniBrowser/efl/main.c:
(_color_picker_request_cb):

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/MiniBrowser/efl/main.c




Diff

Modified: trunk/Tools/ChangeLog (206428 => 206429)

--- trunk/Tools/ChangeLog	2016-09-27 11:24:46 UTC (rev 206428)
+++ trunk/Tools/ChangeLog	2016-09-27 11:46:41 UTC (rev 206429)
@@ -1,3 +1,18 @@
+2016-09-27  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Locate color picker popup to center of window
+https://bugs.webkit.org/show_bug.cgi?id=162540
+
+Reviewed by Michael Catanzaro.
+
+Color picker popup hasn't located in a center of main window, because
+elm_win_center() function doesn't work correctly. It looks a bug.
+
+To fix the problem, this patch uses evas_object_geometry_set() instead.
+
+* MiniBrowser/efl/main.c:
+(_color_picker_request_cb):
+
 2016-09-27  Michael Catanzaro  <mcatanz...@igalia.com>
 
 [GTK] Disable ACCELERATED_2D_CANVAS when using build-webkit


Modified: trunk/Tools/MiniBrowser/efl/main.c (206428 => 206429)

--- trunk/Tools/MiniBrowser/efl/main.c	2016-09-27 11:24:46 UTC (rev 206428)
+++ trunk/Tools/MiniBrowser/efl/main.c	2016-09-27 11:46:41 UTC (rev 206429)
@@ -60,6 +60,8 @@
 static Eina_Bool longpress_enabled = EINA_FALSE;
 static int window_width = 1000;
 static int window_height = 800;
+static int color_picker_width = 350;
+static int color_picker_height = 500;
 static int search_flags = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT | EWK_FIND_OPTIONS_WRAP_AROUND | EWK_FIND_OPTIONS_CASE_INSENSITIVE;
 /* Default value of device_pixel_ratio is '0' so that we don't set custom device
  * scale factor unless it's required by the User. */
@@ -874,9 +876,13 @@
 
evas_object_smart_callback_add(file_selector, "done", _fileselector_done_cb, fs_data);
 
-   evas_object_resize(elm_window, 400, 400);
-   elm_win_center(elm_window, EINA_TRUE, EINA_TRUE);
-   evas_object_show(elm_window);
+   int x, y, width, height;
+   evas_object_geometry_get(window->elm_window, , , , );
+
+   int picker_x = x + width / 2 - color_picker_width / 2;
+   int picker_y = y + height / 2 - color_picker_height / 2;
+   evas_object_geometry_set(window->color_selector.elm_selector_window, picker_x, picker_y,
+ color_picker_width, color_picker_height);
 }
 
 static void






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [206364] trunk/Tools

2016-09-25 Thread gyuyoung . kim
Title: [206364] trunk/Tools








Revision 206364
Author gyuyoung@webkit.org
Date 2016-09-25 20:22:02 -0700 (Sun, 25 Sep 2016)


Log Message
[EFL] Adjust EFL indentation to EFL MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=162542

Unreviewed, EFL simple coding style fix.

Some functions wasn't applied EFL coding style in prefix fix.


* MiniBrowser/efl/main.c:
(_key_down_cb):
(view_focus_set):
(_mouse_down_cb):
(title_set):
(_title_changed_cb):
(_url_changed_cb):
(_back_forward_list_changed_cb):
(_progress_cb):
(_error_cb):
(_download_request_cb):
(close_file_picker):
(_filepicker_parent_deletion_cb):
(_filepicker_deletion_cb):
(_fileselector_done_cb):
(_file_chooser_request_cb):
(_download_finished_cb):
(_download_failed_cb):
(_color_changed_cb):
(_color_item_selected_cb):
(_color_picker_ok_clicked_cb):
(_color_picker_cancel_clicked_cb):
(_color_picker_dismiss_cb):
(_color_picker_request_cb):
(quit):
(has_scheme):
(url_from_user_input):
(url_load_from_user_input):
(_url_bar_activated_cb):
(_url_bar_clicked_cb):
(_search_field_aborted_cb):
(_search_field_activated_cb):
(_search_field_clicked_cb):
(_back_button_clicked_cb):
(_forward_button_clicked_cb):
(_search_backward_button_clicked_cb):
(_search_forward_button_clicked_cb):
(_search_case_option_changed):
(_search_word_start_option_changed_cb):
(_search_close_button_clicked_cb):
(_refresh_button_clicked_cb):
(_stop_button_clicked_cb):
(list_item_label_get):
(_list_item_select_cb):
(navigation_button_longpress_process):
(_forward_button_longpress_cb):
(_back_button_longpress_cb):
(quit_event_loop):
(_ok_clicked_cb):
(_file_entry_dialog_show):

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/MiniBrowser/efl/main.c




Diff

Modified: trunk/Tools/ChangeLog (206363 => 206364)

--- trunk/Tools/ChangeLog	2016-09-25 17:28:07 UTC (rev 206363)
+++ trunk/Tools/ChangeLog	2016-09-26 03:22:02 UTC (rev 206364)
@@ -1,3 +1,63 @@
+2016-09-25  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Adjust EFL indentation to EFL MiniBrowser
+https://bugs.webkit.org/show_bug.cgi?id=162542
+
+Unreviewed, EFL simple coding style fix.
+
+Some functions wasn't applied EFL coding style in prefix fix.
+
+* MiniBrowser/efl/main.c:
+(_key_down_cb):
+(view_focus_set):
+(_mouse_down_cb):
+(title_set):
+(_title_changed_cb):
+(_url_changed_cb):
+(_back_forward_list_changed_cb):
+(_progress_cb):
+(_error_cb):
+(_download_request_cb):
+(close_file_picker):
+(_filepicker_parent_deletion_cb):
+(_filepicker_deletion_cb):
+(_fileselector_done_cb):
+(_file_chooser_request_cb):
+(_download_finished_cb):
+(_download_failed_cb):
+(_color_changed_cb):
+(_color_item_selected_cb):
+(_color_picker_ok_clicked_cb):
+(_color_picker_cancel_clicked_cb):
+(_color_picker_dismiss_cb):
+(_color_picker_request_cb):
+(quit):
+(has_scheme):
+(url_from_user_input):
+(url_load_from_user_input):
+(_url_bar_activated_cb):
+(_url_bar_clicked_cb):
+(_search_field_aborted_cb):
+(_search_field_activated_cb):
+(_search_field_clicked_cb):
+(_back_button_clicked_cb):
+(_forward_button_clicked_cb):
+(_search_backward_button_clicked_cb):
+(_search_forward_button_clicked_cb):
+(_search_case_option_changed):
+(_search_word_start_option_changed_cb):
+(_search_close_button_clicked_cb):
+(_refresh_button_clicked_cb):
+(_stop_button_clicked_cb):
+(list_item_label_get):
+(_list_item_select_cb):
+(navigation_button_longpress_process):
+(_forward_button_longpress_cb):
+(_back_button_longpress_cb):
+(quit_event_loop):
+(_ok_clicked_cb):
+(_file_entry_dialog_show):
+
 2016-09-24  Chris Dumez  <cdu...@apple.com>
 
 [WK2] anchor.download attribute value is ignored by NETWORK_SESSION code path


Modified: trunk/Tools/MiniBrowser/efl/main.c (206363 => 206364)

--- trunk/Tools/MiniBrowser/efl/main.c	2016-09-25 17:28:07 UTC (rev 206363)
+++ trunk/Tools/MiniBrowser/efl/main.c	2016-09-26 03:22:02 UTC (rev 206364)
@@ -596,9 +596,9 @@
  Ewk_Pagination_Mode mode =  ewk_view_pagination_mode_get(ewk_view);
  mode = (mode + 1) % (EWK_PAGINATION_MODE_BOTTOM_TO_TOP + 1);
  if (ewk_view_pagination_mode_set(ewk_view, mode))
- INFO("Change Pagination Mode (F7) was pressed, changed to: %d", mode);
+   INFO("Change Pagination Mode (F7) was pressed, changed to: %d", mode);
  else
- INFO("Change Pagination Mode (F7) was pressed, but NOT changed!");
+   INFO("Change Pagination Mode (F7) was pressed, but NOT changed!");
} else if (!strcmp(ev->key, "F11")) {
  INFO("Fullscreen (F11) was p

[webkit-changes] [206078] trunk

2016-09-18 Thread gyuyoung . kim
Title: [206078] trunk








Revision 206078
Author gyuyoung@webkit.org
Date 2016-09-18 06:47:31 -0700 (Sun, 18 Sep 2016)


Log Message
[EFL] Bump efl library to 1.18.1
https://bugs.webkit.org/show_bug.cgi?id=162120

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-09-18
Reviewed by Michael Catanzaro.

.:

* Source/cmake/OptionsEfl.cmake: Use efl-1.18.1 instead of 1.18.

Tools:

* efl/jhbuild.modules: Use efl-1.18.1 instead of 1.18.

Modified Paths

trunk/ChangeLog
trunk/Source/cmake/OptionsEfl.cmake
trunk/Tools/ChangeLog
trunk/Tools/efl/jhbuild.modules




Diff

Modified: trunk/ChangeLog (206077 => 206078)

--- trunk/ChangeLog	2016-09-18 13:13:47 UTC (rev 206077)
+++ trunk/ChangeLog	2016-09-18 13:47:31 UTC (rev 206078)
@@ -1,3 +1,12 @@
+2016-09-18  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+[EFL] Bump efl library to 1.18.1
+https://bugs.webkit.org/show_bug.cgi?id=162120
+
+Reviewed by Michael Catanzaro.
+
+* Source/cmake/OptionsEfl.cmake: Use efl-1.18.1 instead of 1.18.
+
 2016-09-16  Carlos Garcia Campos  <cgar...@igalia.com>
 
 [CMake] Build broken with current debian testing


Modified: trunk/Source/cmake/OptionsEfl.cmake (206077 => 206078)

--- trunk/Source/cmake/OptionsEfl.cmake	2016-09-18 13:13:47 UTC (rev 206077)
+++ trunk/Source/cmake/OptionsEfl.cmake	2016-09-18 13:47:31 UTC (rev 206078)
@@ -1,6 +1,6 @@
 set(PROJECT_VERSION_MAJOR 1)
 set(PROJECT_VERSION_MINOR 18)
-set(PROJECT_VERSION_MICRO 0)
+set(PROJECT_VERSION_MICRO 1)
 set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO})
 
 set(ENABLE_WEBKIT OFF)


Modified: trunk/Tools/ChangeLog (206077 => 206078)

--- trunk/Tools/ChangeLog	2016-09-18 13:13:47 UTC (rev 206077)
+++ trunk/Tools/ChangeLog	2016-09-18 13:47:31 UTC (rev 206078)
@@ -1,3 +1,12 @@
+2016-09-18  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+[EFL] Bump efl library to 1.18.1
+https://bugs.webkit.org/show_bug.cgi?id=162120
+
+Reviewed by Michael Catanzaro.
+
+* efl/jhbuild.modules: Use efl-1.18.1 instead of 1.18.
+
 2016-09-18  Gyuyoung Kim  <gyuyoung@webkit.org>
 
 [EFL] Adjust EFL coding style to EFL MiniBrowser


Modified: trunk/Tools/efl/jhbuild.modules (206077 => 206078)

--- trunk/Tools/efl/jhbuild.modules	2016-09-18 13:13:47 UTC (rev 206077)
+++ trunk/Tools/efl/jhbuild.modules	2016-09-18 13:47:31 UTC (rev 206078)
@@ -46,7 +46,7 @@
  href=""
   -  href="" 
+  href=""
  href=""
   @@ -174,9 +174,9 @@
   
   
 
-+ repo="download.enlightenment.org"
-hash="sha256:a90255e97f6b768883276d3e04946798c31bc9bf57da12702ca7c3f4a401ec9f">
+hash="sha256:008640c51e90481797984d0cb58a077af746922fb179b4af91ca591c37ad112d">
 
   
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [205789] trunk/LayoutTests

2016-09-11 Thread gyuyoung . kim
Title: [205789] trunk/LayoutTests








Revision 205789
Author gyuyoung@webkit.org
Date 2016-09-11 07:10:54 -0700 (Sun, 11 Sep 2016)


Log Message
[EFL] Skip to test some w3c/web-platform-tests

Unreviewed EFL gardening.

Some tests of w3c/web-platform-tests have been flaky since r205777.

* platform/efl/TestExpectations

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (205788 => 205789)

--- trunk/LayoutTests/ChangeLog	2016-09-11 07:24:17 UTC (rev 205788)
+++ trunk/LayoutTests/ChangeLog	2016-09-11 14:10:54 UTC (rev 205789)
@@ -1,3 +1,13 @@
+2016-09-11  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Skip to test some w3c/web-platform-tests
+
+Unreviewed EFL gardening.
+
+Some tests of w3c/web-platform-tests have been flaky since r205777.
+
+* platform/efl/TestExpectations
+
 2016-09-11  Tim Horton  <timothy_hor...@apple.com>
 
 Candidates that don't end in spaces shouldn't have spaces arbitrarily appended to them


Modified: trunk/LayoutTests/platform/efl/TestExpectations (205788 => 205789)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-09-11 07:24:17 UTC (rev 205788)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-09-11 14:10:54 UTC (rev 205789)
@@ -1566,6 +1566,40 @@
 webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-trackdefault.html [ Failure ]
 webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-trackdefaultlist.html [ Failure ]
 
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbcursor_advance_index9.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbdatabase_createObjectStore8-parameters.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbdatabase_transaction5.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbfactory_cmp2.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbfactory_open3.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbkeyrange.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_createIndex2.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_delete2.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_delete4.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_delete6.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_deleted.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/IndexedDB/idbobjectstore_get3.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/XMLHttpRequest/overridemimetype-loading-state.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/XMLHttpRequest/send-authentication-basic-setrequestheader-and-arguments.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/XMLHttpRequest/send-content-type-charset.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/XMLHttpRequest/send-response-upload-event-progress.htm [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/dom/collections/domstringmap-supported-property-names.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/dom/events/EventTarget-dispatchEvent.html [ Failure Timeout ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/dom/nodes/Document-contentType/contentType/contenttype_css.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/dom/nodes/Element-childElementCount-dynamic-add.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/dom/nodes/Element-classlist.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/fetch/api/basic/mode-same-origin.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/fetch/api/basic/scheme-blob.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/fetch/api/policies/referrer-no-referrer.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/interfaces/TextTrackCue/onexit.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/fallback.basic.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/initial.colour.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/size.attributes.parse.junk.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/size.attributes.reflect.setcontent.html [ Skip ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-canvas-element/size.attributes.setAttribute.octal.html [ Skip ]
+webkit.org

[webkit-changes] [205785] trunk/LayoutTests

2016-09-10 Thread gyuyoung . kim
Title: [205785] trunk/LayoutTests








Revision 205785
Author gyuyoung@webkit.org
Date 2016-09-10 08:06:20 -0700 (Sat, 10 Sep 2016)


Log Message
[EFL] Mark new media source tests to failure

Unreviewed EFL gardening.

* platform/efl/TestExpectations: New added media source tests are failing.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (205784 => 205785)

--- trunk/LayoutTests/ChangeLog	2016-09-10 08:19:10 UTC (rev 205784)
+++ trunk/LayoutTests/ChangeLog	2016-09-10 15:06:20 UTC (rev 205785)
@@ -1,3 +1,11 @@
+2016-09-10  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Mark new media source tests to failure
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: New added media source tests are failing.
+
 2016-09-09  Jer Noble  <jer.no...@apple.com>
 
 [Media Source] Import updated w3c/web-platform-tests and rebaseline


Modified: trunk/LayoutTests/platform/efl/TestExpectations (205784 => 205785)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-09-10 08:19:10 UTC (rev 205784)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-09-10 15:06:20 UTC (rev 205785)
@@ -1519,6 +1519,53 @@
 webkit.org/b/134974 media/media-source/media-source-play.html [ Failure ]
 webkit.org/b/134974 media/media-source/media-source-append-buffer-with-append-window.html [ Failure Pass ]
 
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/URL-createObjectURL-null.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/URL-createObjectURL-revoke.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/interfaces.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-activesourcebuffers.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-addsourcebuffer.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-append-buffer.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-appendbuffer-quota-exceeded.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-appendwindow.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-buffered.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-a-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-av-audio-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-av-framesize.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-av-video-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-v-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-v-framerate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-mp4-v-framesize.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-webm-a-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-webm-av-audio-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-webm-av-framesize.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-webm-av-video-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-webm-v-bitrate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-webm-v-framerate.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-config-change-webm-v-framesize.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-detach.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-duration-boundaryconditions.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-duration.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-endofstream.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-errors.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-getvideoplaybackquality.html [ Failure ]
+webkit.org/b/161839 imported/w3c/web-platform-tests/media-source/mediasource-is-type-supported.html [ Failure ]
+webkit.org/b/1

[webkit-changes] [205339] trunk/LayoutTests

2016-09-01 Thread gyuyoung . kim
Title: [205339] trunk/LayoutTests








Revision 205339
Author gyuyoung@webkit.org
Date 2016-09-01 21:41:11 -0700 (Thu, 01 Sep 2016)


Log Message
[EFL] Mark failing tests to failure

Unreviewed EFL gardening.

Failing tests of security, hyphenation, and form are marked to failure.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (205338 => 205339)

--- trunk/LayoutTests/ChangeLog	2016-09-02 04:02:21 UTC (rev 205338)
+++ trunk/LayoutTests/ChangeLog	2016-09-02 04:41:11 UTC (rev 205339)
@@ -1,5 +1,15 @@
 2016-09-01  Gyuyoung Kim  <gyuyoung@webkit.org>
 
+[EFL] Mark failing tests to failure
+
+Unreviewed EFL gardening.
+
+Failing tests of security, hyphenation, and form are marked to failure.
+
+* platform/efl/TestExpectations:
+
+2016-09-01  Gyuyoung Kim  <gyuyoung@webkit.org>
+
 [EFL] Gardening faliure and timeout tests on 2th Sep.
 
 Unreviewed EFL gardening.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (205338 => 205339)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-09-02 04:02:21 UTC (rev 205338)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-09-02 04:41:11 UTC (rev 205339)
@@ -2687,3 +2687,26 @@
 webkit.org/b/161520 imported/w3c/web-platform-tests/fetch/api/redirect/redirect-method-worker.html [ Failure ]
 webkit.org/b/161520 imported/w3c/web-platform-tests/fetch/api/redirect/redirect-method.html [ Failure ]
 webkit.org/b/161520 imported/w3c/web-platform-tests/html/browsers/browsing-the-web/read-media/pageload-video.html [ Failure ]
+
+webkit.org/b/161525 http/tests/security/anchor-download-allow-data.html [ Failure ]
+webkit.org/b/161525 http/tests/security/anchor-download-allow-sameorigin.html [ Failure ]
+webkit.org/b/161525 http/tests/security/canvas-remote-read-remote-video-redirect.html [ Failure ]
+webkit.org/b/161525 http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Failure ]
+webkit.org/b/161525 http/tests/security/xssAuditor/link-opens-new-window.html [ Failure ]
+
+webkit.org/b/161526 fast/text/hyphenate-character.html [ Failure ]
+webkit.org/b/161526 fast/text/hyphenate-first-word.html [ Failure ]
+webkit.org/b/161526 fast/text/hyphenate-limit-before-after.html [ Failure ]
+webkit.org/b/161526 fast/text/hyphenate-limit-lines.html [ Failure ]
+webkit.org/b/161526 fast/text/hyphenate-locale.html [ Failure ]
+webkit.org/b/161526 fast/text/hyphens.html [ Failure ]
+
+webkit.org/b/161527 fast/forms/file/file-input-capture.html [ Failure ]
+webkit.org/b/161527 fast/forms/focus-option-control-on-page.html [ Failure ]
+webkit.org/b/161527 fast/forms/listbox-respects-padding-bottom.html [ Failure ]
+webkit.org/b/161527 fast/forms/placeholder-position.html [ Failure ]
+webkit.org/b/161527 fast/forms/search-input-rtl.html [ Failure ]
+webkit.org/b/161527 fast/forms/search-rtl.html [ Failure ]
+webkit.org/b/161527 fast/forms/select-non-native-rendering-direction.html [ Failure ]
+webkit.org/b/161527 fast/forms/select-writing-direction-natural.html [ Failure ]
+webkit.org/b/161527 fast/forms/validity-assertion-inserting-into-datalist.html [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [205331] trunk/LayoutTests

2016-09-01 Thread gyuyoung . kim
Title: [205331] trunk/LayoutTests








Revision 205331
Author gyuyoung@webkit.org
Date 2016-09-01 18:22:37 -0700 (Thu, 01 Sep 2016)


Log Message
[EFL] Gardening faliure and timeout tests on 2th Sep.

Unreviewed EFL gardening.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (205330 => 205331)

--- trunk/LayoutTests/ChangeLog	2016-09-02 01:19:42 UTC (rev 205330)
+++ trunk/LayoutTests/ChangeLog	2016-09-02 01:22:37 UTC (rev 205331)
@@ -1,3 +1,11 @@
+2016-09-01  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Gardening faliure and timeout tests on 2th Sep.
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations:
+
 2016-09-01  Ricky Mondello  <rmonde...@apple.com>
 
 YouTube Flash plug-in replacement facility should not insert showinfo=0 into iframe URLs


Modified: trunk/LayoutTests/platform/efl/TestExpectations (205330 => 205331)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-09-02 01:19:42 UTC (rev 205330)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-09-02 01:22:37 UTC (rev 205331)
@@ -2668,3 +2668,22 @@
 webkit.org/b/161376 media/video-playback-restriction-play-before-load.html [ Failure ]
 webkit.org/b/161376 media/video-restricted-no-preload-auto.html [ Failure ]
 webkit.org/b/161376 media/volume-bar-empty-when-muted.html [ Failure ]
+
+webkit.org/b/161519 http/tests/navigation/ping-attribute/anchor-cookie.html [ Timeout ]
+webkit.org/b/161519 http/tests/navigation/ping-attribute/anchor-cross-origin-from-https.html [ Timeout ]
+webkit.org/b/161519 http/tests/navigation/ping-attribute/anchor-cross-origin.html [ Timeout ]
+webkit.org/b/161519 http/tests/navigation/ping-attribute/anchor-same-origin.html [ Timeout ]
+webkit.org/b/161519 http/tests/navigation/ping-attribute/area-cookie.html [ Timeout ]
+webkit.org/b/161519 http/tests/navigation/ping-attribute/area-cross-origin-from-https.html [ Timeout ]
+webkit.org/b/161519 http/tests/navigation/ping-attribute/area-cross-origin.html [ Timeout ]
+webkit.org/b/161519 http/tests/navigation/ping-attribute/area-same-origin.html [ Timeout ]
+
+webkit.org/b/161520 imported/w3c/web-platform-tests/IndexedDB/idb_webworkers.htm [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/XMLHttpRequest/headers-normalize-response.htm [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/XMLHttpRequest/send-network-error-sync-events.sub.htm [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/dom/events/EventTarget-dispatchEvent.html [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/fetch/api/basic/request-headers-worker.html [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/fetch/api/basic/request-headers.html [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/fetch/api/redirect/redirect-method-worker.html [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/fetch/api/redirect/redirect-method.html [ Failure ]
+webkit.org/b/161520 imported/w3c/web-platform-tests/html/browsers/browsing-the-web/read-media/pageload-video.html [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [205279] trunk/Tools

2016-08-31 Thread gyuyoung . kim
Title: [205279] trunk/Tools








Revision 205279
Author gyuyoung@webkit.org
Date 2016-08-31 22:47:16 -0700 (Wed, 31 Aug 2016)


Log Message
[EFL] Small clean up in MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=161428

Reviewed by Yusuke Suzuki.

This patch resizes MiniBrowser, add *char* constants for scheme,
does line breaking, and remove unnecessary spaces.

* MiniBrowser/efl/main.c:
(on_mouse_wheel):
(history_list_hide):
(script_execute_callback):
(on_key_down):
(on_url_changed):
(on_error):
(on_color_picker_request):
(url_from_user_input):
(url_load_from_user_input):
(on_back_button_clicked):
(on_search_case_option_changed):
(on_search_word_start_option_changed):
(on_list_item_select):
(navigation_button_longpress_process):
(on_navigation_policy_decision):
(window_create):
(parse_cookies_policy):

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/MiniBrowser/efl/main.c




Diff

Modified: trunk/Tools/ChangeLog (205278 => 205279)

--- trunk/Tools/ChangeLog	2016-09-01 03:48:34 UTC (rev 205278)
+++ trunk/Tools/ChangeLog	2016-09-01 05:47:16 UTC (rev 205279)
@@ -1,3 +1,32 @@
+2016-08-31  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Small clean up in MiniBrowser
+https://bugs.webkit.org/show_bug.cgi?id=161428
+
+Reviewed by Yusuke Suzuki.
+
+This patch resizes MiniBrowser, add *char* constants for scheme,
+does line breaking, and remove unnecessary spaces.
+
+* MiniBrowser/efl/main.c:
+(on_mouse_wheel):
+(history_list_hide):
+(script_execute_callback):
+(on_key_down):
+(on_url_changed):
+(on_error):
+(on_color_picker_request):
+(url_from_user_input):
+(url_load_from_user_input):
+(on_back_button_clicked):
+(on_search_case_option_changed):
+(on_search_word_start_option_changed):
+(on_list_item_select):
+(navigation_button_longpress_process):
+(on_navigation_policy_decision):
+(window_create):
+(parse_cookies_policy):
+
 2016-08-31  Alex Christensen  <achristen...@webkit.org>
 
 Implement IPv6 parsing in URLParser


Modified: trunk/Tools/MiniBrowser/efl/main.c (205278 => 205279)

--- trunk/Tools/MiniBrowser/efl/main.c	2016-09-01 03:48:34 UTC (rev 205278)
+++ trunk/Tools/MiniBrowser/efl/main.c	2016-09-01 05:47:16 UTC (rev 205279)
@@ -30,6 +30,9 @@
 
 static const char DEFAULT_URL[] = "http://www.ewebkit.org/";
 static const char APP_NAME[] = "EFL MiniBrowser";
+static const char _javascript__SCHEME[] = "_javascript_:";
+static const char FILE_SCHEME[] = "file://";
+static const char HTTP_SCHEME[] = "http://";
 static const int TOOL_BAR_ICON_SIZE = 24;
 static const int TOOL_BAR_BUTTON_SIZE = 32;
 static const int SEARCH_FIELD_SIZE = 200;
@@ -55,8 +58,8 @@
 static Eina_Bool fixed_layout_enabled = EINA_TRUE;
 static Eina_Bool separated_process_enabled = EINA_FALSE;
 static Eina_Bool longpress_enabled = EINA_FALSE;
-static int window_width = 800;
-static int window_height = 600;
+static int window_width = 1000;
+static int window_height = 800;
 static int search_flags = EWK_FIND_OPTIONS_SHOW_HIGHLIGHT | EWK_FIND_OPTIONS_WRAP_AROUND | EWK_FIND_OPTIONS_CASE_INSENSITIVE;
 /* Default value of device_pixel_ratio is '0' so that we don't set custom device
  * scale factor unless it's required by the User. */
@@ -126,7 +129,7 @@
 Evas_Object *history_list;
 Eina_List *history_list_items;
 } history;
-int current_zoom_level; 
+int current_zoom_level;
 Tooltip_Information tooltip;
 Color_Selector color_selector;
 struct {
@@ -316,7 +319,7 @@
 elm_object_disabled_set(window->forward_button, !ewk_view_forward_possible(ewk_view));
 } else if (ev->z == 1 && ewk_view_back_possible(ewk_view)) {
 ewk_view_back(ewk_view);
-elm_object_disabled_set(window->back_button, !ewk_view_back_possible(ewk_view));   
+elm_object_disabled_set(window->back_button, !ewk_view_back_possible(ewk_view));
 }
 } else if (ctrlPressed) {
 if (ev->z == -1 && zoom_level_set(ewk_view, window->current_zoom_level + 1)) {
@@ -466,21 +469,21 @@
 evas_object_focus_set(window->ewk_view, EINA_TRUE);
 }
 
-static void 
+static void
 history_list_hide(Browser_Window *window)
 {
 /* Hide history list */
 evas_object_hide(window->history.history_box);
 evas_object_hide(window->history.history_list);
-
+
 /* Dereference the list items and clear the history list */
-void *data;
+void *data;
 EINA_LIST_FREE(window->history.history_list_items, data) {
 ewk_object_unref(data);
 }
 
 elm_genlist_clear(window->history.history_list);
-
+
 /* Give focus back to the view */
 elm_object_focus_set(window->history.history_box, EINA_FALSE);
 elm_object_focus_set(win

[webkit-changes] [205179] trunk/LayoutTests

2016-08-30 Thread gyuyoung . kim
Title: [205179] trunk/LayoutTests








Revision 205179
Author gyuyoung@webkit.org
Date 2016-08-30 04:11:38 -0700 (Tue, 30 Aug 2016)


Log Message
[EFL] Gardening on failure tests

Unreviewed EFL gardening.

media control and IndexedDB tests have been failed.
Mark them to failure.

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-08-30

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (205178 => 205179)

--- trunk/LayoutTests/ChangeLog	2016-08-30 08:57:54 UTC (rev 205178)
+++ trunk/LayoutTests/ChangeLog	2016-08-30 11:11:38 UTC (rev 205179)
@@ -1,3 +1,14 @@
+2016-08-30  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+[EFL] Gardening on failure tests
+
+Unreviewed EFL gardening.
+
+media control and IndexedDB tests have been failed.
+Mark them to failure.
+
+* platform/efl/TestExpectations:
+
 2016-08-30  Jiewen Tan  <jiewen_...@apple.com>
 
  Unreviewed, update iOS simulator WK1 flaky tests.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (205178 => 205179)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-08-30 08:57:54 UTC (rev 205178)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-08-30 11:11:38 UTC (rev 205179)
@@ -2648,3 +2648,23 @@
 webkit.org/b/158649 fast/text/chinese-font-name-aliases-2.html [ ImageOnlyFailure ]
 
 webkit.org/b/159754 workers/bomb.html [ Slow ]
+
+webkit.org/b/161374 storage/indexeddb/modern/blob-simple-workers.html [ Failure ]
+webkit.org/b/161374 storage/indexeddb/modern/idbversionchangeevent-constructor.html [ Failure ]
+webkit.org/b/161374 storage/indexeddb/modern/workers-enable.html [ Failure ]
+webkit.org/b/161374 storage/indexeddb/pending-version-change-on-exit-private.html [ Failure ]
+webkit.org/b/161374 storage/indexeddb/pending-version-change-stuck-private.html [ Failure ]
+webkit.org/b/161374 storage/indexeddb/pending-version-change-stuck-works-with-terminate-private.html [ Failure ]
+webkit.org/b/161374 storage/indexeddb/transaction-complete-workers-private.html [ Failure ]
+
+webkit.org/b/161376 media/controls-right-click-on-timebar.html [ Failure ]
+webkit.org/b/161376 media/media-controls-accessibility.html [ Failure ]
+webkit.org/b/161376 media/tab-focus-inside-media-elements.html [ Failure ]
+webkit.org/b/161376 media/track/audio/audio-track-mkv-vorbis-language.html [ Failure ]
+webkit.org/b/161376 media/video-canvas-drawing-output.html [ Failure ]
+webkit.org/b/161376 media/video-controls-drop-and-restore-timeline.html [ Failure ]
+webkit.org/b/161376 media/video-controls-show-on-kb-or-ax-event.html [ Failure ]
+webkit.org/b/161376 media/video-controls-to-not-scroll-page-on-load.html [ Failure ]
+webkit.org/b/161376 media/video-playback-restriction-play-before-load.html [ Failure ]
+webkit.org/b/161376 media/video-restricted-no-preload-auto.html [ Failure ]
+webkit.org/b/161376 media/volume-bar-empty-when-muted.html [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [205170] trunk/LayoutTests

2016-08-29 Thread gyuyoung . kim
Title: [205170] trunk/LayoutTests








Revision 205170
Author gyuyoung@webkit.org
Date 2016-08-29 22:18:48 -0700 (Mon, 29 Aug 2016)


Log Message
[EFL] Gardening on Aug 30

Unreviewed gardening. Mark unexpecting passing tests to PASS.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (205169 => 205170)

--- trunk/LayoutTests/ChangeLog	2016-08-30 04:53:17 UTC (rev 205169)
+++ trunk/LayoutTests/ChangeLog	2016-08-30 05:18:48 UTC (rev 205170)
@@ -1,3 +1,11 @@
+2016-08-29  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Gardening on Aug 30
+
+Unreviewed gardening. Mark unexpecting passing tests to PASS.
+
+* platform/efl/TestExpectations:
+
 2016-08-29  Chris Dumez  <cdu...@apple.com>
 
 Unskip several web-platform-tests that are now passing


Modified: trunk/LayoutTests/platform/efl/TestExpectations (205169 => 205170)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-08-30 04:53:17 UTC (rev 205169)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-08-30 05:18:48 UTC (rev 205170)
@@ -835,7 +835,7 @@
 webkit.org/b/103926 media/track/opera/track/track-element/cloneNode.html [ Skip ]
 webkit.org/b/103926 media/track/opera/track/track-element/src-clear-cues.html [ Skip ]
 webkit.org/b/103926 media/track/opera/track/webvtt/parsing/001.html [ Skip ]
-webkit.org/b/103926 media/track/opera/track/webvtt/parsing-cue-data/tests/entities.html [ Skip ] 
+webkit.org/b/103926 media/track/opera/track/webvtt/parsing-cue-data/tests/entities.html [ Skip ]
 webkit.org/b/103926 media/track/opera/track/webvtt/parsing-cue-data/tests/tags.html [ Skip ]
 webkit.org/b/103926 media/track/opera/track/webvtt/rendering/adhoc/12345_timestamps.html [ Skip ]
 webkit.org/b/103926 media/track/opera/track/webvtt/parsing-cue-data/tests/timestamps.html [ Skip ]
@@ -1280,6 +1280,14 @@
 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/sizes/parse-a-sizes-attribute.html [ Pass ]
 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-video-element/video_initially_paused.html [ Pass ]
 imported/w3c/web-platform-tests/html/semantics/grouping-content/the-ol-element/grouping-ol.html [ Pass ]
+imported/w3c/web-platform-tests/IndexedDB/idbcursor_iterating.htm [ Pass ]
+imported/w3c/web-platform-tests/IndexedDB/idbindex-multientry-big.htm [ Pass ]
+imported/w3c/web-platform-tests/dom/nodes/Document-characterSet-normalization.html [ Pass ]
+imported/w3c/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/001.html [ Pass ]
+imported/w3c/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/002.html [ Pass ]
+imported/w3c/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/003.html [ Pass ]
+imported/w3c/web-platform-tests/html/browsers/browsing-the-web/unloading-documents/005.html [ Pass ]
+imported/w3c/web-platform-tests/html/semantics/document-metadata/styling/LinkStyle.html [ Pass ]
 css3/conditional/w3c/at-supports-010.html [ Pass ]
 css3/conditional/w3c/at-supports-014.html [ Pass ]
 fast/borders/border-painting-dashed.html [ Pass ]
@@ -1355,6 +1363,37 @@
 
 webkit.org/b/148695 fast/shadow-dom [ Pass ]
 
+Bug(EFL) fast/text/emoji-gender-2-3.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-2-4.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-2-5.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-2-6.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-2-7.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-2-8.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-2-9.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-3.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-4.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-5.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-6.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-8.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-9.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-fe0f-3.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-fe0f-4.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-fe0f-5.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-fe0f-6.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-fe0f-7.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-fe0f-8.html [ Pass ]
+Bug(EFL) fast/text/emoji-gender-fe0f-9.html [ Pass ]
+
+Bug(EFL) fast/scrolling/rtl-scrollbars-alternate-body-dir-attr-does-not-update-scrollbar-placement-2.html [ Pass ]
+Bug(EFL) fast/scrolling/rtl-scrollbars-alternate-iframe-body-dir-attr-does-not-update-scrollbar-placement.html [ Pass ]
+Bug(EFL) fast/scrolling/rtl-scrollbars-elementFromPoint-static.html [ Pass ]
+Bug(EFL) fast/scrolling/rtl-scrollbars-listbox-scroll.html [ Pass ]
+Bug(EFL) fast/scrolling/rtl-scrollbars-listbox-select-left.html [ Pass ]
+Bug(EFL) fast/scrolling/rtl-scrollbars-listbox-select-right.html [ Pass ]
+Bug(EFL) fast/scrolling/rtl-scrollbars-listbox.html [ Pass ]
+Bug(EFL) fast/scrolling/rtl-scrollbars-overflow-elementFromPoint.

[webkit-changes] [205167] trunk/Source/WebKit2

2016-08-29 Thread gyuyoung . kim
Title: [205167] trunk/Source/WebKit2








Revision 205167
Author gyuyoung@webkit.org
Date 2016-08-29 18:56:37 -0700 (Mon, 29 Aug 2016)


Log Message
Unreviewed EFL/GTK build fix since r205150

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-08-29

* CMakeLists.txt: Add Shared/FrameInfoData.cpp.

Modified Paths

trunk/Source/WebKit2/CMakeLists.txt
trunk/Source/WebKit2/ChangeLog




Diff

Modified: trunk/Source/WebKit2/CMakeLists.txt (205166 => 205167)

--- trunk/Source/WebKit2/CMakeLists.txt	2016-08-30 01:48:10 UTC (rev 205166)
+++ trunk/Source/WebKit2/CMakeLists.txt	2016-08-30 01:56:37 UTC (rev 205167)
@@ -240,6 +240,7 @@
 Shared/ContextMenuContextData.cpp
 Shared/EditorState.cpp
 Shared/FontInfo.cpp
+Shared/FrameInfoData.cpp
 Shared/LayerTreeContext.cpp
 Shared/LoadParameters.cpp
 Shared/NavigationActionData.cpp


Modified: trunk/Source/WebKit2/ChangeLog (205166 => 205167)

--- trunk/Source/WebKit2/ChangeLog	2016-08-30 01:48:10 UTC (rev 205166)
+++ trunk/Source/WebKit2/ChangeLog	2016-08-30 01:56:37 UTC (rev 205167)
@@ -1,3 +1,9 @@
+2016-08-29  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+Unreviewed EFL/GTK build fix since r205150
+
+* CMakeLists.txt: Add Shared/FrameInfoData.cpp.
+
 2016-08-29  Anders Carlsson  <ander...@apple.com>
 
 Get rid of ChildProcessProxy::fromConnection






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [205009] trunk/Source/WebKit2

2016-08-26 Thread gyuyoung . kim
Title: [205009] trunk/Source/WebKit2








Revision 205009
Author gyuyoung@webkit.org
Date 2016-08-26 01:46:02 -0700 (Fri, 26 Aug 2016)


Log Message
Unreviewed EFL build fix since r204996.

Patch by Gyuyoung Kim <gyuyoung@navercorp.com> on 2016-08-26

* UIProcess/efl/WebPageProxyEfl.cpp:
(WebKit::WebPageProxy::editorStateChanged):
(WebKit::WebPageProxy::setThemePath):
(WebKit::WebPageProxy::confirmComposition):
(WebKit::WebPageProxy::setComposition):
(WebKit::WebPageProxy::cancelComposition):

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (205008 => 205009)

--- trunk/Source/WebKit2/ChangeLog	2016-08-26 08:04:02 UTC (rev 205008)
+++ trunk/Source/WebKit2/ChangeLog	2016-08-26 08:46:02 UTC (rev 205009)
@@ -1,3 +1,14 @@
+2016-08-26  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+Unreviewed EFL build fix since r204996.
+
+* UIProcess/efl/WebPageProxyEfl.cpp:
+(WebKit::WebPageProxy::editorStateChanged):
+(WebKit::WebPageProxy::setThemePath):
+(WebKit::WebPageProxy::confirmComposition):
+(WebKit::WebPageProxy::setComposition):
+(WebKit::WebPageProxy::cancelComposition):
+
 2016-08-25  Carlos Garcia Campos  <cgar...@igalia.com>
 
 Unreviewed. Fix GTK+ build after r204986 and r204996.


Modified: trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp (205008 => 205009)

--- trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp	2016-08-26 08:04:02 UTC (rev 205008)
+++ trunk/Source/WebKit2/UIProcess/efl/WebPageProxyEfl.cpp	2016-08-26 08:46:02 UTC (rev 205009)
@@ -69,7 +69,7 @@
 void WebPageProxy::editorStateChanged(const EditorState& editorState)
 {
 m_editorState = editorState;
-
+
 if (editorState.shouldIgnoreCompositionSelectionChange)
 return;
 m_pageClient.updateTextInputState();
@@ -80,7 +80,7 @@
 if (!isValid())
 return;
 
-process().send(Messages::WebPage::SetThemePath(themePath), m_pageID, 0);
+process().send(Messages::WebPage::SetThemePath(themePath), m_pageID);
 }
 
 void WebPageProxy::createPluginContainer(uint64_t&)
@@ -108,7 +108,7 @@
 if (!isValid())
 return;
 
-process().send(Messages::WebPage::ConfirmComposition(compositionString), m_pageID, 0);
+process().send(Messages::WebPage::ConfirmComposition(compositionString), m_pageID);
 }
 
 void WebPageProxy::setComposition(const String& compositionString, Vector& underlines, int cursorPosition)
@@ -116,7 +116,7 @@
 if (!isValid())
 return;
 
-process().send(Messages::WebPage::SetComposition(compositionString, underlines, cursorPosition), m_pageID, 0);
+process().send(Messages::WebPage::SetComposition(compositionString, underlines, cursorPosition), m_pageID);
 }
 
 void WebPageProxy::cancelComposition()
@@ -124,7 +124,7 @@
 if (!isValid())
 return;
 
-process().send(Messages::WebPage::CancelComposition(), m_pageID, 0);
+process().send(Messages::WebPage::CancelComposition(), m_pageID);
 }
 
 #if HAVE(ACCESSIBILITY) && defined(HAVE_ECORE_X)






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [205007] trunk/Tools

2016-08-26 Thread gyuyoung . kim
Title: [205007] trunk/Tools








Revision 205007
Author gyuyoung@webkit.org
Date 2016-08-26 00:36:01 -0700 (Fri, 26 Aug 2016)


Log Message
[EFL] Change homepage url to www.ewebkit.org on MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=161184

Reviewed by Carlos Garcia Campos.

* MiniBrowser/efl/main.c: Set www.ewebkit.org.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/MiniBrowser/efl/main.c




Diff

Modified: trunk/Tools/ChangeLog (205006 => 205007)

--- trunk/Tools/ChangeLog	2016-08-26 07:34:55 UTC (rev 205006)
+++ trunk/Tools/ChangeLog	2016-08-26 07:36:01 UTC (rev 205007)
@@ -1,3 +1,12 @@
+2016-08-26  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Change homepage url to www.ewebkit.org on MiniBrowser
+https://bugs.webkit.org/show_bug.cgi?id=161184
+
+Reviewed by Carlos Garcia Campos.
+
+* MiniBrowser/efl/main.c: Set www.ewebkit.org.
+
 2016-08-25  Aakash Jain  <aakash_j...@apple.com>
 
 ews queues should update status server when they start processing patch


Modified: trunk/Tools/MiniBrowser/efl/main.c (205006 => 205007)

--- trunk/Tools/MiniBrowser/efl/main.c	2016-08-26 07:34:55 UTC (rev 205006)
+++ trunk/Tools/MiniBrowser/efl/main.c	2016-08-26 07:36:01 UTC (rev 205007)
@@ -28,7 +28,7 @@
 
 extern int efreet_cache_update;
 
-static const char DEFAULT_URL[] = "http://www.google.com/";
+static const char DEFAULT_URL[] = "http://www.ewebkit.org/";
 static const char APP_NAME[] = "EFL MiniBrowser";
 static const int TOOL_BAR_ICON_SIZE = 24;
 static const int TOOL_BAR_BUTTON_SIZE = 32;






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [204690] trunk/Source/WebKit2

2016-08-20 Thread gyuyoung . kim
Title: [204690] trunk/Source/WebKit2








Revision 204690
Author gyuyoung@webkit.org
Date 2016-08-20 22:21:37 -0700 (Sat, 20 Aug 2016)


Log Message
Unreviewed EFL build fix since r204668

r204668 changed MessageDecoder with Decoder though, MessageDecoder remained
in EFL specific files.

* UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h:
* UIProcess/WebVibrationProxy.h:
* WebProcess/Battery/WebBatteryManager.h:
* WebProcess/WebPage/AcceleratedDrawingArea.cpp:
(WebKit::AcceleratedDrawingArea::didReceiveCoordinatedLayerTreeHostMessage):
* WebProcess/WebPage/AcceleratedDrawingArea.h:
* WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h:
* WebProcess/WebPage/LayerTreeHost.h:

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h
trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h
trunk/Source/WebKit2/WebProcess/Battery/WebBatteryManager.h
trunk/Source/WebKit2/WebProcess/WebPage/AcceleratedDrawingArea.cpp
trunk/Source/WebKit2/WebProcess/WebPage/AcceleratedDrawingArea.h
trunk/Source/WebKit2/WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h
trunk/Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h




Diff

Modified: trunk/Source/WebKit2/ChangeLog (204689 => 204690)

--- trunk/Source/WebKit2/ChangeLog	2016-08-21 03:26:27 UTC (rev 204689)
+++ trunk/Source/WebKit2/ChangeLog	2016-08-21 05:21:37 UTC (rev 204690)
@@ -1,3 +1,19 @@
+2016-08-20  Gyuyoung Kim  <gyuyoung@navercorp.com>
+
+Unreviewed EFL build fix since r204668
+
+r204668 changed MessageDecoder with Decoder though, MessageDecoder remained
+in EFL specific files.
+
+* UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h:
+* UIProcess/WebVibrationProxy.h:
+* WebProcess/Battery/WebBatteryManager.h:
+* WebProcess/WebPage/AcceleratedDrawingArea.cpp:
+(WebKit::AcceleratedDrawingArea::didReceiveCoordinatedLayerTreeHostMessage):
+* WebProcess/WebPage/AcceleratedDrawingArea.h:
+* WebProcess/WebPage/CoordinatedGraphics/CoordinatedLayerTreeHost.h:
+* WebProcess/WebPage/LayerTreeHost.h:
+
 2016-08-20  Dan Bernstein  <m...@apple.com>
 
 [Mac] Web Content service with a restricted entitlement may load arbitrary dylibs


Modified: trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h (204689 => 204690)

--- trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h	2016-08-21 03:26:27 UTC (rev 204689)
+++ trunk/Source/WebKit2/UIProcess/CoordinatedGraphics/CoordinatedLayerTreeHostProxy.h	2016-08-21 05:21:37 UTC (rev 204690)
@@ -58,7 +58,7 @@
 void dispatchUpdate(std::function<void()>);
 
 // IPC::MessageReceiver
-void didReceiveMessage(IPC::Connection&, IPC::MessageDecoder&) override;
+void didReceiveMessage(IPC::Connection&, IPC::Decoder&) override;
 
 WebPageProxy& m_webPageProxy;
 RefPtr m_scene;


Modified: trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h (204689 => 204690)

--- trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h	2016-08-21 03:26:27 UTC (rev 204689)
+++ trunk/Source/WebKit2/UIProcess/WebVibrationProxy.h	2016-08-21 05:21:37 UTC (rev 204690)
@@ -50,7 +50,7 @@
 explicit WebVibrationProxy(WebPageProxy*);
 
 // IPC::MessageReceiver
-void didReceiveMessage(IPC::Connection&, IPC::MessageDecoder&) override;
+void didReceiveMessage(IPC::Connection&, IPC::Decoder&) override;
 
 void vibrate(uint32_t vibrationTime);
 void cancelVibration();


Modified: trunk/Source/WebKit2/WebProcess/Battery/WebBatteryManager.h (204689 => 204690)

--- trunk/Source/WebKit2/WebProcess/Battery/WebBatteryManager.h	2016-08-21 03:26:27 UTC (rev 204689)
+++ trunk/Source/WebKit2/WebProcess/Battery/WebBatteryManager.h	2016-08-21 05:21:37 UTC (rev 204690)
@@ -58,7 +58,7 @@
 
 private:
 // IPC::MessageReceiver
-void didReceiveMessage(IPC::Connection&, IPC::MessageDecoder&) override;
+void didReceiveMessage(IPC::Connection&, IPC::Decoder&) override;
 
 WebProcess* m_process;
 HashSet<WebPage*> m_pageSet;


Modified: trunk/Source/WebKit2/WebProcess/WebPage/AcceleratedDrawingArea.cpp (204689 => 204690)

--- trunk/Source/WebKit2/WebProcess/WebPage/AcceleratedDrawingArea.cpp	2016-08-21 03:26:27 UTC (rev 204689)
+++ trunk/Source/WebKit2/WebProcess/WebPage/AcceleratedDrawingArea.cpp	2016-08-21 05:21:37 UTC (rev 204690)
@@ -346,7 +346,7 @@
 }
 
 #if USE(COORDINATED_GRAPHICS_MULTIPROCESS)
-void AcceleratedDrawingArea::didReceiveCoordinatedLayerTreeHostMessage(IPC::Connection& connection, IPC::MessageDecoder& decoder)
+void AcceleratedDrawingArea::didReceiveCoordinatedLayerTreeHostMessage(IPC::Connection& connection, IPC::Decoder& decoder)
 {
 m_layerTreeHost->didReceiveCoordinatedLayerTreeHostMessage(connection, decoder);
 }


Modified:

[webkit-changes] [204444] trunk/Tools

2016-08-13 Thread gyuyoung . kim
Title: [20] trunk/Tools








Revision 20
Author gyuyoung@webkit.org
Date 2016-08-12 23:11:49 -0700 (Fri, 12 Aug 2016)


Log Message
Skip to check directories existence in build-webkit
https://bugs.webkit.org/show_bug.cgi?id=160691

Reviewed by Alex Christensen.

CMake checks if directories are there itself. So CMake ports
don't need to check it in the build-webkit script.

* Scripts/build-webkit:
* Scripts/webkitdirs.pm:
(determineSourceDir):
(isCMakeBuild):

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/build-webkit
trunk/Tools/Scripts/webkitdirs.pm




Diff

Modified: trunk/Tools/ChangeLog (204443 => 20)

--- trunk/Tools/ChangeLog	2016-08-13 05:05:10 UTC (rev 204443)
+++ trunk/Tools/ChangeLog	2016-08-13 06:11:49 UTC (rev 20)
@@ -1,3 +1,18 @@
+2016-08-12  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Skip to check directories existence in build-webkit
+https://bugs.webkit.org/show_bug.cgi?id=160691
+
+Reviewed by Alex Christensen.
+
+CMake checks if directories are there itself. So CMake ports
+don't need to check it in the build-webkit script.
+
+* Scripts/build-webkit:
+* Scripts/webkitdirs.pm:
+(determineSourceDir):
+(isCMakeBuild):
+
 2016-08-12  Alex Christensen  <achristen...@webkit.org>
 
 Make URLParser work with URLs missing URL parts


Modified: trunk/Tools/Scripts/build-webkit (204443 => 20)

--- trunk/Tools/Scripts/build-webkit	2016-08-13 05:05:10 UTC (rev 204443)
+++ trunk/Tools/Scripts/build-webkit	2016-08-13 06:11:49 UTC (rev 20)
@@ -146,13 +146,16 @@
 my @projects = ("Source/_javascript_Core", "Source/WebCore", "Source/WebKit");
 
 # Build WTF as a separate static library on ports which support it.
-splice @projects, 0, 0, "Source/WTF" if isAppleMacWebKit() or isAppleWinWebKit() or isWinCairo();
+splice @projects, 0, 0, "Source/WTF" if isAppleWebKit() or isWinCairo();
 
 splice @projects, 0, 0, "Source/bmalloc" if isAppleMacWebKit();
 
-for my $dir (@projects) {
-if (! -d $dir) {
-die "Error: No $dir directory found. Please do a fresh checkout.\n";
+# Ports using CMake will check if directories exist in the CMake configuration.
+if (!isCMakeBuild()) {
+for my $dir (@projects) {
+if (! -d $dir) {
+die "Error: No $dir directory found. Please do a fresh checkout.\n";
+}
 }
 }
 


Modified: trunk/Tools/Scripts/webkitdirs.pm (204443 => 20)

--- trunk/Tools/Scripts/webkitdirs.pm	2016-08-13 05:05:10 UTC (rev 204443)
+++ trunk/Tools/Scripts/webkitdirs.pm	2016-08-13 06:11:49 UTC (rev 20)
@@ -167,8 +167,8 @@
 $sourceDir =~ s|/+$||; # Remove trailing '/' as we would die later
 
 # walks up path checking each directory to see if it is the main WebKit project dir, 
-# defined by containing Sources, WebCore, and WebKit
-until ((-d File::Spec->catdir($sourceDir, "Source") && -d File::Spec->catdir($sourceDir, "Source", "WebCore") && -d File::Spec->catdir($sourceDir, "Source", "WebKit")) || (-d File::Spec->catdir($sourceDir, "Internal") && -d File::Spec->catdir($sourceDir, "OpenSource")))
+# defined by containing Sources, WebCore, and _javascript_Core.
+until ((-d File::Spec->catdir($sourceDir, "Source") && -d File::Spec->catdir($sourceDir, "Source", "WebCore") && -d File::Spec->catdir($sourceDir, "Source", "_javascript_Core")) || (-d File::Spec->catdir($sourceDir, "Internal") && -d File::Spec->catdir($sourceDir, "OpenSource")))
 {
 if ($sourceDir !~ s|/[^/]+$||) {
 die "Could not find top level webkit directory above source directory using FindBin.\n";






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [204277] trunk/Tools

2016-08-09 Thread gyuyoung . kim
Title: [204277] trunk/Tools








Revision 204277
Author gyuyoung@webkit.org
Date 2016-08-09 00:25:25 -0700 (Tue, 09 Aug 2016)


Log Message
Do not check if WebKitLibraries folder exists on EFL and GTK
https://bugs.webkit.org/show_bug.cgi?id=160659

Reviewed by Csaba Osztrogonác.

Though WebKitLibraries is only needed by mac and win ports,
EFL and GTK ports have checked whether it exists.

* Scripts/build-webkit:

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/Scripts/build-webkit




Diff

Modified: trunk/Tools/ChangeLog (204276 => 204277)

--- trunk/Tools/ChangeLog	2016-08-09 03:26:49 UTC (rev 204276)
+++ trunk/Tools/ChangeLog	2016-08-09 07:25:25 UTC (rev 204277)
@@ -1,3 +1,15 @@
+2016-08-09  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Do not check if WebKitLibraries folder exists on EFL and GTK
+https://bugs.webkit.org/show_bug.cgi?id=160659
+
+Reviewed by Csaba Osztrogonác.
+
+Though WebKitLibraries is only needed by mac and win ports,
+EFL and GTK ports have checked whether it exists.
+
+* Scripts/build-webkit:
+
 2016-08-08  Aakash Jain  <aakash_j...@apple.com>
 
 Some EWS console logs doesn't go to log file


Modified: trunk/Tools/Scripts/build-webkit (204276 => 204277)

--- trunk/Tools/Scripts/build-webkit	2016-08-09 03:26:49 UTC (rev 204276)
+++ trunk/Tools/Scripts/build-webkit	2016-08-09 07:25:25 UTC (rev 204277)
@@ -156,7 +156,7 @@
 }
 }
 
-if (!isIOSWebKit() && !-d "WebKitLibraries") {
+if ((isAppleWebKit() || isWinCairo()) && !-d "WebKitLibraries") {
 die "Error: No WebKitLibraries directory found. Please do a fresh checkout.\n";
 }
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [204239] trunk/Source/WebCore

2016-08-06 Thread gyuyoung . kim
/Source/WebCore/Modules/mediastream/RTCDTMFSender.cpp
trunk/Source/WebCore/Modules/mediastream/RTCDTMFSender.h
trunk/Source/WebCore/Modules/mediastream/RTCDataChannelEvent.cpp
trunk/Source/WebCore/Modules/mediastream/RTCDataChannelEvent.h
trunk/Source/WebCore/Modules/mediastream/RTCIceServer.h
trunk/Source/WebCore/Modules/mediastream/RTCStatsReport.h
trunk/Source/WebCore/Modules/mediastream/SourceInfo.cpp
trunk/Source/WebCore/Modules/mediastream/SourceInfo.h
trunk/Source/WebCore/Modules/mediastream/UserMediaClient.h
trunk/Source/WebCore/Modules/mediastream/UserMediaRequest.cpp
trunk/Source/WebCore/Modules/mediastream/UserMediaRequest.h
trunk/Source/WebCore/Modules/webdatabase/Database.cpp
trunk/Source/WebCore/html/HTMLMediaElement.cpp
trunk/Source/WebCore/html/HTMLMediaElement.h
trunk/Source/WebCore/html/HTMLTrackElement.cpp
trunk/Source/WebCore/html/HTMLTrackElement.h
trunk/Source/WebCore/html/track/TextTrack.cpp
trunk/Source/WebCore/html/track/TextTrack.h
trunk/Source/WebCore/platform/gamepad/efl/GamepadsEfl.cpp
trunk/Source/WebCore/platform/graphics/SourceBufferPrivateClient.h
trunk/Source/WebCore/platform/graphics/avfoundation/objc/SourceBufferPrivateAVFObjC.mm
trunk/Source/WebCore/platform/mediastream/MediaStreamCreationClient.h
trunk/Source/WebCore/platform/mediastream/mac/AVCaptureDeviceManager.h
trunk/Source/WebCore/platform/mediastream/mac/AVCaptureDeviceManager.mm
trunk/Source/WebCore/platform/mediastream/mac/RealtimeMediaSourceCenterMac.cpp
trunk/Source/WebCore/platform/mock/mediasource/MockSourceBufferPrivate.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (204238 => 204239)

--- trunk/Source/WebCore/ChangeLog	2016-08-07 04:21:37 UTC (rev 204238)
+++ trunk/Source/WebCore/ChangeLog	2016-08-07 05:52:23 UTC (rev 204239)
@@ -1,3 +1,95 @@
+2016-08-06  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Purge all uses of PassRefPtr in WebCore/Modules
+https://bugs.webkit.org/show_bug.cgi?id=159965
+
+Reviewed by Chris Dumez.
+
+Final clean up in Modules directory.
+
+No new tests, no behavior changes.
+
+* Modules/gamepad/deprecated/GamepadList.cpp:
+(WebCore::GamepadList::set):
+* Modules/gamepad/deprecated/GamepadList.h:
+* Modules/indexeddb/IDBGetResult.h:
+(WebCore::IDBGetResult::IDBGetResult):
+* Modules/indieui/UIRequestEvent.cpp:
+(WebCore::UIRequestEvent::create):
+(WebCore::UIRequestEvent::UIRequestEvent):
+* Modules/indieui/UIRequestEvent.h:
+(WebCore::UIRequestEvent::receiver):
+* Modules/mediasource/MediaSourceRegistry.h:
+* Modules/mediasource/SampleMap.cpp:
+(WebCore::SampleMap::addSample):
+* Modules/mediasource/SampleMap.h:
+(WebCore::SampleMap::addRange):
+* Modules/mediasource/SourceBuffer.cpp:
+(WebCore::SourceBuffer::sourceBufferPrivateDidReceiveSample):
+(WebCore::SourceBuffer::textTrackAddCue):
+(WebCore::SourceBuffer::textTrackRemoveCue):
+* Modules/mediasource/SourceBuffer.h:
+* Modules/mediastream/CaptureDeviceManager.cpp:
+(CaptureDeviceManager::bestSourcesForTypeAndConstraints):
+* Modules/mediastream/CaptureDeviceManager.h:
+* Modules/mediastream/MediaDevicesRequest.h:
+* Modules/mediastream/MediaStream.cpp:
+(WebCore::MediaStream::internalAddTrack):
+(WebCore::MediaStream::internalRemoveTrack):
+* Modules/mediastream/MediaStreamRegistry.h:
+* Modules/mediastream/MediaStreamTrackEvent.cpp:
+(WebCore::MediaStreamTrackEvent::create):
+(WebCore::MediaStreamTrackEvent::MediaStreamTrackEvent):
+(WebCore::MediaStreamTrackEvent::track):
+* Modules/mediastream/MediaStreamTrackEvent.h:
+* Modules/mediastream/MediaTrackConstraints.cpp:
+(WebCore::MediaTrackConstraints::create):
+(WebCore::MediaTrackConstraints::MediaTrackConstraints):
+(WebCore::MediaTrackConstraints::optional):
+* Modules/mediastream/MediaTrackConstraints.h:
+* Modules/mediastream/RTCDTMFSender.cpp:
+(WebCore::RTCDTMFSender::create):
+(WebCore::RTCDTMFSender::RTCDTMFSender):
+* Modules/mediastream/RTCDTMFSender.h:
+* Modules/mediastream/RTCDataChannelEvent.cpp:
+(WebCore::RTCDataChannelEvent::create):
+(WebCore::RTCDataChannelEvent::RTCDataChannelEvent):
+(WebCore::RTCDataChannelEvent::channel):
+* Modules/mediastream/RTCDataChannelEvent.h:
+* Modules/mediastream/RTCIceServer.h:
+* Modules/mediastream/RTCStatsReport.h:
+* Modules/mediastream/SourceInfo.cpp:
+(WebCore::SourceInfo::create):
+(WebCore::SourceInfo::SourceInfo):
+* Modules/mediastream/SourceInfo.h:
+* Modules/mediastream/UserMediaClient.h:
+* Modules/mediastream/UserMediaRequest.cpp:
+(WebCore::UserMediaRequest::UserMediaRequest):
+(WebCore::UserMed

[webkit-changes] [203340] trunk/Source/WebCore

2016-07-18 Thread gyuyoung . kim
Title: [203340] trunk/Source/WebCore








Revision 203340
Author gyuyoung@webkit.org
Date 2016-07-17 23:13:28 -0700 (Sun, 17 Jul 2016)


Log Message
Clean up PassRefPtr uses in Modules/encryptedmedia, Modules/speech, and Modules/quota
https://bugs.webkit.org/show_bug.cgi?id=159701

Reviewed by Alex Christensen.

No new tests, no behavior changes.

* Modules/encryptedmedia/CDM.h:
* Modules/encryptedmedia/MediaKeySession.h:
* Modules/encryptedmedia/MediaKeys.h:
* Modules/quota/DOMWindowQuota.cpp:
* Modules/quota/StorageErrorCallback.cpp:
(WebCore::StorageErrorCallback::CallbackTask::CallbackTask):
* Modules/quota/StorageErrorCallback.h:
* Modules/quota/StorageInfo.h:
* Modules/quota/StorageQuota.h:
* Modules/speech/DOMWindowSpeechSynthesis.cpp:
* Modules/speech/SpeechSynthesis.cpp:
(WebCore::SpeechSynthesis::getVoices):
(WebCore::SpeechSynthesis::startSpeakingImmediately):
(WebCore::SpeechSynthesis::speak):
(WebCore::SpeechSynthesis::cancel):
(WebCore::SpeechSynthesis::handleSpeakingCompleted):
(WebCore::SpeechSynthesis::boundaryEventOccurred):
(WebCore::SpeechSynthesis::didStartSpeaking):
(WebCore::SpeechSynthesis::didPauseSpeaking):
(WebCore::SpeechSynthesis::didResumeSpeaking):
(WebCore::SpeechSynthesis::didFinishSpeaking):
(WebCore::SpeechSynthesis::speakingErrorOccurred):
* Modules/speech/SpeechSynthesis.h:
* Modules/speech/SpeechSynthesisEvent.h:
* Modules/speech/SpeechSynthesisUtterance.h:
* Modules/speech/SpeechSynthesisVoice.cpp:
(WebCore::SpeechSynthesisVoice::create):
(WebCore::SpeechSynthesisVoice::SpeechSynthesisVoice):
* Modules/speech/SpeechSynthesisVoice.h:
* platform/PlatformSpeechSynthesizer.h:
* platform/efl/PlatformSpeechSynthesisProviderEfl.cpp:
(WebCore::PlatformSpeechSynthesisProviderEfl::fireSpeechEvent):
* platform/mock/PlatformSpeechSynthesizerMock.cpp:
(WebCore::PlatformSpeechSynthesizerMock::speakingFinished):
(WebCore::PlatformSpeechSynthesizerMock::speak):
(WebCore::PlatformSpeechSynthesizerMock::cancel):
(WebCore::PlatformSpeechSynthesizerMock::pause):
(WebCore::PlatformSpeechSynthesizerMock::resume):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Modules/encryptedmedia/CDM.h
trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.h
trunk/Source/WebCore/Modules/encryptedmedia/MediaKeys.h
trunk/Source/WebCore/Modules/quota/DOMWindowQuota.cpp
trunk/Source/WebCore/Modules/quota/StorageErrorCallback.cpp
trunk/Source/WebCore/Modules/quota/StorageErrorCallback.h
trunk/Source/WebCore/Modules/quota/StorageInfo.h
trunk/Source/WebCore/Modules/quota/StorageQuota.h
trunk/Source/WebCore/Modules/speech/DOMWindowSpeechSynthesis.cpp
trunk/Source/WebCore/Modules/speech/SpeechSynthesis.cpp
trunk/Source/WebCore/Modules/speech/SpeechSynthesis.h
trunk/Source/WebCore/Modules/speech/SpeechSynthesisEvent.h
trunk/Source/WebCore/Modules/speech/SpeechSynthesisUtterance.h
trunk/Source/WebCore/Modules/speech/SpeechSynthesisVoice.cpp
trunk/Source/WebCore/Modules/speech/SpeechSynthesisVoice.h
trunk/Source/WebCore/platform/PlatformSpeechSynthesizer.h
trunk/Source/WebCore/platform/efl/PlatformSpeechSynthesisProviderEfl.cpp
trunk/Source/WebCore/platform/ios/PlatformSpeechSynthesizerIOS.mm
trunk/Source/WebCore/platform/mac/PlatformSpeechSynthesizerMac.mm
trunk/Source/WebCore/platform/mock/PlatformSpeechSynthesizerMock.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (203339 => 203340)

--- trunk/Source/WebCore/ChangeLog	2016-07-18 06:08:04 UTC (rev 203339)
+++ trunk/Source/WebCore/ChangeLog	2016-07-18 06:13:28 UTC (rev 203340)
@@ -1,3 +1,51 @@
+2016-07-17  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Clean up PassRefPtr uses in Modules/encryptedmedia, Modules/speech, and Modules/quota
+https://bugs.webkit.org/show_bug.cgi?id=159701
+
+Reviewed by Alex Christensen.
+
+No new tests, no behavior changes.
+
+* Modules/encryptedmedia/CDM.h:
+* Modules/encryptedmedia/MediaKeySession.h:
+* Modules/encryptedmedia/MediaKeys.h:
+* Modules/quota/DOMWindowQuota.cpp:
+* Modules/quota/StorageErrorCallback.cpp:
+(WebCore::StorageErrorCallback::CallbackTask::CallbackTask):
+* Modules/quota/StorageErrorCallback.h:
+* Modules/quota/StorageInfo.h:
+* Modules/quota/StorageQuota.h:
+* Modules/speech/DOMWindowSpeechSynthesis.cpp:
+* Modules/speech/SpeechSynthesis.cpp:
+(WebCore::SpeechSynthesis::getVoices):
+(WebCore::SpeechSynthesis::startSpeakingImmediately):
+(WebCore::SpeechSynthesis::speak):
+(WebCore::SpeechSynthesis::cancel):
+(WebCore::SpeechSynthesis::handleSpeakingCompleted):
+(WebCore::SpeechSynthesis::boundaryEventOccurred):
+(WebCore::SpeechSynthesis::didStartSpeaking):
+(WebCore::SpeechSynthesis::didPauseSpeaking):
+(WebCore::SpeechSynthesis::didResumeSpeaking):
+(WebCore::SpeechSynthesis::didFinishSpeaking):
+(WebCore::SpeechSynthesis::speakingErrorOccurred):
+

[webkit-changes] [203146] trunk/Source/WebCore

2016-07-12 Thread gyuyoung . kim
Title: [203146] trunk/Source/WebCore








Revision 203146
Author gyuyoung@webkit.org
Date 2016-07-12 18:24:22 -0700 (Tue, 12 Jul 2016)


Log Message
Purge PassRefPtr in Modules/webdatabase
https://bugs.webkit.org/show_bug.cgi?id=159255

Reviewed by Benjamin Poulain.

As a step to remove PassRefPtr use, this patch cleans it up in Modules/webdatabase.

Additionally unnecessary spaces and tabs are removed too.

* Modules/webdatabase/ChangeVersionWrapper.cpp:
* Modules/webdatabase/DOMWindowWebDatabase.h:
* Modules/webdatabase/Database.cpp:
(WebCore::Database::Database):
(WebCore::Database::~Database):
(WebCore::Database::scheduleTransaction):
(WebCore::Database::runTransaction):
* Modules/webdatabase/Database.h:
* Modules/webdatabase/DatabaseAuthorizer.cpp:
(WebCore::DatabaseAuthorizer::allowRead):
* Modules/webdatabase/DatabaseManager.cpp:
(WebCore::DatabaseManager::openDatabase):
(WebCore::DatabaseManager::fullPathForDatabase):
(WebCore::DatabaseManager::detailsForNameAndOrigin):
* Modules/webdatabase/DatabaseManager.h:
* Modules/webdatabase/DatabaseTask.cpp:
(WebCore::DatabaseTransactionTask::DatabaseTransactionTask):
* Modules/webdatabase/DatabaseTask.h:
* Modules/webdatabase/SQLCallbackWrapper.h:
(WebCore::SQLCallbackWrapper::SQLCallbackWrapper):
* Modules/webdatabase/SQLResultSetRowList.h:
* Modules/webdatabase/SQLStatement.cpp:
(WebCore::SQLStatement::SQLStatement):
(WebCore::SQLStatement::sqlError):
(WebCore::SQLStatement::sqlResultSet):
* Modules/webdatabase/SQLStatement.h:
* Modules/webdatabase/SQLTransaction.h:
* Modules/webdatabase/SQLTransactionBackend.cpp:
(WebCore::SQLTransactionBackend::create):
(WebCore::SQLTransactionBackend::SQLTransactionBackend):
(WebCore::SQLTransactionBackend::transactionError):
* Modules/webdatabase/SQLTransactionBackend.h:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Modules/webdatabase/ChangeVersionWrapper.cpp
trunk/Source/WebCore/Modules/webdatabase/DOMWindowWebDatabase.h
trunk/Source/WebCore/Modules/webdatabase/Database.cpp
trunk/Source/WebCore/Modules/webdatabase/Database.h
trunk/Source/WebCore/Modules/webdatabase/DatabaseAuthorizer.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseManager.h
trunk/Source/WebCore/Modules/webdatabase/DatabaseServer.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseTask.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseTask.h
trunk/Source/WebCore/Modules/webdatabase/SQLCallbackWrapper.h
trunk/Source/WebCore/Modules/webdatabase/SQLResultSetRowList.h
trunk/Source/WebCore/Modules/webdatabase/SQLStatement.cpp
trunk/Source/WebCore/Modules/webdatabase/SQLStatement.h
trunk/Source/WebCore/Modules/webdatabase/SQLTransaction.h
trunk/Source/WebCore/Modules/webdatabase/SQLTransactionBackend.cpp
trunk/Source/WebCore/Modules/webdatabase/SQLTransactionBackend.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (203145 => 203146)

--- trunk/Source/WebCore/ChangeLog	2016-07-13 00:55:47 UTC (rev 203145)
+++ trunk/Source/WebCore/ChangeLog	2016-07-13 01:24:22 UTC (rev 203146)
@@ -1,3 +1,47 @@
+2016-07-12  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Purge PassRefPtr in Modules/webdatabase
+https://bugs.webkit.org/show_bug.cgi?id=159255
+
+Reviewed by Benjamin Poulain.
+
+As a step to remove PassRefPtr use, this patch cleans it up in Modules/webdatabase.
+
+Additionally unnecessary spaces and tabs are removed too.
+
+* Modules/webdatabase/ChangeVersionWrapper.cpp:
+* Modules/webdatabase/DOMWindowWebDatabase.h:
+* Modules/webdatabase/Database.cpp:
+(WebCore::Database::Database):
+(WebCore::Database::~Database):
+(WebCore::Database::scheduleTransaction):
+(WebCore::Database::runTransaction):
+* Modules/webdatabase/Database.h:
+* Modules/webdatabase/DatabaseAuthorizer.cpp:
+(WebCore::DatabaseAuthorizer::allowRead):
+* Modules/webdatabase/DatabaseManager.cpp:
+(WebCore::DatabaseManager::openDatabase):
+(WebCore::DatabaseManager::fullPathForDatabase):
+(WebCore::DatabaseManager::detailsForNameAndOrigin):
+* Modules/webdatabase/DatabaseManager.h:
+* Modules/webdatabase/DatabaseTask.cpp:
+(WebCore::DatabaseTransactionTask::DatabaseTransactionTask):
+* Modules/webdatabase/DatabaseTask.h:
+* Modules/webdatabase/SQLCallbackWrapper.h:
+(WebCore::SQLCallbackWrapper::SQLCallbackWrapper):
+* Modules/webdatabase/SQLResultSetRowList.h:
+* Modules/webdatabase/SQLStatement.cpp:
+(WebCore::SQLStatement::SQLStatement):
+(WebCore::SQLStatement::sqlError):
+(WebCore::SQLStatement::sqlResultSet):
+* Modules/webdatabase/SQLStatement.h:
+* Modules/webdatabase/SQLTransaction.h:
+* Modules/webdatabase/SQLTransactionBackend.cpp:
+(WebCore::SQLTransactionBackend::create):
+(WebCore::SQLTransacti

[webkit-changes] [203115] trunk

2016-07-12 Thread gyuyoung . kim
Title: [203115] trunk








Revision 203115
Author gyuyoung@webkit.org
Date 2016-07-12 07:36:34 -0700 (Tue, 12 Jul 2016)


Log Message
Remove ENABLE_CSS3_TEXT_LINE_BREAK flag
https://bugs.webkit.org/show_bug.cgi?id=159671

Reviewed by Csaba Osztrogonác.

ENABLE_CSS3_TEXT_LINE_BREAK feature was implemented without guards.
https://bugs.webkit.org/show_bug.cgi?id=89235

So this guard can be removed in build scripts.

.:

* Source/cmake/OptionsMac.cmake:
* Source/cmake/WebKitFeatures.cmake:

Source/_javascript_Core:

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

* Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

* Configurations/FeatureDefines.xcconfig:

Tools:

* Scripts/webkitperl/FeatureList.pm:
* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

Modified Paths

trunk/ChangeLog
trunk/Source/_javascript_Core/ChangeLog
trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig
trunk/Source/WebKit/mac/ChangeLog
trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig
trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig
trunk/Source/cmake/OptionsMac.cmake
trunk/Source/cmake/WebKitFeatures.cmake
trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitperl/FeatureList.pm
trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig




Diff

Modified: trunk/ChangeLog (203114 => 203115)

--- trunk/ChangeLog	2016-07-12 13:05:13 UTC (rev 203114)
+++ trunk/ChangeLog	2016-07-12 14:36:34 UTC (rev 203115)
@@ -1,3 +1,18 @@
+2016-07-12  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Remove ENABLE_CSS3_TEXT_LINE_BREAK flag
+https://bugs.webkit.org/show_bug.cgi?id=159671
+
+Reviewed by Csaba Osztrogonác.
+
+ENABLE_CSS3_TEXT_LINE_BREAK feature was implemented without guards.
+https://bugs.webkit.org/show_bug.cgi?id=89235
+
+So this guard can be removed in build scripts.
+
+* Source/cmake/OptionsMac.cmake:
+* Source/cmake/WebKitFeatures.cmake:
+
 2016-07-12  Per Arne Vollan  <pvol...@apple.com>
 
 [Win] DLLs are missing version information.


Modified: trunk/Source/_javascript_Core/ChangeLog (203114 => 203115)

--- trunk/Source/_javascript_Core/ChangeLog	2016-07-12 13:05:13 UTC (rev 203114)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-07-12 14:36:34 UTC (rev 203115)
@@ -1,3 +1,17 @@
+2016-07-12  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Remove ENABLE_CSS3_TEXT_LINE_BREAK flag
+https://bugs.webkit.org/show_bug.cgi?id=159671
+
+Reviewed by Csaba Osztrogonác.
+
+ENABLE_CSS3_TEXT_LINE_BREAK feature was implemented without guards.
+https://bugs.webkit.org/show_bug.cgi?id=89235
+
+So this guard can be removed in build scripts.
+
+* Configurations/FeatureDefines.xcconfig:
+
 2016-07-12  Per Arne Vollan  <pvol...@apple.com>
 
 [Win] DLLs are missing version information.


Modified: trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig (203114 => 203115)

--- trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2016-07-12 13:05:13 UTC (rev 203114)
+++ trunk/Source/_javascript_Core/Configurations/FeatureDefines.xcconfig	2016-07-12 14:36:34 UTC (rev 203115)
@@ -64,7 +64,6 @@
 ENABLE_CSS_SELECTORS_LEVEL4 = ENABLE_CSS_SELECTORS_LEVEL4;
 ENABLE_CSS_SHAPES = ENABLE_CSS_SHAPES;
 ENABLE_CSS3_TEXT = ;
-ENABLE_CSS3_TEXT_LINE_BREAK = ;
 ENABLE_CURSOR_VISIBILITY = ENABLE_CURSOR_VISIBILITY;
 ENABLE_CUSTOM_SCHEME_HANDLER = ;
 ENABLE_DASHBOARD_SUPPORT[sdk=macosx*] = ENABLE_DASHBOARD_SUPPORT;
@@ -199,4 +198,4 @@
 
 ENABLE_CUSTOM_ELEMENTS = ENABLE_CUSTOM_ELEMENTS;
 
-FEATURE_DEFINES = $(ENABLE_3D_TRANSFORMS) $(ENABLE_ACCELERATED_2D_CANVAS) $(ENABLE_ACCELERATED_OVERFLOW_SCROLLING) $(ENABLE_APPLE_PAY) $(ENABLE_AVF_CAPTIONS) $(ENABLE_ATTACHMENT_ELEMENT) $(ENABLE_CACHE_PARTITIONING) $(ENABLE_CANVAS_PATH) $(ENABLE_CANVAS_PROXY) $(ENABLE_CHANNEL_MESSAGING) $(ENABLE_ES6_MODULES) $(ENABLE_CONTENT_FILTERING) $(ENABLE_CSP_NEXT) $(ENABLE_CSS_ANIMATIONS_LEVEL_2) $(ENABLE_CSS_BOX_DECORATION_BREAK) $(ENABLE_CSS_COMPOSITING) $(ENABLE_CSS_DEVICE_ADAPTATION) $(ENABLE_CSS_GRID_LAYOUT) $(ENABLE_CSS_IMAGE_ORIENTATION) $(ENABLE_CSS_IMAGE_RESOLUTION) $(ENABLE_CSS_REGIONS) $(ENABLE_CSS_SELECTORS_LEVEL4) $(ENABLE_CSS_SHAPES) $(ENABLE_CSS3_TEXT) $(ENABLE_CSS3_TEXT_LINE_BREAK) $(ENABLE_CURSOR_VISIBILITY) $(ENABLE_CUSTOM_SCHEME_HANDLER) $(ENABLE_DASHBOARD_SUPPORT) $(ENABLE_DATALIST_ELEMENT) $(ENABLE_DATA_TRANSFER_ITEMS) $(ENABLE_DETAILS_ELEMENT) $(ENABLE_DEVICE_ORIENTATION) $(ENABLE_DOM4_EVENTS_CONSTRUCTOR) $(ENABLE_ENCRYPTED_MEDIA) $(ENABLE_ENCRYPTED_
 MEDIA_V2) $(ENABLE_FETCH_API) $(ENABLE_FILTERS_LEVEL_2) $(ENABLE_FONT_LOAD_EVENTS) $(ENABLE_FULLSCREEN_API) $(ENABLE_GAMEPAD) $(ENABLE_GAMEPAD_DEPRECATED) $(ENABLE_GEOLOCATION) $(ENABLE_ICONDA

[webkit-changes] [203109] trunk/Source

2016-07-12 Thread gyuyoung . kim
/WebCoreSupport/WebPlatformStrategies.cpp
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (203108 => 203109)

--- trunk/Source/WebCore/ChangeLog	2016-07-12 05:59:55 UTC (rev 203108)
+++ trunk/Source/WebCore/ChangeLog	2016-07-12 06:24:30 UTC (rev 203109)
@@ -1,3 +1,69 @@
+2016-07-11  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Purge PassRefPtr in platform/efl and platform/mac 
+https://bugs.webkit.org/show_bug.cgi?id=159548
+
+Reviewed by Alex Christensen.
+
+Remove all use of PassRefPtr and clean up unnecessary tabs and spaces.
+WebKit2 codes are also changed because of setBufferForType()'s modification.
+
+No new tests, no behavior changes.
+
+* platform/PasteboardStrategy.h:
+* platform/PlatformPasteboard.h:
+* platform/PlatformSpeechSynthesizer.h:
+* platform/SerializedPlatformRepresentation.h:
+* platform/efl/PlatformSpeechSynthesisProviderEfl.cpp:
+(WebCore::PlatformSpeechSynthesisProviderEfl::speak):
+* platform/efl/PlatformSpeechSynthesisProviderEfl.h:
+* platform/efl/PlatformSpeechSynthesizerEfl.cpp:
+(WebCore::PlatformSpeechSynthesizer::speak):
+* platform/ios/PlatformPasteboardIOS.mm:
+(WebCore::PlatformPasteboard::setBufferForType):
+* platform/ios/PlatformSpeechSynthesizerIOS.mm:
+(SOFT_LINK_CONSTANT):
+(-[WebSpeechSynthesisWrapper initWithSpeechSynthesizer:]):
+(-[WebSpeechSynthesisWrapper mapSpeechRateToPlatformRate:]):
+(-[WebSpeechSynthesisWrapper speakUtterance:]):
+(-[WebSpeechSynthesisWrapper pause]):
+(-[WebSpeechSynthesisWrapper resume]):
+(-[WebSpeechSynthesisWrapper cancel]):
+(-[WebSpeechSynthesisWrapper speechSynthesizer:didStartSpeechUtterance:]):
+(-[WebSpeechSynthesisWrapper speechSynthesizer:didFinishSpeechUtterance:]):
+(-[WebSpeechSynthesisWrapper speechSynthesizer:didPauseSpeechUtterance:]):
+(-[WebSpeechSynthesisWrapper speechSynthesizer:didContinueSpeechUtterance:]):
+(-[WebSpeechSynthesisWrapper speechSynthesizer:didCancelSpeechUtterance:]):
+(-[WebSpeechSynthesisWrapper speechSynthesizer:willSpeakRangeOfSpeechString:utterance:]):
+(WebCore::PlatformSpeechSynthesizer::speak):
+* platform/mac/PasteboardMac.mm:
+(WebCore::Pasteboard::write):
+* platform/mac/PlatformPasteboardMac.mm:
+(WebCore::PlatformPasteboard::getTypes):
+(WebCore::PlatformPasteboard::getPathnamesForType):
+(WebCore::PlatformPasteboard::color):
+(WebCore::PlatformPasteboard::copy):
+(WebCore::PlatformPasteboard::setBufferForType):
+(WebCore::PlatformPasteboard::setPathnamesForType):
+* platform/mac/PlatformSpeechSynthesizerMac.mm:
+(-[WebSpeechSynthesisWrapper initWithSpeechSynthesizer:]):
+(-[WebSpeechSynthesisWrapper speakUtterance:]):
+(-[WebSpeechSynthesisWrapper pause]):
+(-[WebSpeechSynthesisWrapper resume]):
+(-[WebSpeechSynthesisWrapper cancel]):
+(-[WebSpeechSynthesisWrapper speechSynthesizer:didFinishSpeaking:]):
+(WebCore::PlatformSpeechSynthesizer::initializeVoiceList):
+(WebCore::PlatformSpeechSynthesizer::speak):
+* platform/mac/SerializedPlatformRepresentationMac.h:
+* platform/mac/SerializedPlatformRepresentationMac.mm:
+(WebCore::SerializedPlatformRepresentationMac::data):
+(WebCore::jsValueWithValueInContext):
+* platform/mock/PlatformSpeechSynthesizerMock.cpp:
+(WebCore::PlatformSpeechSynthesizerMock::speakingFinished):
+(WebCore::PlatformSpeechSynthesizerMock::speak):
+(WebCore::PlatformSpeechSynthesizerMock::cancel):
+* platform/mock/PlatformSpeechSynthesizerMock.h:
+
 2016-07-11  Frederic Wang  <fw...@igalia.org>
 
 Move parsing of mspace attributes to a MathMLSpaceElement class


Modified: trunk/Source/WebCore/platform/PasteboardStrategy.h (203108 => 203109)

--- trunk/Source/WebCore/platform/PasteboardStrategy.h	2016-07-12 05:59:55 UTC (rev 203108)
+++ trunk/Source/WebCore/platform/PasteboardStrategy.h	2016-07-12 06:24:30 UTC (rev 203109)
@@ -20,7 +20,7 @@
  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
 #ifndef PasteboardStrategy_h
@@ -60,11 +60,11 @@
 virtual String uniqueName() = 0;
 virtual Color color(const String& pasteboardName) = 0;
 virtual URL url(const String& pasteboardName) = 0;
-
+
 virtual long addTypes(const Vector& pasteboardTypes, const String& pasteboardName) = 0;
 

[webkit-changes] [202968] trunk/Source/WebCore

2016-07-08 Thread gyuyoung . kim
Title: [202968] trunk/Source/WebCore








Revision 202968
Author gyuyoung@webkit.org
Date 2016-07-07 23:32:41 -0700 (Thu, 07 Jul 2016)


Log Message
Clean up PassRefPtr in Modules/webaudio
https://bugs.webkit.org/show_bug.cgi?id=159540

Reviewed by Alex Christensen.

Purge PassRefPtr in webaudio directory.

No new tests, no behavior changes.

* Modules/webaudio/AsyncAudioDecoder.h:
* Modules/webaudio/AudioBasicProcessorNode.h:
* Modules/webaudio/AudioBuffer.h:
* Modules/webaudio/AudioBufferSourceNode.h:
* Modules/webaudio/AudioListener.h:
* Modules/webaudio/AudioParam.h:
* Modules/webaudio/AudioParamTimeline.h:
(WebCore::AudioParamTimeline::ParamEvent::ParamEvent):
* Modules/webaudio/AudioProcessingEvent.cpp:
(WebCore::AudioProcessingEvent::AudioProcessingEvent):
* Modules/webaudio/AudioProcessingEvent.h:
(WebCore::AudioProcessingEvent::create):
* Modules/webaudio/ChannelMergerNode.h:
* Modules/webaudio/ChannelSplitterNode.h:
* Modules/webaudio/GainNode.h:
* Modules/webaudio/MediaElementAudioSourceNode.h:
* Modules/webaudio/MediaStreamAudioDestinationNode.h:
* Modules/webaudio/MediaStreamAudioSource.cpp:
(WebCore::MediaStreamAudioSource::addAudioConsumer):
* Modules/webaudio/MediaStreamAudioSource.h:
* Modules/webaudio/OfflineAudioCompletionEvent.cpp:
(WebCore::OfflineAudioCompletionEvent::create):
(WebCore::OfflineAudioCompletionEvent::OfflineAudioCompletionEvent):
* Modules/webaudio/OfflineAudioCompletionEvent.h:
* Modules/webaudio/OfflineAudioDestinationNode.h:
* Modules/webaudio/OscillatorNode.h:
* Modules/webaudio/PeriodicWave.h:
* Modules/webaudio/ScriptProcessorNode.h:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Modules/webaudio/AsyncAudioDecoder.h
trunk/Source/WebCore/Modules/webaudio/AudioBasicProcessorNode.h
trunk/Source/WebCore/Modules/webaudio/AudioBuffer.h
trunk/Source/WebCore/Modules/webaudio/AudioBufferSourceNode.h
trunk/Source/WebCore/Modules/webaudio/AudioListener.h
trunk/Source/WebCore/Modules/webaudio/AudioParam.h
trunk/Source/WebCore/Modules/webaudio/AudioParamTimeline.h
trunk/Source/WebCore/Modules/webaudio/AudioProcessingEvent.cpp
trunk/Source/WebCore/Modules/webaudio/AudioProcessingEvent.h
trunk/Source/WebCore/Modules/webaudio/ChannelMergerNode.h
trunk/Source/WebCore/Modules/webaudio/ChannelSplitterNode.h
trunk/Source/WebCore/Modules/webaudio/GainNode.h
trunk/Source/WebCore/Modules/webaudio/MediaElementAudioSourceNode.h
trunk/Source/WebCore/Modules/webaudio/MediaStreamAudioDestinationNode.h
trunk/Source/WebCore/Modules/webaudio/MediaStreamAudioSource.cpp
trunk/Source/WebCore/Modules/webaudio/MediaStreamAudioSource.h
trunk/Source/WebCore/Modules/webaudio/OfflineAudioCompletionEvent.cpp
trunk/Source/WebCore/Modules/webaudio/OfflineAudioCompletionEvent.h
trunk/Source/WebCore/Modules/webaudio/OfflineAudioDestinationNode.h
trunk/Source/WebCore/Modules/webaudio/OscillatorNode.h
trunk/Source/WebCore/Modules/webaudio/PeriodicWave.h
trunk/Source/WebCore/Modules/webaudio/ScriptProcessorNode.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (202967 => 202968)

--- trunk/Source/WebCore/ChangeLog	2016-07-08 06:28:58 UTC (rev 202967)
+++ trunk/Source/WebCore/ChangeLog	2016-07-08 06:32:41 UTC (rev 202968)
@@ -1,3 +1,43 @@
+2016-07-07  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Clean up PassRefPtr in Modules/webaudio
+https://bugs.webkit.org/show_bug.cgi?id=159540
+
+Reviewed by Alex Christensen.
+
+Purge PassRefPtr in webaudio directory.
+
+No new tests, no behavior changes.
+
+* Modules/webaudio/AsyncAudioDecoder.h:
+* Modules/webaudio/AudioBasicProcessorNode.h:
+* Modules/webaudio/AudioBuffer.h:
+* Modules/webaudio/AudioBufferSourceNode.h:
+* Modules/webaudio/AudioListener.h:
+* Modules/webaudio/AudioParam.h:
+* Modules/webaudio/AudioParamTimeline.h:
+(WebCore::AudioParamTimeline::ParamEvent::ParamEvent):
+* Modules/webaudio/AudioProcessingEvent.cpp:
+(WebCore::AudioProcessingEvent::AudioProcessingEvent):
+* Modules/webaudio/AudioProcessingEvent.h:
+(WebCore::AudioProcessingEvent::create):
+* Modules/webaudio/ChannelMergerNode.h:
+* Modules/webaudio/ChannelSplitterNode.h:
+* Modules/webaudio/GainNode.h:
+* Modules/webaudio/MediaElementAudioSourceNode.h:
+* Modules/webaudio/MediaStreamAudioDestinationNode.h:
+* Modules/webaudio/MediaStreamAudioSource.cpp:
+(WebCore::MediaStreamAudioSource::addAudioConsumer):
+* Modules/webaudio/MediaStreamAudioSource.h:
+* Modules/webaudio/OfflineAudioCompletionEvent.cpp:
+(WebCore::OfflineAudioCompletionEvent::create):
+(WebCore::OfflineAudioCompletionEvent::OfflineAudioCompletionEvent):
+* Modules/webaudio/OfflineAudioCompletionEvent.h:
+* Modules/webaudio/OfflineAudioDestinationNode.h:
+* Modules/webaudio/OscillatorNode.h:
+* Modules/webaudio/Perio

[webkit-changes] [202813] trunk

2016-07-05 Thread gyuyoung . kim
Title: [202813] trunk








Revision 202813
Author gyuyoung@webkit.org
Date 2016-07-04 23:35:42 -0700 (Mon, 04 Jul 2016)


Log Message
[EFL] Remove mac configuration dependency in WebKit Version definition
https://bugs.webkit.org/show_bug.cgi?id=159407

Reviewed by Yusuke Suzuki.

.:

EFL port has been used Version.xconfig file in WebKit/mac/Configurations.
in order to generate WebKitVersion.h file. But it can be simply defined
in cmake.

* Source/cmake/OptionsEfl.cmake:

Source/WebCore:

EFL port has been used Version.xconfig file in WebKit/mac/Configurations
in order to generate WebKitVersion.h file. But it can be simply defined
in cmake.

* PlatformEfl.cmake: Remove WebKitVersion.h generation.
* platform/efl/UserAgentEfl.cpp:
(WebCore::versionForUAString): Use USER_AGENT_EFL_MAJOR_VERSION and USER_AGENT_EFL_MINOR_VERSION.

Modified Paths

trunk/ChangeLog
trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/PlatformEfl.cmake
trunk/Source/WebCore/platform/efl/UserAgentEfl.cpp
trunk/Source/cmake/OptionsEfl.cmake




Diff

Modified: trunk/ChangeLog (202812 => 202813)

--- trunk/ChangeLog	2016-07-05 06:16:09 UTC (rev 202812)
+++ trunk/ChangeLog	2016-07-05 06:35:42 UTC (rev 202813)
@@ -1,3 +1,16 @@
+2016-07-04  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Remove mac configuration dependency in WebKit Version definition
+https://bugs.webkit.org/show_bug.cgi?id=159407
+
+Reviewed by Yusuke Suzuki.
+
+EFL port has been used Version.xconfig file in WebKit/mac/Configurations.
+in order to generate WebKitVersion.h file. But it can be simply defined
+in cmake.
+
+* Source/cmake/OptionsEfl.cmake:
+
 2016-07-03  Dan Bernstein  <m...@apple.com>
 
 [Xcode] With default verbosity, make(1) output no longer hides environment variable listings


Modified: trunk/Source/WebCore/ChangeLog (202812 => 202813)

--- trunk/Source/WebCore/ChangeLog	2016-07-05 06:16:09 UTC (rev 202812)
+++ trunk/Source/WebCore/ChangeLog	2016-07-05 06:35:42 UTC (rev 202813)
@@ -1,3 +1,18 @@
+2016-07-04  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Remove mac configuration dependency in WebKit Version definition
+https://bugs.webkit.org/show_bug.cgi?id=159407
+
+Reviewed by Yusuke Suzuki.
+
+EFL port has been used Version.xconfig file in WebKit/mac/Configurations
+in order to generate WebKitVersion.h file. But it can be simply defined
+in cmake.
+
+* PlatformEfl.cmake: Remove WebKitVersion.h generation.
+* platform/efl/UserAgentEfl.cpp:
+(WebCore::versionForUAString): Use USER_AGENT_EFL_MAJOR_VERSION and USER_AGENT_EFL_MINOR_VERSION.
+
 2016-07-04  Carlos Garcia Campos  <cgar...@igalia.com>
 
 [Coordinated Graphics] Modernize and cleanup CompositingCoordinator


Modified: trunk/Source/WebCore/PlatformEfl.cmake (202812 => 202813)

--- trunk/Source/WebCore/PlatformEfl.cmake	2016-07-05 06:16:09 UTC (rev 202812)
+++ trunk/Source/WebCore/PlatformEfl.cmake	2016-07-05 06:35:42 UTC (rev 202813)
@@ -252,14 +252,6 @@
 ${WEBCORE_DIR}/Modules/mediacontrols/mediaControlsBase.js
 )
 
-add_custom_command(
-OUTPUT ${DERIVED_SOURCES_WEBCORE_DIR}/WebKitVersion.h
-MAIN_DEPENDENCY ${WEBKIT_DIR}/scripts/generate-webkitversion.pl
-DEPENDS ${WEBKIT_DIR}/mac/Configurations/Version.xcconfig
-COMMAND ${PERL_EXECUTABLE} ${WEBKIT_DIR}/scripts/generate-webkitversion.pl --config ${WEBKIT_DIR}/mac/Configurations/Version.xcconfig --outputDir ${DERIVED_SOURCES_WEBCORE_DIR}
-VERBATIM)
-list(APPEND WebCore_DERIVED_SOURCES ${DERIVED_SOURCES_WEBCORE_DIR}/WebKitVersion.h)
-
 set(WebCore_USER_AGENT_SCRIPTS_DEPENDENCIES ${WEBCORE_DIR}/platform/efl/RenderThemeEfl.cpp)
 
 list(APPEND WebCore_LIBRARIES


Modified: trunk/Source/WebCore/platform/efl/UserAgentEfl.cpp (202812 => 202813)

--- trunk/Source/WebCore/platform/efl/UserAgentEfl.cpp	2016-07-05 06:16:09 UTC (rev 202812)
+++ trunk/Source/WebCore/platform/efl/UserAgentEfl.cpp	2016-07-05 06:35:42 UTC (rev 202813)
@@ -26,7 +26,6 @@
 #include "config.h"
 #include "UserAgentEfl.h"
 
-#include "WebKitVersion.h"
 #include 
 
 #if OS(UNIX)
@@ -57,11 +56,7 @@
 
 static const char* versionForUAString()
 {
-#define MAKE_STRING(value) #value
-#define MAKE_VERSION(major, minor) MAKE_STRING(major) "." MAKE_STRING(minor)
-return MAKE_VERSION(WEBKIT_MAJOR_VERSION, WEBKIT_MINOR_VERSION);
-#undef MAKE_STRING
-#undef MAKE_VERSION
+return USER_AGENT_EFL_MAJOR_VERSION "." USER_AGENT_EFL_MINOR_VERSION;
 }
 
 String standardUserAgent(const String& applicationName, const String& applicationVersion)


Modified: trunk/Source/cmake/OptionsEfl.cmake (202812 => 202813)

--- trunk/Source/cmake/OptionsEfl.cmake	2016-07-05 06:16:09 UTC (rev 202812)
+++ trunk/Source/cmake/OptionsEfl.cmake	2016-07-05 06:35:42 UTC (rev 202813)
@@ -39,6 +39,8 @@
 endif ()
 
 add_defini

[webkit-changes] [202676] trunk/Source/WebCore

2016-06-30 Thread gyuyoung . kim
Title: [202676] trunk/Source/WebCore








Revision 202676
Author gyuyoung@webkit.org
Date 2016-06-30 01:14:35 -0700 (Thu, 30 Jun 2016)


Log Message
Purge PassRefPtr in Modules/webdatabase
https://bugs.webkit.org/show_bug.cgi?id=159255

Reviewed by Benjamin Poulain.

As a step to remove PassRefPtr use, this patch cleans it up in Modules/webdatabase.

Additionally unnecessary spaces and tabs are removed too.

* Modules/webdatabase/ChangeVersionWrapper.cpp:
* Modules/webdatabase/DOMWindowWebDatabase.h:
* Modules/webdatabase/Database.cpp:
(WebCore::Database::Database):
(WebCore::Database::~Database):
(WebCore::Database::scheduleTransaction):
(WebCore::Database::runTransaction):
* Modules/webdatabase/Database.h:
* Modules/webdatabase/DatabaseAuthorizer.cpp:
(WebCore::DatabaseAuthorizer::allowRead):
* Modules/webdatabase/DatabaseManager.cpp:
(WebCore::DatabaseManager::openDatabase):
(WebCore::DatabaseManager::fullPathForDatabase):
(WebCore::DatabaseManager::detailsForNameAndOrigin):
* Modules/webdatabase/DatabaseManager.h:
* Modules/webdatabase/DatabaseTask.cpp:
(WebCore::DatabaseTransactionTask::DatabaseTransactionTask):
* Modules/webdatabase/DatabaseTask.h:
* Modules/webdatabase/SQLCallbackWrapper.h:
(WebCore::SQLCallbackWrapper::SQLCallbackWrapper):
* Modules/webdatabase/SQLResultSetRowList.h:
* Modules/webdatabase/SQLStatement.cpp:
(WebCore::SQLStatement::SQLStatement):
(WebCore::SQLStatement::sqlError):
(WebCore::SQLStatement::sqlResultSet):
* Modules/webdatabase/SQLStatement.h:
* Modules/webdatabase/SQLTransaction.h:
* Modules/webdatabase/SQLTransactionBackend.cpp:
(WebCore::SQLTransactionBackend::create):
(WebCore::SQLTransactionBackend::SQLTransactionBackend):
(WebCore::SQLTransactionBackend::transactionError):
* Modules/webdatabase/SQLTransactionBackend.h:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Modules/webdatabase/ChangeVersionWrapper.cpp
trunk/Source/WebCore/Modules/webdatabase/DOMWindowWebDatabase.h
trunk/Source/WebCore/Modules/webdatabase/Database.cpp
trunk/Source/WebCore/Modules/webdatabase/Database.h
trunk/Source/WebCore/Modules/webdatabase/DatabaseAuthorizer.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseManager.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseManager.h
trunk/Source/WebCore/Modules/webdatabase/DatabaseServer.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseTask.cpp
trunk/Source/WebCore/Modules/webdatabase/DatabaseTask.h
trunk/Source/WebCore/Modules/webdatabase/SQLCallbackWrapper.h
trunk/Source/WebCore/Modules/webdatabase/SQLResultSetRowList.h
trunk/Source/WebCore/Modules/webdatabase/SQLStatement.cpp
trunk/Source/WebCore/Modules/webdatabase/SQLStatement.h
trunk/Source/WebCore/Modules/webdatabase/SQLTransaction.h
trunk/Source/WebCore/Modules/webdatabase/SQLTransactionBackend.cpp
trunk/Source/WebCore/Modules/webdatabase/SQLTransactionBackend.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (202675 => 202676)

--- trunk/Source/WebCore/ChangeLog	2016-06-30 07:32:32 UTC (rev 202675)
+++ trunk/Source/WebCore/ChangeLog	2016-06-30 08:14:35 UTC (rev 202676)
@@ -1,3 +1,47 @@
+2016-06-30  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Purge PassRefPtr in Modules/webdatabase
+https://bugs.webkit.org/show_bug.cgi?id=159255
+
+Reviewed by Benjamin Poulain.
+
+As a step to remove PassRefPtr use, this patch cleans it up in Modules/webdatabase.
+
+Additionally unnecessary spaces and tabs are removed too.
+
+* Modules/webdatabase/ChangeVersionWrapper.cpp:
+* Modules/webdatabase/DOMWindowWebDatabase.h:
+* Modules/webdatabase/Database.cpp:
+(WebCore::Database::Database):
+(WebCore::Database::~Database):
+(WebCore::Database::scheduleTransaction):
+(WebCore::Database::runTransaction):
+* Modules/webdatabase/Database.h:
+* Modules/webdatabase/DatabaseAuthorizer.cpp:
+(WebCore::DatabaseAuthorizer::allowRead):
+* Modules/webdatabase/DatabaseManager.cpp:
+(WebCore::DatabaseManager::openDatabase):
+(WebCore::DatabaseManager::fullPathForDatabase):
+(WebCore::DatabaseManager::detailsForNameAndOrigin):
+* Modules/webdatabase/DatabaseManager.h:
+* Modules/webdatabase/DatabaseTask.cpp:
+(WebCore::DatabaseTransactionTask::DatabaseTransactionTask):
+* Modules/webdatabase/DatabaseTask.h:
+* Modules/webdatabase/SQLCallbackWrapper.h:
+(WebCore::SQLCallbackWrapper::SQLCallbackWrapper):
+* Modules/webdatabase/SQLResultSetRowList.h:
+* Modules/webdatabase/SQLStatement.cpp:
+(WebCore::SQLStatement::SQLStatement):
+(WebCore::SQLStatement::sqlError):
+(WebCore::SQLStatement::sqlResultSet):
+* Modules/webdatabase/SQLStatement.h:
+* Modules/webdatabase/SQLTransaction.h:
+* Modules/webdatabase/SQLTransactionBackend.cpp:
+(WebCore::SQLTransactionBackend::create):
+(WebCore::SQLTransacti

[webkit-changes] [202523] trunk/Tools

2016-06-27 Thread gyuyoung . kim
Title: [202523] trunk/Tools








Revision 202523
Author gyuyoung@webkit.org
Date 2016-06-27 17:26:31 -0700 (Mon, 27 Jun 2016)


Log Message
[EFL] Support to build on Debian linux
https://bugs.webkit.org/show_bug.cgi?id=159123

Reviewed by Antonio Gomes.

* efl/install-dependencies: Install libgnutls28-dev.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/efl/install-dependencies




Diff

Modified: trunk/Tools/ChangeLog (202522 => 202523)

--- trunk/Tools/ChangeLog	2016-06-28 00:23:09 UTC (rev 202522)
+++ trunk/Tools/ChangeLog	2016-06-28 00:26:31 UTC (rev 202523)
@@ -1,3 +1,12 @@
+2016-06-27  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Support to build on Debian linux
+https://bugs.webkit.org/show_bug.cgi?id=159123
+
+Reviewed by Antonio Gomes.
+
+* efl/install-dependencies: Install libgnutls28-dev.
+
 2016-06-27  Alex Christensen  <achristen...@webkit.org>
 
 Send canAuthenticateAgainstProtectionSpace calls from NetworkProcess directly to UIProcess


Modified: trunk/Tools/efl/install-dependencies (202522 => 202523)

--- trunk/Tools/efl/install-dependencies	2016-06-28 00:23:09 UTC (rev 202522)
+++ trunk/Tools/efl/install-dependencies	2016-06-28 00:26:31 UTC (rev 202523)
@@ -70,7 +70,7 @@
 libgeoclue-dev \
 libgif-dev \
 libgl1-mesa-dev \
-libgnutls-dev \
+libgnutls28-dev \
 libgpg-error-dev \
 libhyphen-dev \
 libicu-dev \






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [202479] trunk/Source/WebCore

2016-06-26 Thread gyuyoung . kim
Title: [202479] trunk/Source/WebCore








Revision 202479
Author gyuyoung@webkit.org
Date 2016-06-26 22:10:05 -0700 (Sun, 26 Jun 2016)


Log Message
[EFL] Fix build warning when using geoclue2
https://bugs.webkit.org/show_bug.cgi?id=159128

Reviewed by Antonio Gomes.

EFL port has handled build warning as error. So EFL port
hasn't been built when we use geoclue2 library because a generated geoclue2 file
has unused-parameter build warning. To fix it this patch set to ignore the build warning
in the generated geoclue2 file.

* PlatformEfl.cmake:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/PlatformEfl.cmake




Diff

Modified: trunk/Source/WebCore/ChangeLog (202478 => 202479)

--- trunk/Source/WebCore/ChangeLog	2016-06-27 01:29:34 UTC (rev 202478)
+++ trunk/Source/WebCore/ChangeLog	2016-06-27 05:10:05 UTC (rev 202479)
@@ -1,3 +1,17 @@
+2016-06-26  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Fix build warning when using geoclue2
+https://bugs.webkit.org/show_bug.cgi?id=159128
+
+Reviewed by Antonio Gomes.
+
+EFL port has handled build warning as error. So EFL port
+hasn't been built when we use geoclue2 library because a generated geoclue2 file
+has unused-parameter build warning. To fix it this patch set to ignore the build warning
+in the generated geoclue2 file.
+
+* PlatformEfl.cmake:
+
 2016-06-26  Chris Dumez  <cdu...@apple.com>
 
 Regression: HTMLOptionsCollection's named properties have precedence over indexed properties


Modified: trunk/Source/WebCore/PlatformEfl.cmake (202478 => 202479)

--- trunk/Source/WebCore/PlatformEfl.cmake	2016-06-27 01:29:34 UTC (rev 202478)
+++ trunk/Source/WebCore/PlatformEfl.cmake	2016-06-27 05:10:05 UTC (rev 202479)
@@ -232,6 +232,8 @@
  OUTPUT ${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface.c ${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface.h
  COMMAND gdbus-codegen --interface-prefix org.freedesktop.GeoClue2. --c-namespace Geoclue --generate-c-code ${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface ${GEOCLUE_DBUS_INTERFACE}
 )
+# Geoclue2Interface.c generates unused-parameter build warning, it causes build error when using geoclue2 library.
+set_source_files_properties(${DERIVED_SOURCES_WEBCORE_DIR}/Geoclue2Interface.c PROPERTIES COMPILE_FLAGS -Wno-error)
 endif ()
 
 if (ENABLE_GAMEPAD_DEPRECATED)






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [202419] trunk/Source/WebCore

2016-06-24 Thread gyuyoung . kim
Title: [202419] trunk/Source/WebCore








Revision 202419
Author gyuyoung@webkit.org
Date 2016-06-24 00:39:58 -0700 (Fri, 24 Jun 2016)


Log Message
Unreviewed EFL build fix.

There is forward declaration build error on EFL port.

* platform/graphics/texmap/coordinated/CompositingCoordinator.cpp: Include DOMWindow.h and Document.h.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/platform/graphics/texmap/coordinated/CompositingCoordinator.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (202418 => 202419)

--- trunk/Source/WebCore/ChangeLog	2016-06-24 06:07:38 UTC (rev 202418)
+++ trunk/Source/WebCore/ChangeLog	2016-06-24 07:39:58 UTC (rev 202419)
@@ -1,3 +1,11 @@
+2016-06-24  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL build fix.
+
+There is forward declaration build error on EFL port.
+
+* platform/graphics/texmap/coordinated/CompositingCoordinator.cpp: Include DOMWindow.h and Document.h.
+
 2016-06-23  Brady Eidson  <beid...@apple.com>
 
 Retrieving Blobs from IndexedDB using cursors fails in WK2 (Sandboxing)


Modified: trunk/Source/WebCore/platform/graphics/texmap/coordinated/CompositingCoordinator.cpp (202418 => 202419)

--- trunk/Source/WebCore/platform/graphics/texmap/coordinated/CompositingCoordinator.cpp	2016-06-24 06:07:38 UTC (rev 202418)
+++ trunk/Source/WebCore/platform/graphics/texmap/coordinated/CompositingCoordinator.cpp	2016-06-24 07:39:58 UTC (rev 202419)
@@ -30,6 +30,8 @@
 
 #include "CompositingCoordinator.h"
 
+#include "DOMWindow.h"
+#include "Document.h"
 #include "FrameView.h"
 #include "GraphicsContext.h"
 #include "InspectorController.h"






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [202416] trunk/Tools

2016-06-23 Thread gyuyoung . kim
Title: [202416] trunk/Tools








Revision 202416
Author gyuyoung@webkit.org
Date 2016-06-23 21:51:30 -0700 (Thu, 23 Jun 2016)


Log Message
[EFL] Change download path of libxslt

Unreviewed EFL build fix.

In Korea current download path can't be accessed. Change it.

* efl/jhbuild.modules:

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/efl/jhbuild.modules




Diff

Modified: trunk/Tools/ChangeLog (202415 => 202416)

--- trunk/Tools/ChangeLog	2016-06-24 04:39:35 UTC (rev 202415)
+++ trunk/Tools/ChangeLog	2016-06-24 04:51:30 UTC (rev 202416)
@@ -1,3 +1,13 @@
+2016-06-23  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Change download path of libxslt
+
+Unreviewed EFL build fix.
+
+In Korea current download path can't be accessed. Change it.
+
+* efl/jhbuild.modules:
+
 2016-06-23  Simon Fraser  <simon.fra...@apple.com>
 
 https://bugs.webkit.org/show_bug.cgi?id=159077


Modified: trunk/Tools/efl/jhbuild.modules (202415 => 202416)

--- trunk/Tools/efl/jhbuild.modules	2016-06-24 04:39:35 UTC (rev 202415)
+++ trunk/Tools/efl/jhbuild.modules	2016-06-24 04:51:30 UTC (rev 202416)
@@ -203,7 +203,7 @@
   
 
   
-+ repo="xmlsoft.org"
 hash="sha256:b5976e3857837e7617b29f2249ebb5eeac34e249208d31f1fbf7a6ba7a4090ce"/>
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [202221] trunk/LayoutTests

2016-06-19 Thread gyuyoung . kim
Title: [202221] trunk/LayoutTests








Revision 202221
Author gyuyoung@webkit.org
Date 2016-06-19 18:59:06 -0700 (Sun, 19 Jun 2016)


Log Message
[EFL] Mark shadow-dom tests to pass because it was enabled by r202091
https://bugs.webkit.org/show_bug.cgi?id=158930

Unreviewed EFL gardening.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (202220 => 202221)

--- trunk/LayoutTests/ChangeLog	2016-06-20 01:19:50 UTC (rev 202220)
+++ trunk/LayoutTests/ChangeLog	2016-06-20 01:59:06 UTC (rev 202221)
@@ -1,3 +1,12 @@
+2016-06-19  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Mark shadow-dom tests to pass because it was enabled by r202091
+https://bugs.webkit.org/show_bug.cgi?id=158930
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations:
+
 2016-06-19  Michael Catanzaro  <mcatanz...@igalia.com>
 
 [GTK] Unreviewed test gardening


Modified: trunk/LayoutTests/platform/efl/TestExpectations (202220 => 202221)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-06-20 01:19:50 UTC (rev 202220)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-06-20 01:59:06 UTC (rev 202221)
@@ -1337,12 +1337,6 @@
 imported/w3c/csswg-test/css-scoping-1/css-scoping-shadow-with-outside-rules.html [ Pass ]
 imported/w3c/csswg-test/css-scoping-1/css-scoping-shadow-with-rules-no-style-leak.html [ Pass ]
 imported/w3c/csswg-test/css-scoping-1/css-scoping-shadow-with-rules.html [ Pass ]
-fast/shadow-dom/insert-child-to-assigned-node.html [ Pass ]
-fast/shadow-dom/shadow-layout-after-attach-shadow.html [ Pass ]
-fast/shadow-dom/shadow-layout-after-host-child-changes.html [ Pass ]
-fast/shadow-dom/shadow-layout-after-inserting-or-removing-host-child.html [ Pass ]
-fast/shadow-dom/shadow-layout-after-slot-changes.html [ Pass ]
-fast/shadow-dom/shadow-layout-after-slot-fallback-changes.html [ Pass ]
 
 webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-20-t.svg [ Pass ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/interact-events-01-b.svg [ Pass ]
@@ -1367,6 +1361,8 @@
 fast/scrolling/rtl-scrollbars-text-selection.html
 fast/scrolling/rtl-scrollbars.html
 
+webkit.org/b/148695 fast/shadow-dom [ Pass ]
+
 #
 # FAILING TESTS
 #
@@ -2534,9 +2530,6 @@
 webkit.org/b/155945 storage/indexeddb/modern/idbobjectstore-delete-1-private.html [ Failure ]
 webkit.org/b/155945 storage/indexeddb/modern/idbobjectstore-delete-1.html [ Failure ]
 
-# Shadow dom is not enabled on EFL port yet.
-Bug(EFL) fast/shadow-dom/slot-removal-crash-2.html
-
 webkit.org/b/155959 svg/text/kerning.svg [ Failure ]
 webkit.org/b/155959 svg/text/multichar-glyph.svg [ Failure ]
 webkit.org/b/155959 svg/text/text-altglyph-01-b.svg [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [202158] trunk

2016-06-16 Thread gyuyoung . kim
Title: [202158] trunk








Revision 202158
Author gyuyoung@webkit.org
Date 2016-06-16 21:56:57 -0700 (Thu, 16 Jun 2016)


Log Message
[EFL][GTK] LayoutTest doesn't run on Ubuntu 16.04
https://bugs.webkit.org/show_bug.cgi?id=158141

Reviewed by Michael Catanzaro.

Tools:

* Scripts/webkitpy/port/base.py: Detect php version in system, then use it.
(Port._is_debian_php_version_7):
(Port._debian_php_version):
(Port._apache_config_file_name_for_platform):
* efl/install-dependencies:
* gtk/install-dependencies:

LayoutTests:

* http/conf/debian-httpd-2.4-php7.conf: Added.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/Tools/ChangeLog
trunk/Tools/Scripts/webkitpy/port/base.py
trunk/Tools/efl/install-dependencies
trunk/Tools/gtk/install-dependencies


Added Paths

trunk/LayoutTests/http/conf/debian-httpd-2.4-php7.conf




Diff

Modified: trunk/LayoutTests/ChangeLog (202157 => 202158)

--- trunk/LayoutTests/ChangeLog	2016-06-17 04:48:47 UTC (rev 202157)
+++ trunk/LayoutTests/ChangeLog	2016-06-17 04:56:57 UTC (rev 202158)
@@ -1,3 +1,12 @@
+2016-06-16  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL][GTK] LayoutTest doesn't run on Ubuntu 16.04
+https://bugs.webkit.org/show_bug.cgi?id=158141
+
+Reviewed by Michael Catanzaro.
+
+* http/conf/debian-httpd-2.4-php7.conf: Added.
+
 2016-06-15  Filip Pizlo  <fpi...@apple.com>
 
 Baseline JIT should be concurrent


Added: trunk/LayoutTests/http/conf/debian-httpd-2.4-php7.conf (0 => 202158)

--- trunk/LayoutTests/http/conf/debian-httpd-2.4-php7.conf	(rev 0)
+++ trunk/LayoutTests/http/conf/debian-httpd-2.4-php7.conf	2016-06-17 04:56:57 UTC (rev 202158)
@@ -0,0 +1,148 @@
+ServerTokens OS
+ServerRoot "/usr/lib/apache2"
+
+PidFile "/tmp/WebKit/httpd.pid"
+ScoreBoardFile "/tmp/WebKit/httpd.scoreboard"
+
+Timeout 300
+KeepAlive On
+MaxKeepAliveRequests 100
+KeepAliveTimeout 15
+
+MinSpareServers 1
+MaxSpareServers 5
+StartServers 1
+MaxClients 150
+MaxRequestsPerChild 10
+
+LoadModule mpm_prefork_module   modules/mod_mpm_prefork.so
+LoadModule authz_core_modulemodules/mod_authz_core.so
+LoadModule authz_host_modulemodules/mod_authz_host.so
+LoadModule include_module   modules/mod_include.so
+LoadModule headers_module   modules/mod_headers.so
+LoadModule mime_module  modules/mod_mime.so
+LoadModule negotiation_module   modules/mod_negotiation.so
+LoadModule actions_module   modules/mod_actions.so
+LoadModule alias_module modules/mod_alias.so
+LoadModule rewrite_module   modules/mod_rewrite.so
+LoadModule cgi_module   modules/mod_cgi.so
+LoadModule ssl_module   modules/mod_ssl.so
+LoadModule php7_module  modules/libphp7.0.so
+LoadModule asis_module  modules/mod_asis.so
+
+ServerName 127.0.0.1
+
+
+Options Indexes FollowSymLinks MultiViews ExecCGI Includes
+AllowOverride All
+Require all granted
+
+
+AccessFileName .htaccess
+
+
+Require all denied
+
+
+UseCanonicalName On
+HostnameLookups Off
+
+TypesConfig /etc/mime.types
+
+LogLevel warn
+LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
+LogFormat "%h %l %u %t \"%r\" %>s %b" common
+LogFormat "%{Referer}i -> %U" referer
+LogFormat "%{User-agent}i" agent
+ErrorLog /tmp/WebKit/error_log
+
+ServerSignature On
+
+AddLanguage ca .ca
+AddLanguage cs .cz .cs
+AddLanguage da .dk
+AddLanguage de .de
+AddLanguage el .el
+AddLanguage en .en
+AddLanguage eo .eo
+AddLanguage es .es
+AddLanguage et .et
+AddLanguage fr .fr
+AddLanguage he .he
+AddLanguage hr .hr
+AddLanguage it .it
+AddLanguage ja .ja
+AddLanguage ko .ko
+AddLanguage ltz .ltz
+AddLanguage nl .nl
+AddLanguage nn .nn
+AddLanguage no .no
+AddLanguage pl .po
+AddLanguage pt .pt
+AddLanguage pt-BR .pt-br
+AddLanguage ru .ru
+AddLanguage sv .sv
+AddLanguage zh-CN .zh-cn
+AddLanguage zh-TW .zh-tw
+AddCharset Big5 .Big5.big5
+AddCharset WINDOWS-1251 .cp-1251
+AddCharset CP866.cp866
+AddCharset ISO-8859-5   .iso-ru
+AddCharset KOI8-R   .koi8-r
+AddCharset UCS-2.ucs2
+AddCharset UCS-4.ucs4
+AddCharset UTF-8.utf8
+
+
+LanguagePriority en ca cs da de el eo es et fr he hr it ja ko ltz nl nn no pl pt pt-BR ru sv zh-CN zh-TW
+
+
+AddType application/x-tar .tgz
+
+AddEncoding x-compress .Z
+AddEncoding x-gzip .gz .tgz
+
+AddType application/x-x509-ca-cert .crt
+AddType application/x-pkcs7-crl.crl
+
+AddHandler cgi-script .cgi .pl
+
+AddType text/html .shtml
+AddOutputFilter INCLUDES .shtml
+
+AddHandler send-as-is asis
+
+
+AddType application/x-httpd-php .php
+AddType application/x-httpd-php .bat
+AddType application/x-httpd-php-source .phps
+
+
+DirectoryIndex index.html index.php
+
+
+php_flag log_errors on
+php_flag short_open_tag on
+
+
+
+RewriteEngine On
+

[webkit-changes] [201792] trunk/Source/WebCore

2016-06-07 Thread gyuyoung . kim
Title: [201792] trunk/Source/WebCore








Revision 201792
Author gyuyoung@webkit.org
Date 2016-06-07 22:42:47 -0700 (Tue, 07 Jun 2016)


Log Message
EFL build has been broken since r201761
https://bugs.webkit.org/show_bug.cgi?id=158512

Unreviewed build fix.


* platform/posix/SharedBufferPOSIX.cpp:
(WebCore::SharedBuffer::createFromReadingFile):
Do not use ? operand in return line. Additionally return nullptr instead of 0.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/platform/posix/SharedBufferPOSIX.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (201791 => 201792)

--- trunk/Source/WebCore/ChangeLog	2016-06-08 05:28:37 UTC (rev 201791)
+++ trunk/Source/WebCore/ChangeLog	2016-06-08 05:42:47 UTC (rev 201792)
@@ -1,3 +1,14 @@
+2016-06-07  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+EFL build has been broken since r201761
+https://bugs.webkit.org/show_bug.cgi?id=158512
+
+Unreviewed build fix.
+
+* platform/posix/SharedBufferPOSIX.cpp: 
+(WebCore::SharedBuffer::createFromReadingFile):
+Do not use ? operand in return line. Additionally return nullptr instead of 0.
+
 2016-06-07  Chris Dumez  <cdu...@apple.com>
 
 Expose Event / EventTarget properties on WorkerGlobalScope


Modified: trunk/Source/WebCore/platform/posix/SharedBufferPOSIX.cpp (201791 => 201792)

--- trunk/Source/WebCore/platform/posix/SharedBufferPOSIX.cpp	2016-06-08 05:28:37 UTC (rev 201791)
+++ trunk/Source/WebCore/platform/posix/SharedBufferPOSIX.cpp	2016-06-08 05:42:47 UTC (rev 201792)
@@ -38,23 +38,23 @@
 RefPtr SharedBuffer::createFromReadingFile(const String& filePath)
 {
 if (filePath.isEmpty())
-return 0;
+return nullptr;
 
 CString filename = fileSystemRepresentation(filePath);
 int fd = open(filename.data(), O_RDONLY);
 if (fd == -1)
-return 0;
+return nullptr;
 
 struct stat fileStat;
 if (fstat(fd, )) {
 close(fd);
-return 0;
+return nullptr;
 }
 
 size_t bytesToRead;
 if (!WTF::convertSafely(fileStat.st_size, bytesToRead)) {
 close(fd);
-return 0;
+return nullptr;
 }
 
 Vector buffer(bytesToRead);
@@ -66,10 +66,10 @@
 
 close(fd);
 
-if (totalBytesRead == bytesToRead)
-return SharedBuffer::adoptVector(buffer);
+if (totalBytesRead != bytesToRead)
+return nullptr;
 
-return nullptr;
+return SharedBuffer::adoptVector(buffer);
 }
 
 } // namespace WebCore






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [201711] trunk/Source/JavaScriptCore

2016-06-06 Thread gyuyoung . kim
Title: [201711] trunk/Source/_javascript_Core








Revision 201711
Author gyuyoung@webkit.org
Date 2016-06-06 07:31:19 -0700 (Mon, 06 Jun 2016)


Log Message
[EFL] Move efl include paths to _javascript_Core_SYSTEM_INCLUDE_DIRECTORIES
https://bugs.webkit.org/show_bug.cgi?id=158418

Reviewed by Csaba Osztrogonác.

In Source/_javascript_Core/PlatformEfl.cmake, we don't use _javascript_Core_SYSTEM_INCLUDE_DIRECTORIES
for efl include paths.

* PlatformEfl.cmake:

Modified Paths

trunk/Source/_javascript_Core/ChangeLog
trunk/Source/_javascript_Core/PlatformEfl.cmake




Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (201710 => 201711)

--- trunk/Source/_javascript_Core/ChangeLog	2016-06-06 13:00:52 UTC (rev 201710)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-06-06 14:31:19 UTC (rev 201711)
@@ -1,3 +1,15 @@
+2016-06-06  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Move efl include paths to _javascript_Core_SYSTEM_INCLUDE_DIRECTORIES
+https://bugs.webkit.org/show_bug.cgi?id=158418
+
+Reviewed by Csaba Osztrogonác.
+
+In Source/_javascript_Core/PlatformEfl.cmake, we don't use _javascript_Core_SYSTEM_INCLUDE_DIRECTORIES
+for efl include paths.
+
+* PlatformEfl.cmake:
+
 2016-06-05  Yusuke Suzuki  <utatane@gmail.com>
 
 Change ProxyObject.[[Get]] not to use custom accessor


Modified: trunk/Source/_javascript_Core/PlatformEfl.cmake (201710 => 201711)

--- trunk/Source/_javascript_Core/PlatformEfl.cmake	2016-06-06 13:00:52 UTC (rev 201710)
+++ trunk/Source/_javascript_Core/PlatformEfl.cmake	2016-06-06 14:31:19 UTC (rev 201711)
@@ -1,12 +1,16 @@
 list(APPEND _javascript_Core_INCLUDE_DIRECTORIES
+"${WTF_DIR}"
+"${WTF_DIR}/wtf/efl"
+)
+
+list(APPEND _javascript_Core_SYSTEM_INCLUDE_DIRECTORIES
 ${ECORE_EVAS_INCLUDE_DIRS}
 ${ECORE_IMF_INCLUDE_DIRS}
 ${ECORE_INCLUDE_DIRS}
 ${EINA_INCLUDE_DIRS}
 ${EO_INCLUDE_DIRS}
-"${WTF_DIR}"
-"${WTF_DIR}/wtf/efl"
 )
+
 add_definitions(-DSTATICALLY_LINKED_WITH_WTF)
 
 install(FILES API/_javascript_.h






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [201710] trunk

2016-06-06 Thread gyuyoung . kim
Title: [201710] trunk








Revision 201710
Author gyuyoung@webkit.org
Date 2016-06-06 06:00:52 -0700 (Mon, 06 Jun 2016)


Log Message
[EFL] Update ewebkit minor version
https://bugs.webkit.org/show_bug.cgi?id=158409

Reviewed by Csaba Osztrogonác.

EWebKit has used efl 1.17 version though, it still is stopped at version 1.14.

* Source/cmake/OptionsEfl.cmake: Bump minor version to 1.17.

Modified Paths

trunk/ChangeLog
trunk/Source/cmake/OptionsEfl.cmake




Diff

Modified: trunk/ChangeLog (201709 => 201710)

--- trunk/ChangeLog	2016-06-06 12:11:22 UTC (rev 201709)
+++ trunk/ChangeLog	2016-06-06 13:00:52 UTC (rev 201710)
@@ -1,3 +1,14 @@
+2016-06-06  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Update ewebkit minor version
+https://bugs.webkit.org/show_bug.cgi?id=158409
+
+Reviewed by Csaba Osztrogonác.
+
+EWebKit has used efl 1.17 version though, it still is stopped at version 1.14.
+
+* Source/cmake/OptionsEfl.cmake: Bump minor version to 1.17.
+
 2016-06-05  Gyuyoung Kim  <gyuyoung@webkit.org>
 
 [EFL] Sync EFL features with featureList.pm


Modified: trunk/Source/cmake/OptionsEfl.cmake (201709 => 201710)

--- trunk/Source/cmake/OptionsEfl.cmake	2016-06-06 12:11:22 UTC (rev 201709)
+++ trunk/Source/cmake/OptionsEfl.cmake	2016-06-06 13:00:52 UTC (rev 201710)
@@ -1,5 +1,5 @@
 set(PROJECT_VERSION_MAJOR 1)
-set(PROJECT_VERSION_MINOR 14)
+set(PROJECT_VERSION_MINOR 17)
 set(PROJECT_VERSION_MICRO 0)
 set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_MICRO})
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [201707] trunk

2016-06-05 Thread gyuyoung . kim
Title: [201707] trunk








Revision 201707
Author gyuyoung@webkit.org
Date 2016-06-05 22:09:51 -0700 (Sun, 05 Jun 2016)


Log Message
[EFL] Sync EFL features with featureList.pm
https://bugs.webkit.org/show_bug.cgi?id=158410

Reviewed by Antonio Gomes.

In OptionsEfl, some features on/off status are different with
featureList.pm definitions. Sync with it.

* Source/cmake/OptionsEfl.cmake:

Modified Paths

trunk/ChangeLog
trunk/Source/cmake/OptionsEfl.cmake




Diff

Modified: trunk/ChangeLog (201706 => 201707)

--- trunk/ChangeLog	2016-06-06 04:56:38 UTC (rev 201706)
+++ trunk/ChangeLog	2016-06-06 05:09:51 UTC (rev 201707)
@@ -1,3 +1,15 @@
+2016-06-05  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Sync EFL features with featureList.pm
+https://bugs.webkit.org/show_bug.cgi?id=158410
+
+Reviewed by Antonio Gomes.
+
+In OptionsEfl, some features on/off status are different with
+featureList.pm definitions. Sync with it.
+
+* Source/cmake/OptionsEfl.cmake:
+
 2016-06-03  Per Arne Vollan  <pvol...@apple.com>
 
 [Win] IndexedDB worker tests are failing.


Modified: trunk/Source/cmake/OptionsEfl.cmake (201706 => 201707)

--- trunk/Source/cmake/OptionsEfl.cmake	2016-06-06 04:56:38 UTC (rev 201706)
+++ trunk/Source/cmake/OptionsEfl.cmake	2016-06-06 05:09:51 UTC (rev 201707)
@@ -82,7 +82,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_BATTERY_STATUS PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS3_TEXT PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_DEVICE_ADAPTATION PUBLIC ON)
-WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_GRID_LAYOUT PUBLIC OFF)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_GRID_LAYOUT PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_IMAGE_SET PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_REGIONS PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_CSS_SCROLL_SNAP PUBLIC OFF)
@@ -109,7 +109,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_CAPTURE PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_CONTROLS_SCRIPT PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_SOURCE PUBLIC ON)
-WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_STREAM PUBLIC ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEDIA_STREAM PUBLIC OFF)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MEMORY_SAMPLER PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MHTML PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_MOUSE_CURSOR_SCALE PUBLIC ON)
@@ -134,7 +134,7 @@
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIDEO_TRACK PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_VIEW_MODE_CSS_MEDIA PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_AUDIO PUBLIC ON)
-WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_RTC PUBLIC ON)
+WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_RTC PUBLIC OFF)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEB_TIMING PUBLIC ON)
 WEBKIT_OPTION_DEFAULT_PORT_VALUE(ENABLE_WEBGL PUBLIC ON)
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [201705] trunk/LayoutTests

2016-06-05 Thread gyuyoung . kim
Title: [201705] trunk/LayoutTests








Revision 201705
Author gyuyoung@webkit.org
Date 2016-06-05 20:59:46 -0700 (Sun, 05 Jun 2016)


Log Message
Unreviewed EFL gardening on June 6. Unskip passing tests and mark failing tests.
New bug is filed for new failing tests.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (201704 => 201705)

--- trunk/LayoutTests/ChangeLog	2016-06-06 03:19:21 UTC (rev 201704)
+++ trunk/LayoutTests/ChangeLog	2016-06-06 03:59:46 UTC (rev 201705)
@@ -1,3 +1,10 @@
+2016-06-05  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening on June 6. Unskip passing tests and mark failing tests.
+New bug is filed for new failing tests.
+
+* platform/efl/TestExpectations:
+
 2016-06-05  Gavin & Ellie Barraclough  <barraclo...@apple.com>
 
 Deprecate remaining uses of Lookup getStatic*, use HasStaticPropertyTable instead.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (201704 => 201705)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-06-06 03:19:21 UTC (rev 201704)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-06-06 03:59:46 UTC (rev 201705)
@@ -630,18 +630,13 @@
 mathml/presentation/fractions-box.html [ Skip ]
 
 webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-22-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-23-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-28-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-01-b.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-02-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/linking-a-01-b.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-04-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-07-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-08-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-13-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/pservers-grad-01-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/script-handle-03-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/shapes-ellipse-01-t.svg [ Crash ]
 
 Bug(EFL) fast/dom/Window/property-access-on-cached-window-after-frame-removed.html [ Crash ]
 Bug(EFL) fast/selectors/querySelector-in-range-crash.html [ Crash ]
@@ -1072,6 +1067,9 @@
 webkit.org/b/148470 css1/box_properties/padding_top.html [ Failure ImageOnlyFailure Pass ]
 webkit.org/b/148470 css1/box_properties/width.html [ Failure ImageOnlyFailure Pass ]
 
+webkit.org/b/158412 imported/w3c/web-platform-tests/html/dom/reflection-grouping.html [ Timeout Pass ]
+webkit.org/b/158412 imported/w3c/web-platform-tests/html/semantics/grouping-content/the-ul-element/grouping-ul.html [ Timeout Pass ]
+
 #
 # PASSING TESTS WITH INCORRECT EXPECTATIONS
 #
@@ -1847,12 +1845,10 @@
 # Missing EFL's accessibility functions
 webkit.org/b/111984 accessibility/aria-hidden-updates-alldescendants.html [ Failure ]
 webkit.org/b/111988 accessibility/aria-readonly.html [ Failure ]
-webkit.org/b/111991 accessibility/aria-text-role.html [ Failure ]
 webkit.org/b/111996 accessibility/canvas-fallback-content-2.html [ Failure ]
 webkit.org/b/111999 accessibility/disabled-controls-not-focusable.html [ Failure ]
 webkit.org/b/112002 accessibility/inline-continuations.html [ Failure ]
 webkit.org/b/112005 accessibility/onclick-handlers.html [ Failure ]
-webkit.org/b/112008 accessibility/spinbutton-value.html [ Failure ]
 webkit.org/b/112012 accessibility/svg-bounds.html [ Failure ]
 webkit.org/b/112014 accessibility/textarea-insertion-point-line-number.html [ Failure ]
 webkit.org/b/112018 accessibility/th-as-title-ui.html [ Failure ]
@@ -1860,9 +1856,6 @@
 webkit.org/b/133148 accessibility/set-selected-text-range-contenteditable.html [ Skip ]
 webkit.org/b/156045 accessibility/attachment-element.html [ Skip ]
 
-# New accessibility test added in r151079 that is failing for EFL.
-webkit.org/b/117182 accessibility/text-role-with-aria-hidden-inside.html [ Failure ]
-
 webkit.org/b/141072 accessibility/frame-disconnect-textmarker-cache-crash.html [ Failure ]
 webkit.org/b/137109 accessibility/legend-children-are-visible.html [ Failure ]
 webkit.org/b/139352 accessibility/inline-block-assertion.html [ Failure ]
@@ -1988,8 +1981,6 @@
 
 webkit.org/b/124890 accessibility/media-emits-object-replacement.html [ Failure ]
 
-webkit.org/b/125506 accessibility/alt-tag-on-image-with-nonimage-role.html [ Failure ]
-
 # QuickTime plug-in not relevant to this port
 plugins/quicktime-plugin-replacement.html [ Skip ]
 
@@ -2530,9 +2521,6 @@
 webkit.org/b/155875 svg/batik/text/textPosition2.svg [ Failure ]
 webkit.org/b/155875 svg/foreignObject/text-t

[webkit-changes] [201446] trunk/LayoutTests

2016-05-26 Thread gyuyoung . kim
Title: [201446] trunk/LayoutTests








Revision 201446
Author gyuyoung@webkit.org
Date 2016-05-26 22:40:15 -0700 (Thu, 26 May 2016)


Log Message
Unreviewed EFL gardening.
Release some passing tests which have been marked to Crash, Failure.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (201445 => 201446)

--- trunk/LayoutTests/ChangeLog	2016-05-27 03:31:18 UTC (rev 201445)
+++ trunk/LayoutTests/ChangeLog	2016-05-27 05:40:15 UTC (rev 201446)
@@ -1,3 +1,10 @@
+2016-05-26  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening.
+Release some passing tests which have been marked to Crash, Failure.
+
+* platform/efl/TestExpectations:
+
 2016-05-26  Nan Wang  <n_w...@apple.com>
 
 AX: Wrong CharacterOffset from VisiblePosition with composed characters


Modified: trunk/LayoutTests/platform/efl/TestExpectations (201445 => 201446)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-05-27 03:31:18 UTC (rev 201445)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-05-27 05:40:15 UTC (rev 201446)
@@ -629,55 +629,24 @@
 http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html [ Skip ]
 mathml/presentation/fractions-box.html [ Skip ]
 
-webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-21-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-22-b.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-23-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-28-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-29-b.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-01-b.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-02-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-03-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/interact-zoom-01-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/linking-a-01-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/linking-a-02-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/linking-a-03-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/linking-a-04-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/painting-stroke-07-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-02-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-03-f.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-04-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-05-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-06-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-07-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-08-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-09-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-12-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-13-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-15-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/pservers-grad-01-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/script-handle-01-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/script-handle-02-b.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/script-handle-03-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/script-handle-04-b.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/shapes-circle-01-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/shapes-circle-02-t.svg [ Crash ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/shapes-ellipse-01-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/shapes-ellipse-02-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/shapes-intro-01-t.svg [ Crash ]
-webkit.org/b/155875 svg/W3C-SVG-1.1/shapes-line-01-t.svg [ Crash ]
-webkit.org/b/155875 svg/as-background-image/animated-svg-as-background.html [ Crash ]
 
 Bug(EFL) fast/dom/Window/property-access-on-cached-window-after-frame-removed.html [ Crash ]
-Bug(EFL) fast/events/scroll-event-phase.html [ Crash ]
-Bug(EFL) fast/events/tabindex-focus-blur-all.html [ Crash ]
-Bug(EFL) fast/history/history-traversal-is-asynchronous.html [ Crash ]
-Bug(EFL) fast/history/link-inside-any.html [ Crash ]
-Bug(EFL) fast/loader/image-in-page-cache.html [ Crash ]
 Bug(EFL) fast/selectors/querySelector-in-range-crash.html [ Crash ]
-Bug(EFL) http/tests/cache/history-only-cached-subresource-loads.html [ Crash ]
 Bug(EFL) http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Crash ]
 Bug(EFL) imported/blink/svg/custom/svg-image-layers-crash.html [ Crash ]
-Bug(EFL) loader/stateobjects/replacestate-size.html [ Crash ]
 Bug(EFL) webaudio/decode-audio-data-basic.html [ Crash ]
 
 #
@@ -957,7 +926,6 @@
 webkit.org/b/124926 fast/events/popup-allowed-from-gesture-initiated-event.html [ Failure Pass ]
 
 # Fail after r1391

[webkit-changes] [201440] trunk/Source

2016-05-26 Thread gyuyoung . kim
Title: [201440] trunk/Source








Revision 201440
Author gyuyoung@webkit.org
Date 2016-05-26 16:53:25 -0700 (Thu, 26 May 2016)


Log Message
Purge PassRefPtr in Modules/battery
https://bugs.webkit.org/show_bug.cgi?id=157062

Reviewed by Darin Adler.

Use RefPtr<>& to reduce uses of PassRefPtr in WebKit.

Source/WebCore:

* Modules/battery/BatteryClient.h:
* Modules/battery/BatteryController.cpp:
(WebCore::BatteryController::BatteryController):
(WebCore::BatteryController::~BatteryController):
(WebCore::BatteryController::addListener):
(WebCore::BatteryController::removeListener):
(WebCore::BatteryController::updateBatteryStatus):
(WebCore::BatteryController::didChangeBatteryStatus):
(WebCore::provideBatteryTo):
* Modules/battery/BatteryController.h:
* Modules/battery/BatteryManager.cpp:
(WebCore::BatteryManager::didChangeBatteryStatus):
(WebCore::BatteryManager::updateBatteryStatus):
* Modules/battery/BatteryManager.h:
* Modules/battery/BatteryStatus.h:
* testing/Internals.cpp:
(WebCore::Internals::setBatteryStatus):

Source/WebKit2:

* WebProcess/Battery/WebBatteryManager.cpp:
(WebKit::WebBatteryManager::didChangeBatteryStatus):
(WebKit::WebBatteryManager::updateBatteryStatus):
* WebProcess/WebPage/WebPage.cpp:
(WebKit::m_shouldDispatchFakeMouseMoveEvents):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Modules/battery/BatteryClient.h
trunk/Source/WebCore/Modules/battery/BatteryController.cpp
trunk/Source/WebCore/Modules/battery/BatteryController.h
trunk/Source/WebCore/Modules/battery/BatteryManager.cpp
trunk/Source/WebCore/Modules/battery/BatteryManager.h
trunk/Source/WebCore/Modules/battery/BatteryStatus.h
trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/WebProcess/Battery/WebBatteryManager.cpp
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (201439 => 201440)

--- trunk/Source/WebCore/ChangeLog	2016-05-26 23:40:37 UTC (rev 201439)
+++ trunk/Source/WebCore/ChangeLog	2016-05-26 23:53:25 UTC (rev 201440)
@@ -1,3 +1,30 @@
+2016-05-26  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Purge PassRefPtr in Modules/battery
+https://bugs.webkit.org/show_bug.cgi?id=157062
+
+Reviewed by Darin Adler.
+
+Use RefPtr<>& to reduce uses of PassRefPtr in WebKit.
+
+* Modules/battery/BatteryClient.h:
+* Modules/battery/BatteryController.cpp:
+(WebCore::BatteryController::BatteryController):
+(WebCore::BatteryController::~BatteryController):
+(WebCore::BatteryController::addListener):
+(WebCore::BatteryController::removeListener):
+(WebCore::BatteryController::updateBatteryStatus):
+(WebCore::BatteryController::didChangeBatteryStatus):
+(WebCore::provideBatteryTo):
+* Modules/battery/BatteryController.h:
+* Modules/battery/BatteryManager.cpp:
+(WebCore::BatteryManager::didChangeBatteryStatus):
+(WebCore::BatteryManager::updateBatteryStatus):
+* Modules/battery/BatteryManager.h:
+* Modules/battery/BatteryStatus.h:
+* testing/Internals.cpp:
+(WebCore::Internals::setBatteryStatus):
+
 2016-05-25  Ada Chan  <adac...@apple.com>
 
 Add WebKitAdditions extension point in HTMLMediaElement.


Modified: trunk/Source/WebCore/Modules/battery/BatteryClient.h (201439 => 201440)

--- trunk/Source/WebCore/Modules/battery/BatteryClient.h	2016-05-26 23:40:37 UTC (rev 201439)
+++ trunk/Source/WebCore/Modules/battery/BatteryClient.h	2016-05-26 23:53:25 UTC (rev 201440)
@@ -35,7 +35,7 @@
 virtual void batteryControllerDestroyed() = 0;
 };
 
-void provideBatteryTo(Page*, BatteryClient*);
+void provideBatteryTo(Page&, BatteryClient&);
 
 }
 


Modified: trunk/Source/WebCore/Modules/battery/BatteryController.cpp (201439 => 201440)

--- trunk/Source/WebCore/Modules/battery/BatteryController.cpp	2016-05-26 23:40:37 UTC (rev 201439)
+++ trunk/Source/WebCore/Modules/battery/BatteryController.cpp	2016-05-26 23:53:25 UTC (rev 201440)
@@ -29,26 +29,25 @@
 
 namespace WebCore {
 
-BatteryController::BatteryController(BatteryClient* client)
+BatteryController::BatteryController(BatteryClient& client)
 : m_client(client)
 {
-ASSERT(m_client);
 }
 
 BatteryController::~BatteryController()
 {
 for (auto& listener : m_listeners)
 listener->batteryControllerDestroyed();
-m_client->batteryControllerDestroyed();
+m_client.batteryControllerDestroyed();
 }
 
 void BatteryController::addListener(BatteryManager* batteryManager)
 {
 m_listeners.append(batteryManager);
-m_client->startUpdating();
+m_client.startUpdating();
 
 if (m_batteryStatus)
-batteryManager->updateBatteryStatus(m_batteryStatus);
+batteryManager->updateBatteryStatus(WTFMove(m_batteryStatus));
 }
 
 void BatteryController::removeListener(BatteryManager* batteryManager)
@@ -58,36 +57,34 @@
   

[webkit-changes] [200571] trunk/LayoutTests

2016-05-09 Thread gyuyoung . kim
Title: [200571] trunk/LayoutTests








Revision 200571
Author gyuyoung@webkit.org
Date 2016-05-09 01:55:50 -0700 (Mon, 09 May 2016)


Log Message
Fix wrong gardening in r200570

Unreviewed EFL gardening.

* TestExpectations: Move selection gap tests to EFL's one.
* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/TestExpectations
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (200570 => 200571)

--- trunk/LayoutTests/ChangeLog	2016-05-09 08:51:20 UTC (rev 200570)
+++ trunk/LayoutTests/ChangeLog	2016-05-09 08:55:50 UTC (rev 200571)
@@ -1,5 +1,14 @@
 2016-05-09  Gyuyoung Kim  <gyuyoung@webkit.org>
 
+Fix wrong gardening in r200570
+
+Unreviewed EFL gardening.
+
+* TestExpectations: Move selection gap tests to EFL's one.
+* platform/efl/TestExpectations:
+
+2016-05-09  Gyuyoung Kim  <gyuyoung@webkit.org>
+
 [EFL] Skip tests of selection gap because EFL port disabled to paint the selection gap
 
 Unreviewed EFL gardening.


Modified: trunk/LayoutTests/TestExpectations (200570 => 200571)

--- trunk/LayoutTests/TestExpectations	2016-05-09 08:51:20 UTC (rev 200570)
+++ trunk/LayoutTests/TestExpectations	2016-05-09 08:55:50 UTC (rev 200571)
@@ -51,14 +51,6 @@
 fast/harness/ui-side-scripts.html [ Skip ]
 fast/harness/concurrent-ui-side-scripts.html [ Skip ]
 
-# EFL port has not supported selection gap painting since r200412
-fast/repaint/selection-gap-absolute-child.html [ Skip ]
-fast/repaint/selection-gap-fixed-child.html [ Skip ]
-fast/repaint/selection-gap-flipped-absolute-child.html [ Skip ]
-fast/repaint/selection-gap-flipped-fixed-child.html [ Skip ]
-fast/repaint/selection-gap-transformed-absolute-child.html [ Skip ]
-fast/repaint/selection-gap-transformed-fixed-child.html [ Skip ]
-
 #//
 # End platform-specific tests.
 #//


Modified: trunk/LayoutTests/platform/efl/TestExpectations (200570 => 200571)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-05-09 08:51:20 UTC (rev 200570)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-05-09 08:55:50 UTC (rev 200571)
@@ -376,6 +376,14 @@
 webkit.org/b/87661 crypto/subtle/rsa-indexeddb.html [ Skip ]
 storage/indexeddb/database-odd-names.html [ Skip ]
 
+# EFL port has not supported selection gap painting since r200412
+fast/repaint/selection-gap-absolute-child.html [ Skip ]
+fast/repaint/selection-gap-fixed-child.html [ Skip ]
+fast/repaint/selection-gap-flipped-absolute-child.html [ Skip ]
+fast/repaint/selection-gap-flipped-fixed-child.html [ Skip ]
+fast/repaint/selection-gap-transformed-absolute-child.html [ Skip ]
+fast/repaint/selection-gap-transformed-fixed-child.html [ Skip ]
+
 #
 # TESTS EXPECTED TO FAIL
 #






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [200570] trunk/LayoutTests

2016-05-09 Thread gyuyoung . kim
Title: [200570] trunk/LayoutTests








Revision 200570
Author gyuyoung@webkit.org
Date 2016-05-09 01:51:20 -0700 (Mon, 09 May 2016)


Log Message
[EFL] Skip tests of selection gap because EFL port disabled to paint the selection gap

Unreviewed EFL gardening.

* TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (200569 => 200570)

--- trunk/LayoutTests/ChangeLog	2016-05-09 05:51:37 UTC (rev 200569)
+++ trunk/LayoutTests/ChangeLog	2016-05-09 08:51:20 UTC (rev 200570)
@@ -1,3 +1,11 @@
+2016-05-09  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Skip tests of selection gap because EFL port disabled to paint the selection gap
+
+Unreviewed EFL gardening.
+
+* TestExpectations:
+
 2016-05-08  Zalan Bujtas  <za...@apple.com>
 
 iOS selection: Use inflow containing block for positioned .


Modified: trunk/LayoutTests/TestExpectations (200569 => 200570)

--- trunk/LayoutTests/TestExpectations	2016-05-09 05:51:37 UTC (rev 200569)
+++ trunk/LayoutTests/TestExpectations	2016-05-09 08:51:20 UTC (rev 200570)
@@ -51,6 +51,14 @@
 fast/harness/ui-side-scripts.html [ Skip ]
 fast/harness/concurrent-ui-side-scripts.html [ Skip ]
 
+# EFL port has not supported selection gap painting since r200412
+fast/repaint/selection-gap-absolute-child.html [ Skip ]
+fast/repaint/selection-gap-fixed-child.html [ Skip ]
+fast/repaint/selection-gap-flipped-absolute-child.html [ Skip ]
+fast/repaint/selection-gap-flipped-fixed-child.html [ Skip ]
+fast/repaint/selection-gap-transformed-absolute-child.html [ Skip ]
+fast/repaint/selection-gap-transformed-fixed-child.html [ Skip ]
+
 #//
 # End platform-specific tests.
 #//






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [200412] trunk/Source

2016-05-04 Thread gyuyoung . kim
Title: [200412] trunk/Source








Revision 200412
Author gyuyoung@webkit.org
Date 2016-05-04 01:39:07 -0700 (Wed, 04 May 2016)


Log Message
Add WKPreference for SelectionPaintingWithoutSelectionGaps
https://bugs.webkit.org/show_bug.cgi?id=156900

Reviewed by Michael Catanzaro.

Unlike other browsers WebKit has been drawing selection gaps
between render blocks during the text selection. This often
cause text selection screen looks messy.

This patch adds a setting method to disable the functionality,
and EFL port disables it by default.

Source/WebCore:

* page/Settings.in:
* rendering/RenderBlock.cpp:
(WebCore::RenderBlock::shouldPaintSelectionGaps):

Source/WebKit2:

* Shared/WebPreferencesDefinitions.h:
* UIProcess/API/C/WKPreferences.cpp:
(WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled):
(WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled):
* UIProcess/API/C/WKPreferencesRefPrivate.h:
* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::updatePreferences):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/page/Settings.in
trunk/Source/WebCore/rendering/RenderBlock.cpp
trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h
trunk/Source/WebKit2/UIProcess/API/C/WKPreferences.cpp
trunk/Source/WebKit2/UIProcess/API/C/WKPreferencesRefPrivate.h
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (200411 => 200412)

--- trunk/Source/WebCore/ChangeLog	2016-05-04 08:22:18 UTC (rev 200411)
+++ trunk/Source/WebCore/ChangeLog	2016-05-04 08:39:07 UTC (rev 200412)
@@ -1,3 +1,21 @@
+2016-05-04  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Add WKPreference for SelectionPaintingWithoutSelectionGaps
+https://bugs.webkit.org/show_bug.cgi?id=156900
+
+Reviewed by Michael Catanzaro.
+
+Unlike other browsers WebKit has been drawing selection gaps
+between render blocks during the text selection. This often
+cause text selection screen looks messy.
+
+This patch adds a setting method to disable the functionality,
+and EFL port disables it by default.
+
+* page/Settings.in:
+* rendering/RenderBlock.cpp:
+(WebCore::RenderBlock::shouldPaintSelectionGaps):
+
 2016-05-04  Youenn Fablet  <youenn.fab...@crf.canon.fr>
 
 Rename JSKeyValueIterator as JSDOMIterator


Modified: trunk/Source/WebCore/page/Settings.in (200411 => 200412)

--- trunk/Source/WebCore/page/Settings.in	2016-05-04 08:22:18 UTC (rev 200411)
+++ trunk/Source/WebCore/page/Settings.in	2016-05-04 08:39:07 UTC (rev 200412)
@@ -256,3 +256,6 @@
 systemLayoutDirection type=TextDirection, initial=LTR
 
 allowContentSecurityPolicySourceStarToMatchAnyProtocol initial=false
+
+selectionPaintingWithoutSelectionGapsEnabled initial=false
+


Modified: trunk/Source/WebCore/rendering/RenderBlock.cpp (200411 => 200412)

--- trunk/Source/WebCore/rendering/RenderBlock.cpp	2016-05-04 08:22:18 UTC (rev 200411)
+++ trunk/Source/WebCore/rendering/RenderBlock.cpp	2016-05-04 08:39:07 UTC (rev 200412)
@@ -1714,6 +1714,9 @@
 
 bool RenderBlock::shouldPaintSelectionGaps() const
 {
+if (frame().settings().selectionPaintingWithoutSelectionGapsEnabled())
+return false;
+
 return selectionState() != SelectionNone && style().visibility() == VISIBLE && isSelectionRoot();
 }
 


Modified: trunk/Source/WebKit2/ChangeLog (200411 => 200412)

--- trunk/Source/WebKit2/ChangeLog	2016-05-04 08:22:18 UTC (rev 200411)
+++ trunk/Source/WebKit2/ChangeLog	2016-05-04 08:39:07 UTC (rev 200412)
@@ -1,3 +1,25 @@
+2016-05-04  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Add WKPreference for SelectionPaintingWithoutSelectionGaps
+https://bugs.webkit.org/show_bug.cgi?id=156900
+
+Reviewed by Michael Catanzaro.
+
+Unlike other browsers WebKit has been drawing selection gaps
+between render blocks during the text selection. This often
+cause text selection screen looks messy.
+
+This patch adds a setting method to disable the functionality,
+and EFL port disables it by default.
+
+* Shared/WebPreferencesDefinitions.h:
+* UIProcess/API/C/WKPreferences.cpp:
+(WKPreferencesSetSelectionPaintingWithoutSelectionGapsEnabled):
+(WKPreferencesGetSelectionPaintingWithoutSelectionGapsEnabled):
+* UIProcess/API/C/WKPreferencesRefPrivate.h:
+* WebProcess/WebPage/WebPage.cpp:
+(WebKit::WebPage::updatePreferences):
+
 2016-05-04  Zan Dobersek  <zdober...@igalia.com>
 
 [CoordGraphics] CompositingCoordinator should hande root compositing and view overlay layers separately


Modified: trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h (200411 => 200412)

--- trunk/Source/WebKit2/Shared/WebPreferencesDefinitions.h	2016-05-04 08:22:18 UTC (rev 200411)
+++ trunk/Source/WebKit2/Shared/WebPreferencesDefinitions

[webkit-changes] [200077] trunk/Source/WebKit2

2016-04-26 Thread gyuyoung . kim
Title: [200077] trunk/Source/WebKit2








Revision 200077
Author gyuyoung@webkit.org
Date 2016-04-26 01:16:24 -0700 (Tue, 26 Apr 2016)


Log Message
[EFL] Update expectation result in ewk_context_preferred_languages API test
https://bugs.webkit.org/show_bug.cgi?id=157027

Reviewed by Carlos Garcia Campos.

platformLanguage() has been returning lower case value since r199815. Thus existing expected result
needs to be updated together.

* UIProcess/API/efl/tests/test_ewk2_context.cpp: Change en-US with en-us.
(TEST_F):

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_context.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (200076 => 200077)

--- trunk/Source/WebKit2/ChangeLog	2016-04-26 07:28:20 UTC (rev 200076)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-26 08:16:24 UTC (rev 200077)
@@ -1,3 +1,16 @@
+2016-04-26  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Update expectation result in ewk_context_preferred_languages API test
+https://bugs.webkit.org/show_bug.cgi?id=157027
+
+Reviewed by Carlos Garcia Campos.
+
+platformLanguage() has been returning lower case value since r199815. Thus existing expected result
+needs to be updated together.
+
+* UIProcess/API/efl/tests/test_ewk2_context.cpp: Change en-US with en-us.
+(TEST_F):
+
 2016-04-26  Zan Dobersek  <zdober...@igalia.com>
 
 Mark two methods in the CoordinatedGraphicsScene and the


Modified: trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_context.cpp (200076 => 200077)

--- trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_context.cpp	2016-04-26 07:28:20 UTC (rev 200076)
+++ trunk/Source/WebKit2/UIProcess/API/efl/tests/test_ewk2_context.cpp	2016-04-26 08:16:24 UTC (rev 200077)
@@ -329,6 +329,6 @@
 
 ewk_context_preferred_languages_set(nullptr);
 ASSERT_TRUE(loadUrlSync(httpServer->getURLForPath("/index.html").data()));
-ASSERT_STREQ("en-US", s_acceptLanguages);
+ASSERT_STREQ("en-us", s_acceptLanguages);
 free(s_acceptLanguages);
 }






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [199975] trunk/LayoutTests

2016-04-24 Thread gyuyoung . kim
Title: [199975] trunk/LayoutTests








Revision 199975
Author gyuyoung@webkit.org
Date 2016-04-24 22:56:09 -0700 (Sun, 24 Apr 2016)


Log Message
[EFL] Some media tests have been failed after bumping gstreamer ver.

Unreviewed EFL gardening. Mark failing tests to timeout or failure.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (199974 => 199975)

--- trunk/LayoutTests/ChangeLog	2016-04-25 03:09:18 UTC (rev 199974)
+++ trunk/LayoutTests/ChangeLog	2016-04-25 05:56:09 UTC (rev 199975)
@@ -1,3 +1,11 @@
+2016-04-24  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Some media tests have been failed after bumping gstreamer ver.
+
+Unreviewed EFL gardening. Mark failing tests to timeout or failure.
+
+* platform/efl/TestExpectations:
+
 2016-04-24  Chris Dumez  <cdu...@apple.com>
 
 Autogenerated IDBFactory.open() does the wrong thing if you pass an explicit 'undefined' as the second argument


Modified: trunk/LayoutTests/platform/efl/TestExpectations (199974 => 199975)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-04-25 03:09:18 UTC (rev 199974)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-04-25 05:56:09 UTC (rev 199975)
@@ -2628,3 +2628,60 @@
 webkit.org/b/156024 svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml [ Failure ]
 webkit.org/b/156024 svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml [ Failure ]
 webkit.org/b/156024 svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml [ Failure ]
+
+# Media tests have been failing since we bumped gstreamer ver.
+webkit.org/b/156969 media/media-source/media-source-canplaythrough.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-end-of-stream-buffered.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-end-of-stream-readyState.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-end-of-stream.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-fudge-factor.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-loadedmetada-with-two-sourcebuffers.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-multiple-initialization-segments.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-play.html [ Timeout ]
+webkit.org/b/156969 media/media-source/media-source-remove.html [ Timeout ]
+webkit.org/b/156969 media/track/track-automatic-subtitles.html [ Timeout ]
+webkit.org/b/156969 media/track/track-cues-pause-on-exit.html [ Timeout ]
+webkit.org/b/156969 media/video-controls-toggling.html [ Timeout ]
+webkit.org/b/156969 media/accessiblity-describes-video.html [ Failure ]
+webkit.org/b/156969 media/controls-right-click-on-timebar.html [ Failure ]
+webkit.org/b/156969 media/controls-strict.html [ Failure ]
+webkit.org/b/156969 media/controls-without-preload.html [ Failure ]
+webkit.org/b/156969 media/media-controls-drag-timeline-set-controls-property.html [ Failure ]
+webkit.org/b/156969 media/media-controls-invalid-url.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-append-media-segment-without-init.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-append-nonsync-sample-after-abort.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-duration-after-append.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-monitor-source-buffers.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-overlapping-append.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-overlapping-decodetime.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-sequence-timestamps.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-timeoffset.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-track-enabled.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-tracks.html [ Failure ]
+webkit.org/b/156969 media/media-source/media-source-video-playback-quality.html [ Failure ]
+webkit.org/b/156969 media/nodesFromRect-shadowContent.html [ Failure ]
+webkit.org/b/156969 media/track/track-cue-rendering-snap-to-lines-not-set.html [ Failure ]
+webkit.org/b/156969 media/track/track-cue-rendering-vertical.html [ Failure ]
+webkit.org/b/156969 media/track/track-cue-rendering.html [ Failure ]
+webkit.org/b/156969 media/track/track-delete-during-setup.html [ Failure ]
+webkit.org/b/156969 media/track/track-insert-after-load-crash.html [ Failure ]
+webkit.org/b/156969 media/track/track-long-word-container-sizing.html [ Failure ]
+webkit.org/b/156969 media/track/track-manual-mode.html [ Failure ]
+webkit.org/b/156969 media/track/track-mode-not-changed-by-new-track.html [ Failure ]
+webkit.org/b/156969 media/track/track-mode-triggers-loading.html [ Failure ]
+webkit.org/b/156969 media

[webkit-changes] [199767] trunk/LayoutTests

2016-04-20 Thread gyuyoung . kim
Title: [199767] trunk/LayoutTests








Revision 199767
Author gyuyoung@webkit.org
Date 2016-04-20 01:33:22 -0700 (Wed, 20 Apr 2016)


Log Message
Unreviewed EFL gardening. Follow up gardening for media test.

* platform/efl/TestExpectations: Unskip 3 media tests.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (199766 => 199767)

--- trunk/LayoutTests/ChangeLog	2016-04-20 06:38:59 UTC (rev 199766)
+++ trunk/LayoutTests/ChangeLog	2016-04-20 08:33:22 UTC (rev 199767)
@@ -1,3 +1,9 @@
+2016-04-20  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening. Follow up gardening for media test.
+
+* platform/efl/TestExpectations: Unskip 3 media tests.
+
 2016-04-19  Michael Saboff  <msab...@apple.com>
 
 iTunes crashing _javascript_Core.dll


Modified: trunk/LayoutTests/platform/efl/TestExpectations (199766 => 199767)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-04-20 06:38:59 UTC (rev 199766)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-04-20 08:33:22 UTC (rev 199767)
@@ -597,7 +597,6 @@
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/directive-parsing-03.html [ Skip ]
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/directive-parsing-04.html [ Skip ]
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/directive-parsing-05.html [ Skip ]
-webkit.org/b/116587 http/tests/security/contentSecurityPolicy/video-redirect-allowed.html [ Crash ]
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/video-with-http-url-allowed-by-csp-media-src-star.html [ Skip ]
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/video-with-https-url-allowed-by-csp-media-src-star.html [ Skip ]
 
@@ -669,7 +668,6 @@
 Bug(EFL) fast/history/link-inside-any.html [ Crash ]
 Bug(EFL) fast/loader/image-in-page-cache.html [ Crash ]
 Bug(EFL) fast/selectors/querySelector-in-range-crash.html [ Crash ]
-Bug(EFL) fast/spatial-navigation/snav-media-elements.html [ Crash ]
 Bug(EFL) http/tests/cache/history-only-cached-subresource-loads.html [ Crash ]
 Bug(EFL) http/tests/security/mixedContent/insecure-audio-video-in-main-frame.html [ Crash ]
 Bug(EFL) imported/blink/svg/custom/svg-image-layers-crash.html [ Crash ]
@@ -2059,7 +2057,6 @@
 webkit.org/b/128061 ietestcenter/css3/bordersbackgrounds/border-radius-with-three-values-001.htm [ Failure ]
 webkit.org/b/128061 ietestcenter/css3/bordersbackgrounds/border-radius-with-two-values-001.htm [ Failure ]
 webkit.org/b/128061 ietestcenter/css3/bordersbackgrounds/border-top-left-radius-values-003.htm [ Failure ]
-webkit.org/b/128061 media/video-zoom.html [ Crash ]
 webkit.org/b/128061 svg/zoom/page/zoom-background-image-tiled.html [ Failure ]
 webkit.org/b/128061 svg/zoom/page/zoom-background-images.html [ Failure ]
 webkit.org/b/128061 svg/zoom/page/zoom-img-preserveAspectRatio-support-1.html [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [199749] trunk/LayoutTests

2016-04-19 Thread gyuyoung . kim
Title: [199749] trunk/LayoutTests








Revision 199749
Author gyuyoung@webkit.org
Date 2016-04-19 18:05:36 -0700 (Tue, 19 Apr 2016)


Log Message
[EFL] Unskip media tests since r199649

Unreviewed EFL gardening.

* platform/efl/TestExpectations: r199649 fixed media test crash as well.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (199748 => 199749)

--- trunk/LayoutTests/ChangeLog	2016-04-20 00:02:07 UTC (rev 199748)
+++ trunk/LayoutTests/ChangeLog	2016-04-20 01:05:36 UTC (rev 199749)
@@ -1,3 +1,11 @@
+2016-04-19  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Unskip media tests since r199649
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: r199649 fixed media test crash as well.
+
 2016-04-19  Mark Lam  <mark@apple.com>
 
 Re-landing: ES6: Implement RegExp.prototype[@@search].


Modified: trunk/LayoutTests/platform/efl/TestExpectations (199748 => 199749)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-04-20 00:02:07 UTC (rev 199748)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-04-20 01:05:36 UTC (rev 199749)
@@ -624,223 +624,6 @@
 http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html [ Skip ]
 mathml/presentation/fractions-box.html [ Skip ]
 
-webkit.org/b/153866 accessibility/media-element.html [ Crash ]
-webkit.org/b/153866 compositing/video/video-clip-change-src.html [ Crash ]
-webkit.org/b/153866 compositing/video/video-reflection.html [ Crash ]
-webkit.org/b/153866 fast/dom/beforeload/remove-video-in-beforeload-listener.html
-webkit.org/b/153866 fast/events/media-focus-in-standalone-media-document.html [ Crash ]
-webkit.org/b/153866 fullscreen/full-screen-iframe-legacy.html [ Crash ]
-webkit.org/b/153866 fullscreen/video-controls-timeline.html [ Crash ]
-webkit.org/b/153866 http/tests/appcache/video.html [ Crash ]
-webkit.org/b/153866 http/tests/cache/memory-cache-pruning.html [ Crash ]
-webkit.org/b/153866 http/tests/media/media-document-referer.html [ Crash ]
-webkit.org/b/153866 http/tests/media/media-document.html [ Crash ]
-webkit.org/b/153866 http/tests/media/remove-while-loading.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-auth.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-load-suspend.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-load-twice.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-play-progress.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-query-url.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-referer.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-served-as-text.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-throttled-load-metadata.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-useragent.html [ Crash ]
-webkit.org/b/153866 http/tests/security/local-video-source-from-remote.html [ Crash ]
-webkit.org/b/153866 http/tests/security/video-cross-origin-accesssameorigin.html [ Crash ]
-webkit.org/b/153866 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/track/track-element/track-api-texttracks.html [ Crash ]
-webkit.org/b/153866 media/accessiblity-describes-video.html [ Crash ]
-webkit.org/b/153866 media/audio-mpeg4-supported.html [ Crash ]
-webkit.org/b/153866 media/click-volume-bar-not-pausing.html [ Crash ]
-webkit.org/b/153866 media/context-menu-actions.html [ Crash ]
-webkit.org/b/153866 media/controls-drag-timebar.html [ Crash ]
-webkit.org/b/153866 media/controls-strict.html [ Crash ]
-webkit.org/b/153866 media/controls-styling-strict.html [ Crash ]
-webkit.org/b/153866 media/controls-without-preload.html [ Crash ]
-webkit.org/b/153866 media/media-can-load-when-hidden.html [ Crash ]
-webkit.org/b/153866 media/media-captions-no-controls.html [ Crash ]
-webkit.org/b/153866 media/media-controller-drag-crash.html [ Crash ]
-webkit.org/b/153866 media/media-controller-playback.html [ Crash ]
-webkit.org/b/153866 media/media-controller-playbackrate.html [ Crash ]
-webkit.org/b/153866 media/media-controller-time-clamp.html [ Crash ]
-webkit.org/b/153866 media/media-controller-time-constant.html [ Crash ]
-webkit.org/b/153866 media/media-controller-time.html [ Crash ]
-webkit.org/b/153866 media/media-controller-timeupdate.html [ Crash ]
-webkit.org/b/153866 media/media-controller-unpause.html [ Crash ]
-webkit.org/b/153866 media/media-controls-cancel-events.html [ Crash ]
-webkit.org/b/153866 media/media-controls-drag-timeline-set-controls-property.html [ Crash ]
-webkit.org/b/153866 media/media-controls-invalid-url.html [ Crash ]
-webkit.org/b/153866 media/media-controls-timeline-updates-after-playing.html [ Crash ]
-webkit.org/b/153866 media/media-controls-timeline-updates-when-hovered.html [ Crash ]
-webkit.org/b/153866 media/media-controls-timeline-updates.html [ Crash ]
-webkit.org/b/153866 media/media-event-listeners.html [ Cra

[webkit-changes] [199649] trunk/Tools

2016-04-17 Thread gyuyoung . kim
Title: [199649] trunk/Tools








Revision 199649
Author gyuyoung@webkit.org
Date 2016-04-17 22:36:31 -0700 (Sun, 17 Apr 2016)


Log Message
[EFL] Bump gstreamer from 1.4.4 to 1.6.3
https://bugs.webkit.org/show_bug.cgi?id=156655

Reviewed by Antonio Gomes.

To support html5 video feature, we should bump gstreamer version.

* efl/jhbuild.modules:
* efl/patches/gst-libav.patch: Update against newer version.
* efl/patches/gst-plugins-bad-remove-gnustep-support.patch: Removed because this patch was merged.

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/efl/jhbuild.modules
trunk/Tools/efl/patches/gst-libav.patch


Removed Paths

trunk/Tools/efl/patches/gst-plugins-bad-remove-gnustep-support.patch




Diff

Modified: trunk/Tools/ChangeLog (199648 => 199649)

--- trunk/Tools/ChangeLog	2016-04-18 05:13:13 UTC (rev 199648)
+++ trunk/Tools/ChangeLog	2016-04-18 05:36:31 UTC (rev 199649)
@@ -1,3 +1,16 @@
+2016-04-17  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Bump gstreamer from 1.4.4 to 1.6.3
+https://bugs.webkit.org/show_bug.cgi?id=156655
+
+Reviewed by Antonio Gomes.
+
+To support html5 video feature, we should bump gstreamer version.
+
+* efl/jhbuild.modules:
+* efl/patches/gst-libav.patch: Update against newer version.
+* efl/patches/gst-plugins-bad-remove-gnustep-support.patch: Removed because this patch was merged.
+
 2016-04-16  Sam Weinig  <s...@webkit.org>
 
 More build fixing.


Modified: trunk/Tools/efl/jhbuild.modules (199648 => 199649)

--- trunk/Tools/efl/jhbuild.modules	2016-04-18 05:13:13 UTC (rev 199648)
+++ trunk/Tools/efl/jhbuild.modules	2016-04-18 05:36:31 UTC (rev 199649)
@@ -213,10 +213,10 @@
 
   
 
-+ repo="gstreamer"
-hash="sha256:f0e305d91a93d05bf9e332cd4256ca07d77f5186a4d73847b7ae6db218f2c237"
-md5sum="98f4a6d45a28dd195144baef0244ba38"/>
+hash="sha256:22f9568d67b87cf700a111f381144bd37cb93790a77e4e331db01fe854a37f24"
+md5sum="b4cdeb2b9cb20dd6ac022a4f417eae0d"/>
   
 
   @@ -225,11 +225,10 @@
 
   
 
-+ repo="gstreamer"
-hash="sha256:49cd9e8f23c416b1607b43837a09833fa03e0106929d81ead2ddfde6c0ade44b"
-md5sum="0c42eca8f9e4efd56d2ce8e9249ce4a1">
-  
+hash="sha256:b6154f8fdba4877e95efd94610ef0ada4f0171cd12eb829a3c3c97345d9c7a75"
+md5sum="3ddde0ad598ef69f58d6a2e87f8b460f">
 
   
 
@@ -238,10 +237,10 @@
   
 
 
-+ repo="gstreamer"
-hash="sha256:2df90e99da45211c7b2525ae4ac34830a9e7784bd48c072c406c0cf014bdb277"
-md5sum="673cf9276952bd3937dafd817c9ead2b">
+hash="sha256:24b19db70b2a83461ebddfe20033db432dadfdb5d4b54ffb1dfa0d830134a177"
+md5sum="a1958df7aa498b42793e2f2048673815">
 
   
 
@@ -249,11 +248,10 @@
 
   
 
-+ repo="gstreamer"
-hash="sha256:e41b36105c0a13a2cb1ff9f559714e839b82dc3841484cd664790fb7947e55c7"
-md5sum="972c6e22dd2e44fcf0b04b9d810a56be">
-  
+hash="sha256:971b29101d6a9c5e3fe94d99d977a227f58f0b2d29b6ca2c7f292052542b3a61"
+md5sum="4857adcafe41e4b9b8805cf88303bd55">
 
   
 
@@ -261,10 +259,10 @@
 
   
 
-+ repo="gstreamer"
-hash="sha256:2ec7285e5ec6731963b0955487cceb9eb04e285ca682f3ef575996c068cde8aa"
-md5sum="64a3e2cda2687132cadca4efdc63f3b4">
+hash="sha256:857b9c060a0337de38c6d26238c47352433c02eabf26c2f860c854dbc35bd4ab"
+md5sum="cfe9a06913d4fd4067e9e47f6e05fac2">
   
 
   


Modified: trunk/Tools/efl/patches/gst-libav.patch (199648 => 199649)

--- trunk/Tools/efl/patches/gst-libav.patch	2016-04-18 05:13:13 UTC (rev 199648)
+++ trunk/Tools/efl/patches/gst-libav.patch	2016-04-18 05:36:31 UTC (rev 199649)
@@ -1,10 +1,9 @@
 --- a/gst-libs/ext/libav/libavcodec/arm/videodsp_armv5te.S
 +++ b/gst-libs/ext/libav/libavcodec/arm/videodsp_armv5te.S
-@@ -26,6 +26,7 @@ function ff_prefetch_arm, export=1
+@@ -27,6 +27,7 @@
  subsr2,  r2,  #1
  pld [r0]
  add r0,  r0,  r1
 +it  ne
- bne X(ff_prefetch_arm)
+ bne 1b
  bx  lr
- endfunc


Deleted: trunk/Tools/efl/patches/gst-plugins-bad-remove-gnustep-support.patch (199648 => 199649)

--- trunk/Tools/efl/patches/gst-plugins-bad-remove-gnustep-support.patch	2016-04-18 05:13:13 UTC (rev 199648)
+++ trunk/Tools/efl/patches/gst-plugins-bad-remove-gnustep-support.patch	2016-04-18 05:36:31 UTC (rev 199649)
@@ -1,325 +0,0

[webkit-changes] [199142] trunk/Source/WebCore

2016-04-06 Thread gyuyoung . kim
Title: [199142] trunk/Source/WebCore








Revision 199142
Author gyuyoung@webkit.org
Date 2016-04-06 19:07:26 -0700 (Wed, 06 Apr 2016)


Log Message
Remove duplicated parsePortFromStringPosition()
https://bugs.webkit.org/show_bug.cgi?id=156289

Reviewed by Simon Fraser.

Same parsePortFromStringPosition() functions have been defined in both URLUtils.h and HTMLAnchorElement.cpp.
Remove duplicated one in HTMLAnchorElement.cpp.

No new tests, no behavior change.

* html/HTMLAnchorElement.cpp:
(WebCore::parsePortFromStringPosition): Deleted.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/html/HTMLAnchorElement.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (199141 => 199142)

--- trunk/Source/WebCore/ChangeLog	2016-04-07 02:05:22 UTC (rev 199141)
+++ trunk/Source/WebCore/ChangeLog	2016-04-07 02:07:26 UTC (rev 199142)
@@ -1,3 +1,18 @@
+2016-04-06  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Remove duplicated parsePortFromStringPosition()
+https://bugs.webkit.org/show_bug.cgi?id=156289
+
+Reviewed by Simon Fraser.
+
+Same parsePortFromStringPosition() functions have been defined in both URLUtils.h and HTMLAnchorElement.cpp.
+Remove duplicated one in HTMLAnchorElement.cpp.
+
+No new tests, no behavior change.
+
+* html/HTMLAnchorElement.cpp:
+(WebCore::parsePortFromStringPosition): Deleted.
+
 2016-04-06  Simon Fraser  <simon.fra...@apple.com>
 
 Page tiles are missing when graphics acceleration is unavailable


Modified: trunk/Source/WebCore/html/HTMLAnchorElement.cpp (199141 => 199142)

--- trunk/Source/WebCore/html/HTMLAnchorElement.cpp	2016-04-07 02:05:22 UTC (rev 199141)
+++ trunk/Source/WebCore/html/HTMLAnchorElement.cpp	2016-04-07 02:07:26 UTC (rev 199142)
@@ -46,6 +46,7 @@
 #include "SecurityOrigin.h"
 #include "SecurityPolicy.h"
 #include "Settings.h"
+#include "URLUtils.h"
 #include 
 
 namespace WebCore {
@@ -76,15 +77,6 @@
 clearRootEditableElementForSelectionOnMouseDown();
 }
 
-// This function does not allow leading spaces before the port number.
-static unsigned parsePortFromStringPosition(const String& value, unsigned portStart, unsigned& portEnd)
-{
-portEnd = portStart;
-while (isASCIIDigit(value[portEnd]))
-++portEnd;
-return value.substring(portStart, portEnd - portStart).toUInt();
-}
-
 bool HTMLAnchorElement::supportsFocus() const
 {
 if (hasEditableStyle())






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198939] trunk/Source/WebKit2

2016-03-31 Thread gyuyoung . kim
Title: [198939] trunk/Source/WebKit2








Revision 198939
Author gyuyoung@webkit.org
Date 2016-03-31 21:52:30 -0700 (Thu, 31 Mar 2016)


Log Message
Unreviewed EFL build fix caused by r198929.

* WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::layerVolatilityTimerFired): Need to use type casting in WEBPAGE_LOG_ALWAYS_ERROR() log.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (198938 => 198939)

--- trunk/Source/WebKit2/ChangeLog	2016-04-01 03:23:01 UTC (rev 198938)
+++ trunk/Source/WebKit2/ChangeLog	2016-04-01 04:52:30 UTC (rev 198939)
@@ -1,3 +1,10 @@
+2016-03-31  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL build fix caused by r198929.
+
+* WebProcess/WebPage/WebPage.cpp:
+(WebKit::WebPage::layerVolatilityTimerFired): Need to use type casting in WEBPAGE_LOG_ALWAYS_ERROR() log.
+
 2016-03-31  Daniel Bates  <daba...@apple.com>
 
 REGRESSION (r194660): Navigating to HTTPS sites may fail with error


Modified: trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp (198938 => 198939)

--- trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2016-04-01 03:23:01 UTC (rev 198938)
+++ trunk/Source/WebKit2/WebProcess/WebPage/WebPage.cpp	2016-04-01 04:52:30 UTC (rev 198939)
@@ -2039,7 +2039,7 @@
 }
 
 auto newInterval = std::min(2 * m_layerVolatilityTimer.repeatIntervalMS(), std::chrono::duration_cast(maximumLayerVolatilityTimerInterval));
-WEBPAGE_LOG_ALWAYS_ERROR("%p - WebPage - Failed to mark all layers as volatile, will retry in %lld ms", this, newInterval.count());
+WEBPAGE_LOG_ALWAYS_ERROR("%p - WebPage - Failed to mark all layers as volatile, will retry in %lld ms", this, static_cast(newInterval.count()));
 m_layerVolatilityTimer.startRepeating(newInterval);
 }
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198934] trunk/Tools

2016-03-31 Thread gyuyoung . kim
Title: [198934] trunk/Tools








Revision 198934
Author gyuyoung@webkit.org
Date 2016-03-31 18:40:25 -0700 (Thu, 31 Mar 2016)


Log Message
[EFL] Bump EFL version to 1.17.0
https://bugs.webkit.org/show_bug.cgi?id=153008

Reviewed by Michael Catanzaro.

Original author is Csaba Osztrogonác  <o...@webkit.org>

* efl/jhbuild.modules:

Modified Paths

trunk/Tools/ChangeLog
trunk/Tools/efl/jhbuild.modules




Diff

Modified: trunk/Tools/ChangeLog (198933 => 198934)

--- trunk/Tools/ChangeLog	2016-04-01 01:12:55 UTC (rev 198933)
+++ trunk/Tools/ChangeLog	2016-04-01 01:40:25 UTC (rev 198934)
@@ -1,3 +1,14 @@
+2016-03-31  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Bump EFL version to 1.17.0
+https://bugs.webkit.org/show_bug.cgi?id=153008
+
+Reviewed by Michael Catanzaro.
+
+Original author is Csaba Osztrogonác  <o...@webkit.org>
+
+* efl/jhbuild.modules:
+
 2016-03-31  Daniel Bates  <daba...@apple.com>
 
 run-webkit-tests fails to create user's cache directory when System Integrity Protection is enabled


Modified: trunk/Tools/efl/jhbuild.modules (198933 => 198934)

--- trunk/Tools/efl/jhbuild.modules	2016-04-01 01:12:55 UTC (rev 198933)
+++ trunk/Tools/efl/jhbuild.modules	2016-04-01 01:40:25 UTC (rev 198934)
@@ -168,15 +168,15 @@
  
 
   - autogenargs="--disable-fribidi --disable-audio --disable-libmount --disable-physics --enable-lua-old --enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-aba">
+ autogenargs="--disable-fribidi --disable-audio --disable-libmount --disable-physics --enable-lua-old --enable-i-really-know-what-i-am-doing-and-that-this-will-probably-break-things-and-i-will-fix-them-myself-and-send-patches-abb">
 
   
   
   
 
-+ repo="download.enlightenment.org"
-hash="sha256:acdff08f72f62bb838f2412de29d0828f9884c30033a3e873902709c78a06198">
+hash="sha256:046ff2c5fe769d749278f9d3e5b85e25cb4d1070bd1b8b54ee6831d81739f3c5">
   
 
   
@@ -184,9 +184,9 @@
 autogen-sh="configure"
  autogenargs="--disable-emap --disable-eweather --with-elementary-web-backend=none">
-+ repo="download.enlightenment.org"
-hash="sha256:0707b14d4330b2305ef28ca4387036013a0047a0471b9f36cbaccc89a19113c6">
+hash="sha256:0004a3038968073f3e7599294933fab72226162d0436dce35d9ec4d3b0478267">
 
 
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198871] trunk/Source/WebCore

2016-03-30 Thread gyuyoung . kim
Title: [198871] trunk/Source/WebCore








Revision 198871
Author gyuyoung@webkit.org
Date 2016-03-30 18:36:30 -0700 (Wed, 30 Mar 2016)


Log Message
[EFL][CMake] WebKit include path has been added to system include path
https://bugs.webkit.org/show_bug.cgi?id=156019

Reviewed by Darin Adler.

Fix wrong include path addition.

* PlatformEfl.cmake:

Add ${WEBCORE_DIR}/platform/graphics/surfaces/egl to WebCore include directory path.

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/PlatformEfl.cmake




Diff

Modified: trunk/Source/WebCore/ChangeLog (198870 => 198871)

--- trunk/Source/WebCore/ChangeLog	2016-03-31 01:31:51 UTC (rev 198870)
+++ trunk/Source/WebCore/ChangeLog	2016-03-31 01:36:30 UTC (rev 198871)
@@ -1,3 +1,16 @@
+2016-03-30  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL][CMake] WebKit include path has been added to system include path
+https://bugs.webkit.org/show_bug.cgi?id=156019
+
+Reviewed by Darin Adler.
+
+Fix wrong include path addition.
+
+* PlatformEfl.cmake:
+
+Add ${WEBCORE_DIR}/platform/graphics/surfaces/egl to WebCore include directory path.
+
 2016-03-30  Joanmarie Diggs  <jdi...@igalia.com>
 
 AX: Update handling of SVG elements with presentational role


Modified: trunk/Source/WebCore/PlatformEfl.cmake (198870 => 198871)

--- trunk/Source/WebCore/PlatformEfl.cmake	2016-03-31 01:31:51 UTC (rev 198870)
+++ trunk/Source/WebCore/PlatformEfl.cmake	2016-03-31 01:36:30 UTC (rev 198871)
@@ -319,7 +319,7 @@
 )
 
 if (USE_EGL)
-list(APPEND WebCore_SYSTEM_INCLUDE_DIRECTORIES
+list(APPEND WebCore_INCLUDE_DIRECTORIES
 "${WEBCORE_DIR}/platform/graphics/surfaces/egl"
 )
 endif ()






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198835] trunk/LayoutTests

2016-03-30 Thread gyuyoung . kim
Title: [198835] trunk/LayoutTests








Revision 198835
Author gyuyoung@webkit.org
Date 2016-03-30 06:58:25 -0700 (Wed, 30 Mar 2016)


Log Message
[EFL] Mark svg zoom and pageoverlay tests to failure

Unreviewed EFL gardening.

* platform/efl/TestExpectations: Assign new bugs to the failures.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198834 => 198835)

--- trunk/LayoutTests/ChangeLog	2016-03-30 11:45:38 UTC (rev 198834)
+++ trunk/LayoutTests/ChangeLog	2016-03-30 13:58:25 UTC (rev 198835)
@@ -1,3 +1,11 @@
+2016-03-30  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Mark svg zoom and pageoverlay tests to failure
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: Assign new bugs to the failures.
+
 2016-03-30  Manuel Rego Casasnovas  <r...@igalia.com>
 
 [css-grid] Refactor positioned children code


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198834 => 198835)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-30 11:45:38 UTC (rev 198834)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-30 13:58:25 UTC (rev 198835)
@@ -2837,3 +2837,12 @@
 webkit.org/b/155970 http/tests/security/contentSecurityPolicy/audio-redirect-blocked.html [ Timeout ]
 webkit.org/b/155970 http/tests/security/contentSecurityPolicy/video-redirect-blocked.html [ Timeout ]
 webkit.org/b/155970 http/tests/security/inactive-document-with-empty-security-origin.html [ Timeout ]
+
+webkit.org/b/156023 pageoverlay/overlay-installation.html [ Failure ]
+webkit.org/b/156023 pageoverlay/overlay-large-document-scrolled.html [ Failure ]
+webkit.org/b/156023 pageoverlay/overlay-large-document.html [ Failure ]
+webkit.org/b/156023 pageoverlay/overlay-small-frame-mouse-events.html [ Failure ]
+
+webkit.org/b/156024 svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml [ Failure ]
+webkit.org/b/156024 svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml [ Failure ]
+webkit.org/b/156024 svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198779] trunk/LayoutTests

2016-03-29 Thread gyuyoung . kim
Title: [198779] trunk/LayoutTests








Revision 198779
Author gyuyoung@webkit.org
Date 2016-03-29 06:22:12 -0700 (Tue, 29 Mar 2016)


Log Message
[EFL] Skip to test custom element test cases

Unreviewed EFL gardening.

Custom element is not supported by EFL yet. Additionally mark 4 security tests to timeout.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198778 => 198779)

--- trunk/LayoutTests/ChangeLog	2016-03-29 10:25:44 UTC (rev 198778)
+++ trunk/LayoutTests/ChangeLog	2016-03-29 13:22:12 UTC (rev 198779)
@@ -1,3 +1,13 @@
+2016-03-29  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Skip to test custom element test cases
+
+Unreviewed EFL gardening.
+
+Custom element is not supported by EFL yet. Additionally mark 4 security tests to timeout.
+
+* platform/efl/TestExpectations:
+
 2016-03-29  Joseph Pecoraro  <pecor...@apple.com>
 
 Audit WebCore builtins for user overridable code


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198778 => 198779)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-29 10:25:44 UTC (rev 198778)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-29 13:22:12 UTC (rev 198779)
@@ -2828,3 +2828,12 @@
 webkit.org/b/155959 svg/text/text-text-05-t.svg [ Failure ]
 webkit.org/b/155959 svg/text/text-text-06-t.svg [ Failure ]
 webkit.org/b/155959 svg/text/text-vkern.svg [ Failure ]
+
+# Custom element feature is not enabled on EFL yet
+Bug(EFL) fast/custom-elements [ Skip ]
+
+webkit.org/b/155970 http/tests/appcache/auth.html [ Timeout ]
+webkit.org/b/155970 http/tests/media/video-redirect.html [ Timeout ]
+webkit.org/b/155970 http/tests/security/contentSecurityPolicy/audio-redirect-blocked.html [ Timeout ]
+webkit.org/b/155970 http/tests/security/contentSecurityPolicy/video-redirect-blocked.html [ Timeout ]
+webkit.org/b/155970 http/tests/security/inactive-document-with-empty-security-origin.html [ Timeout ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198777] trunk/Source/WebCore

2016-03-29 Thread gyuyoung . kim
Title: [198777] trunk/Source/WebCore








Revision 198777
Author gyuyoung@webkit.org
Date 2016-03-29 02:13:49 -0700 (Tue, 29 Mar 2016)


Log Message
Unreviewed EFL build fix caused by r198773

* CMakeLists.txt: Append WebCore_DERIVED_SOURCES to WebCore source list.

Modified Paths

trunk/Source/WebCore/CMakeLists.txt
trunk/Source/WebCore/ChangeLog




Diff

Modified: trunk/Source/WebCore/CMakeLists.txt (198776 => 198777)

--- trunk/Source/WebCore/CMakeLists.txt	2016-03-29 08:14:39 UTC (rev 198776)
+++ trunk/Source/WebCore/CMakeLists.txt	2016-03-29 09:13:49 UTC (rev 198777)
@@ -3809,6 +3809,8 @@
 set_target_properties(WebCoreDerivedSources PROPERTIES FOLDER "WebCore")
 list(APPEND WebCore_LIBRARIES WebCoreDerivedSources${DEBUG_SUFFIX})
 
+list(APPEND WebCore_SOURCES ${WebCore_DERIVED_SOURCES})
+
 WEBKIT_FRAMEWORK(WebCore)
 
 # The -ftree-sra optimization (implicit with -O2) causes crashes when


Modified: trunk/Source/WebCore/ChangeLog (198776 => 198777)

--- trunk/Source/WebCore/ChangeLog	2016-03-29 08:14:39 UTC (rev 198776)
+++ trunk/Source/WebCore/ChangeLog	2016-03-29 09:13:49 UTC (rev 198777)
@@ -1,3 +1,9 @@
+2016-03-29  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL build fix caused by r198773
+
+* CMakeLists.txt: Append WebCore_DERIVED_SOURCES to WebCore source list.
+
 2016-03-29  Joseph Pecoraro  <pecor...@apple.com>
 
 Audit WebCore builtins for user overridable code






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198767] trunk/LayoutTests

2016-03-28 Thread gyuyoung . kim
Title: [198767] trunk/LayoutTests








Revision 198767
Author gyuyoung@webkit.org
Date 2016-03-28 17:36:59 -0700 (Mon, 28 Mar 2016)


Log Message
Unreviewed EFL gardening on 29th Mar.

Mark svg text tests to failure. Besides remove duplicated a test.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198766 => 198767)

--- trunk/LayoutTests/ChangeLog	2016-03-29 00:19:05 UTC (rev 198766)
+++ trunk/LayoutTests/ChangeLog	2016-03-29 00:36:59 UTC (rev 198767)
@@ -1,3 +1,11 @@
+2016-03-28  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening on 29th Mar.
+
+Mark svg text tests to failure. Besides remove duplicated a test.
+
+* platform/efl/TestExpectations:
+
 2016-03-28  Myles C. Maxfield  <mmaxfi...@apple.com>
 
 [RTL Scrollbars] Position:sticky can be positioned under vertical RTL scrollbar


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198766 => 198767)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-29 00:19:05 UTC (rev 198766)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-29 00:36:59 UTC (rev 198767)
@@ -2769,8 +2769,6 @@
 webkit.org/b/151943 imported/blink/fast/box-shadow/normal-box-shadow-with-background-image.html [ ImageOnlyFailure ]
 webkit.org/b/151943 imported/blink/webexposed/webkit-focus-ring-exposed-to-quirks-mode.html [ ImageOnlyFailure ]
 
-webkit.org/b/153772 fast/shadow-dom/slot-removal-crash-2.html [ Timeout ]
-
 webkit.org/b/155505 http/tests/security/contentSecurityPolicy/userAgentShadowDOM/allow-audio.html [ Skip ]
 webkit.org/b/155505 webkit.org/b/153866 http/tests/security/contentSecurityPolicy/userAgentShadowDOM/allow-video.html [ Skip ]
 
@@ -2818,3 +2816,14 @@
 
 # Shadow dom is not enabled on EFL port yet.
 Bug(EFL) fast/shadow-dom/slot-removal-crash-2.html
+
+webkit.org/b/155959 svg/text/kerning.svg [ Failure ]
+webkit.org/b/155959 svg/text/multichar-glyph.svg [ Failure ]
+webkit.org/b/155959 svg/text/text-altglyph-01-b.svg [ Failure ]
+webkit.org/b/155959 svg/text/text-hkern.svg [ Failure ]
+webkit.org/b/155959 svg/text/text-overflow-ellipsis-svgfont-kerning-ligatures.html [ Failure ]
+webkit.org/b/155959 svg/text/text-overflow-ellipsis-svgfont.html [ Failure ]
+webkit.org/b/155959 svg/text/text-text-04-t.svg [ Failure ]
+webkit.org/b/155959 svg/text/text-text-05-t.svg [ Failure ]
+webkit.org/b/155959 svg/text/text-text-06-t.svg [ Failure ]
+webkit.org/b/155959 svg/text/text-vkern.svg [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198734] trunk/LayoutTests

2016-03-28 Thread gyuyoung . kim
Title: [198734] trunk/LayoutTests








Revision 198734
Author gyuyoung@webkit.org
Date 2016-03-28 07:06:42 -0700 (Mon, 28 Mar 2016)


Log Message
[EFL] Mark failing indexeddb tests to failure

Unreviewed EFL gardening.

Additionally a shadow dom test is marked to failure because shadow dom is not enabled on EFL port yet.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198733 => 198734)

--- trunk/LayoutTests/ChangeLog	2016-03-28 14:03:25 UTC (rev 198733)
+++ trunk/LayoutTests/ChangeLog	2016-03-28 14:06:42 UTC (rev 198734)
@@ -1,3 +1,13 @@
+2016-03-28  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Mark failing indexeddb tests to failure
+
+Unreviewed EFL gardening.
+
+Additionally a shadow dom test is marked to failure because shadow dom is not enabled on EFL port yet.
+
+* platform/efl/TestExpectations:
+
 2016-03-28  Hunseop Jeong  <hs85.je...@samsung.com>
 
 [EFL] Remove the more passed tests after r198728


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198733 => 198734)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-28 14:03:25 UTC (rev 198733)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-28 14:06:42 UTC (rev 198734)
@@ -2808,3 +2808,13 @@
 webkit.org/b/155937 accessibility/aria-table-attributes.html [ Failure ]
 webkit.org/b/155938 accessibility/auto-fill-types.html [ Failure ]
 webkit.org/b/155939 accessibility/double-nested-inline-element-missing-from-tree.html [ Failure ]
+
+webkit.org/b/155945 storage/indexeddb/modern/date-basic-private.html [ Failure ]
+webkit.org/b/155945 storage/indexeddb/modern/date-basic.html [ Failure ]
+webkit.org/b/155945 storage/indexeddb/modern/get-keyrange-private.html [ Failure ]
+webkit.org/b/155945 storage/indexeddb/modern/get-keyrange.html [ Failure ]
+webkit.org/b/155945 storage/indexeddb/modern/idbobjectstore-delete-1-private.html [ Failure ]
+webkit.org/b/155945 storage/indexeddb/modern/idbobjectstore-delete-1.html [ Failure ]
+
+# Shadow dom is not enabled on EFL port yet.
+Bug(EFL) fast/shadow-dom/slot-removal-crash-2.html






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198726] trunk/LayoutTests

2016-03-27 Thread gyuyoung . kim
Title: [198726] trunk/LayoutTests








Revision 198726
Author gyuyoung@webkit.org
Date 2016-03-27 19:31:44 -0700 (Sun, 27 Mar 2016)


Log Message
[EFL][AX] Mark AX failing tests to failure

Unreveiwed EFL gardening.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198725 => 198726)

--- trunk/LayoutTests/ChangeLog	2016-03-27 14:32:41 UTC (rev 198725)
+++ trunk/LayoutTests/ChangeLog	2016-03-28 02:31:44 UTC (rev 198726)
@@ -1,5 +1,13 @@
 2016-03-27  Gyuyoung Kim  <gyuyoung@webkit.org>
 
+[EFL][AX] Mark AX failing tests to failure
+
+Unreveiwed EFL gardening.
+
+* platform/efl/TestExpectations:
+
+2016-03-27  Gyuyoung Kim  <gyuyoung@webkit.org>
+
 Mark rtl-scrollbar's tests to pass with incorrectly
 
 Unreviewed EFL gardening.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198725 => 198726)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-27 14:32:41 UTC (rev 198725)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-28 02:31:44 UTC (rev 198726)
@@ -2996,3 +2996,14 @@
 webkit.org/b/155875 svg/batik/text/textEffect3.svg [ Failure ]
 webkit.org/b/155875 svg/batik/text/textPosition2.svg [ Failure ]
 webkit.org/b/155875 svg/foreignObject/text-tref-02-b.svg [ Failure ]
+
+webkit.org/b/155934 accessibility/svg-group-element-with-title.html [ Failure ]
+webkit.org/b/155934 accessibility/svg-image.html [ Failure ]
+webkit.org/b/155934 accessibility/svg-labelledby.html [ Failure ]
+webkit.org/b/155934 accessibility/svg-remote-element.html [ Failure ]
+
+webkit.org/b/155935 accessibility/aria-current-global-attribute.html [ Failure ]
+webkit.org/b/155936 accessibility/aria-current.html [ Failure ]
+webkit.org/b/155937 accessibility/aria-table-attributes.html [ Failure ]
+webkit.org/b/155938 accessibility/auto-fill-types.html [ Failure ]
+webkit.org/b/155939 accessibility/double-nested-inline-element-missing-from-tree.html [ Failure ]






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198725] trunk/LayoutTests

2016-03-27 Thread gyuyoung . kim
Title: [198725] trunk/LayoutTests








Revision 198725
Author gyuyoung@webkit.org
Date 2016-03-27 07:32:41 -0700 (Sun, 27 Mar 2016)


Log Message
Mark rtl-scrollbar's tests to pass with incorrectly

Unreviewed EFL gardening.

* platform/efl/TestExpectations: Though rtl scrollbar isn't supported by EFL yet, it has been passed.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198724 => 198725)

--- trunk/LayoutTests/ChangeLog	2016-03-27 03:07:04 UTC (rev 198724)
+++ trunk/LayoutTests/ChangeLog	2016-03-27 14:32:41 UTC (rev 198725)
@@ -1,3 +1,11 @@
+2016-03-27  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Mark rtl-scrollbar's tests to pass with incorrectly
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: Though rtl scrollbar isn't supported by EFL yet, it has been passed.
+
 2016-03-26  Gyuyoung Kim  <gyuyoung@webkit.org>
 
 Remove duplicated tests in EFL TextExpectations.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198724 => 198725)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-27 03:07:04 UTC (rev 198724)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-27 14:32:41 UTC (rev 198725)
@@ -1599,6 +1599,22 @@
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-10-t.svg [ Pass ]
 webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-14-t.svg [ Pass ]
 
+# RTL Scrollbars are only implemented on certain versions of OS X though, EFL port spits pass on layout test.
+fast/scrolling/rtl-scrollbars-iframe-offset.html
+fast/scrolling/rtl-scrollbars-iframe-scrolled.html
+fast/scrolling/rtl-scrollbars-overflow-contents.html
+fast/scrolling/rtl-scrollbars-overflow-dir-rtl.html
+fast/scrolling/rtl-scrollbars-overflow-padding.html
+fast/scrolling/rtl-scrollbars-overflow-position-absolute.html
+fast/scrolling/rtl-scrollbars-overflow-text-selection-scrolled.html
+fast/scrolling/rtl-scrollbars-overflow.html
+fast/scrolling/rtl-scrollbars-position-absolute.html
+fast/scrolling/rtl-scrollbars-position-fixed.html
+fast/scrolling/rtl-scrollbars-positioning.html
+fast/scrolling/rtl-scrollbars-text-selection-scrolled.html
+fast/scrolling/rtl-scrollbars-text-selection.html
+fast/scrolling/rtl-scrollbars.html
+
 #
 # FAILING TESTS
 #






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198716] trunk/LayoutTests

2016-03-26 Thread gyuyoung . kim
Title: [198716] trunk/LayoutTests








Revision 198716
Author gyuyoung@webkit.org
Date 2016-03-26 05:53:06 -0700 (Sat, 26 Mar 2016)


Log Message
Remove duplicated tests in EFL TextExpectations.

Unreviewed EFL gardening.

* platform/efl/TestExpectations: Clean up duplicated pathes.

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198715 => 198716)

--- trunk/LayoutTests/ChangeLog	2016-03-26 07:31:46 UTC (rev 198715)
+++ trunk/LayoutTests/ChangeLog	2016-03-26 12:53:06 UTC (rev 198716)
@@ -1,3 +1,11 @@
+2016-03-26  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Remove duplicated tests in EFL TextExpectations.
+
+Unreviewed EFL gardening.
+
+* platform/efl/TestExpectations: Clean up duplicated pathes.
+
 2016-03-26  Joseph Pecoraro  <pecor...@apple.com>
 
 ES6 Class syntax. Invoking method of parent class in constructor before super() lead to crash


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198715 => 198716)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-26 07:31:46 UTC (rev 198715)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-26 12:53:06 UTC (rev 198716)
@@ -62,6 +62,8 @@
 # Need a scroll snap point implementation
 css3/scroll-snap [ Skip ]
 
+webaudio/mixing.html [ Skip ]
+
 # TODO Animation triggers not supported
 animations/trigger-computed-style.html [ Skip ]
 animations/trigger-parsing.html [ Skip ]
@@ -550,7 +552,7 @@
 webkit.org/b/141894 fast/attachment [ Skip ]
 
 # EFL port doesn't fully support EME yet.
-webkit.org/b/141959 http/tests/media/clearkey/clear-key-hls-aes128.html [ Timeout ]
+webkit.org/b/141959 http/tests/media/clearkey/clear-key-hls-aes128.html [ Crash ]
 
 # Need a new baseline for EFL port. It was added by r72173.
 Bug(EFL) fast/css/line-height-determined-by-primary-font.html [ Failure ]
@@ -624,7 +626,6 @@
 
 webkit.org/b/153866 accessibility/media-element.html [ Crash ]
 webkit.org/b/153866 compositing/video/video-clip-change-src.html [ Crash ]
-webkit.org/b/153866 compositing/video/video-object-fit.html [ Crash ]
 webkit.org/b/153866 compositing/video/video-reflection.html [ Crash ]
 webkit.org/b/153866 fast/dom/beforeload/remove-video-in-beforeload-listener.html
 webkit.org/b/153866 fast/events/media-focus-in-standalone-media-document.html [ Crash ]
@@ -632,7 +633,6 @@
 webkit.org/b/153866 fullscreen/video-controls-timeline.html [ Crash ]
 webkit.org/b/153866 http/tests/appcache/video.html [ Crash ]
 webkit.org/b/153866 http/tests/cache/memory-cache-pruning.html [ Crash ]
-webkit.org/b/153866 http/tests/media/clearkey/clear-key-hls-aes128.html [ Crash ]
 webkit.org/b/153866 http/tests/media/media-document-referer.html [ Crash ]
 webkit.org/b/153866 http/tests/media/media-document.html [ Crash ]
 webkit.org/b/153866 http/tests/media/remove-while-loading.html [ Crash ]
@@ -645,7 +645,6 @@
 webkit.org/b/153866 http/tests/media/video-served-as-text.html [ Crash ]
 webkit.org/b/153866 http/tests/media/video-throttled-load-metadata.html [ Crash ]
 webkit.org/b/153866 http/tests/media/video-useragent.html [ Crash ]
-webkit.org/b/153866 http/tests/security/inactive-document-with-empty-security-origin.html [ Crash ]
 webkit.org/b/153866 http/tests/security/local-video-source-from-remote.html [ Crash ]
 webkit.org/b/153866 http/tests/security/video-cross-origin-accesssameorigin.html [ Crash ]
 webkit.org/b/153866 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/track/track-element/track-api-texttracks.html [ Crash ]
@@ -654,7 +653,6 @@
 webkit.org/b/153866 media/click-volume-bar-not-pausing.html [ Crash ]
 webkit.org/b/153866 media/context-menu-actions.html [ Crash ]
 webkit.org/b/153866 media/controls-drag-timebar.html [ Crash ]
-webkit.org/b/153866 media/controls-right-click-on-timebar.html [ Crash ]
 webkit.org/b/153866 media/controls-strict.html [ Crash ]
 webkit.org/b/153866 media/controls-styling-strict.html [ Crash ]
 webkit.org/b/153866 media/controls-without-preload.html [ Crash ]
@@ -731,7 +729,6 @@
 webkit.org/b/153866 media/video-background-tab-playback.html [ Crash ]
 webkit.org/b/153866 media/video-buffered.html [ Crash ]
 webkit.org/b/153866 media/video-canvas-alpha.html [ Crash ]
-webkit.org/b/153866 media/video-canvas-drawing-output.html [ Crash ]
 webkit.org/b/153866 media/video-click-dblckick-standalone.html [ Crash ]
 webkit.org/b/153866 media/video-colorspace-yuv420.html [ Crash ]
 webkit.org/b/153866 media/video-colorspace-yuv422.html [ Crash ]
@@ -800,7 +797,6 @@
 webkit.org/b/153866 media/video-replaces-poster.html [ Crash ]
 webkit.org/b/153866 media/video-resize.html [ Crash ]
 webkit.org/b/153866 media/video-restricted-invisible-autoplay-not-allowed.html [ Crash ]
-webkit.org/b/153866 media/video-restricted-no-preload-auto.html [ Crash ]
 webkit.org/b/153866 media/video-restricted-no-preload-metadata.html [ Crash ]
 webkit.org/b/153866 m

[webkit-changes] [198663] trunk/LayoutTests

2016-03-25 Thread gyuyoung . kim
Title: [198663] trunk/LayoutTests








Revision 198663
Author gyuyoung@webkit.org
Date 2016-03-25 07:08:11 -0700 (Fri, 25 Mar 2016)


Log Message
Unreviewed EFL gardening.

Mark new failing tests with existing or new bug.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198662 => 198663)

--- trunk/LayoutTests/ChangeLog	2016-03-25 09:42:44 UTC (rev 198662)
+++ trunk/LayoutTests/ChangeLog	2016-03-25 14:08:11 UTC (rev 198663)
@@ -2,6 +2,14 @@
 
 Unreviewed EFL gardening.
 
+Mark new failing tests with existing or new bug.
+
+* platform/efl/TestExpectations:
+
+2016-03-25  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening.
+
 Mark some blink imported tests to timeout, imageonlyfailure.
 Besides some AX tests need to have new baseline, which have been tested since r197616.
 


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198662 => 198663)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-25 09:42:44 UTC (rev 198662)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-25 14:08:11 UTC (rev 198663)
@@ -2849,6 +2849,19 @@
 webkit.org/b/148470 imported/w3c/web-platform-tests/html/semantics/interfaces.html [ Failure ]
 webkit.org/b/148470 imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/disabled.html [ Failure ]
 webkit.org/b/148470 imported/w3c/web-platform-tests/html/semantics/selectors/pseudo-classes/focus.html [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/XMLHttpRequest/send-accept-language.htm [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/XMLHttpRequest/send-entity-body-get-head-async.htm [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/XMLHttpRequest/send-entity-body-get-head.htm [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/XMLHttpRequest/send-redirect.htm [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/XMLHttpRequest/status-async.htm [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/XMLHttpRequest/status-basic.htm [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/XMLHttpRequest/status-error.htm [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/dom/nodes/Document-characterSet-normalization.html [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/dom/nodes/Node-cloneNode.html [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/html/dom/documents/dom-tree-accessors/document.getElementsByName/document.getElementsByName-newelements-xhtml.xhtml [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/html/dom/reflection-text.html [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/interfaces/TextTrack/activeCues.html [ Failure ]
+webkit.org/b/148470 imported/w3c/web-platform-tests/html/semantics/embedded-content/the-img-element/environment-changes/viewport-change.html [ Failure ]
 webkit.org/b/148470 scrollbars/scrollbar-drag-thumb-with-large-content.html [ Failure ]
 webkit.org/b/148470 svg/text/foreignObject-repaint.xml [ Failure ]
 webkit.org/b/148470 svg/text/select-text-svgfont.html [ Failure ]
@@ -3008,4 +3021,20 @@
 webkit.org/b/155878 accessibility/w3c-svg-elements-not-exposed.html [ Missing ]
 webkit.org/b/155878 accessibility/w3c-svg-name-calculation.html [ Missing ]
 webkit.org/b/155878 accessibility/w3c-svg-presentational-role.html [ Missing ]
-webkit.org/b/155878 accessibility/w3c-svg-roles.html [ Missing ]
\ No newline at end of file
+webkit.org/b/155878 accessibility/w3c-svg-roles.html [ Missing ]
+
+webkit.org/b/155883 http/tests/security/contentSecurityPolicy/object-src-applet-archive-codebase.html [ Failure ]
+webkit.org/b/155883 http/tests/security/contentSecurityPolicy/object-src-applet-archive.html [ Failure ]
+webkit.org/b/155883 http/tests/security/contentSecurityPolicy/object-src-applet-code-codebase.html [ Failure ]
+webkit.org/b/155883 http/tests/security/contentSecurityPolicy/object-src-applet-code.html [ Failure ]
+
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-20-t.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-24-t.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/interact-events-01-b.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-01-t.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-10-t.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/paths-data-14-t.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/render-elems-07-t.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/render-elems-08-t.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/render-groups-01-b.svg [ Failure ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/render-groups-03-t.svg [ Failure ]






___
webkit-changes mailing list
we

[webkit-changes] [198662] trunk/LayoutTests

2016-03-25 Thread gyuyoung . kim
Title: [198662] trunk/LayoutTests








Revision 198662
Author gyuyoung@webkit.org
Date 2016-03-25 02:42:44 -0700 (Fri, 25 Mar 2016)


Log Message
Unreviewed EFL gardening.

Mark some blink imported tests to timeout, imageonlyfailure.
Besides some AX tests need to have new baseline, which have been tested since r197616.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198661 => 198662)

--- trunk/LayoutTests/ChangeLog	2016-03-25 06:46:31 UTC (rev 198661)
+++ trunk/LayoutTests/ChangeLog	2016-03-25 09:42:44 UTC (rev 198662)
@@ -1,3 +1,12 @@
+2016-03-25  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening.
+
+Mark some blink imported tests to timeout, imageonlyfailure.
+Besides some AX tests need to have new baseline, which have been tested since r197616.
+
+* platform/efl/TestExpectations:
+
 2016-03-24  Gyuyoung Kim  <gyuyoung@webkit.org>
 
 Unreviewed EFL gardening. Mark crash tests in proper category.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198661 => 198662)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-25 06:46:31 UTC (rev 198661)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-25 09:42:44 UTC (rev 198662)
@@ -2992,9 +2992,20 @@
 webkit.org/b/151943 imported/blink/http/tests/security/contentSecurityPolicy/object-src-applet-code-codebase.html [ Failure ]
 webkit.org/b/151943 imported/blink/http/tests/security/contentSecurityPolicy/object-src-applet-code.html [ Failure ]
 webkit.org/b/151943 imported/blink/media/track/media-element-move-to-new-document-assert.html [ Failure ]
+webkit.org/b/151943 imported/blink/compositing/draws-content/webgl-simple-background.html [ Timeout ]
+webkit.org/b/151943 imported/blink/fast/css/crash-corner-present.html [ Timeout ]
+webkit.org/b/151943 imported/blink/fast/events/popup-forwarded-gesture.html [ Timeout ]
+webkit.org/b/151943 imported/blink/fast/box-shadow/basic-shadows-2.html [ ImageOnlyFailure ]
+webkit.org/b/151943 imported/blink/fast/box-shadow/normal-box-shadow-with-background-image.html [ ImageOnlyFailure ]
+webkit.org/b/151943 imported/blink/webexposed/webkit-focus-ring-exposed-to-quirks-mode.html [ ImageOnlyFailure ]
 
 webkit.org/b/153772 fast/shadow-dom/slot-removal-crash-2.html [ Timeout ]
 
 webkit.org/b/155505 http/tests/security/contentSecurityPolicy/userAgentShadowDOM/allow-audio.html [ Skip ]
 webkit.org/b/155505 webkit.org/b/153866 http/tests/security/contentSecurityPolicy/userAgentShadowDOM/allow-video.html [ Skip ]
 
+webkit.org/b/155878 accessibility/w3c-svg-description-calculation.html [ Missing ]
+webkit.org/b/155878 accessibility/w3c-svg-elements-not-exposed.html [ Missing ]
+webkit.org/b/155878 accessibility/w3c-svg-name-calculation.html [ Missing ]
+webkit.org/b/155878 accessibility/w3c-svg-presentational-role.html [ Missing ]
+webkit.org/b/155878 accessibility/w3c-svg-roles.html [ Missing ]
\ No newline at end of file






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [198661] trunk/LayoutTests

2016-03-25 Thread gyuyoung . kim
Title: [198661] trunk/LayoutTests








Revision 198661
Author gyuyoung@webkit.org
Date 2016-03-24 23:46:31 -0700 (Thu, 24 Mar 2016)


Log Message
Unreviewed EFL gardening. Mark crash tests in proper category.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198660 => 198661)

--- trunk/LayoutTests/ChangeLog	2016-03-25 05:14:16 UTC (rev 198660)
+++ trunk/LayoutTests/ChangeLog	2016-03-25 06:46:31 UTC (rev 198661)
@@ -1,3 +1,9 @@
+2016-03-24  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening. Mark crash tests in proper category.
+
+* platform/efl/TestExpectations:
+
 2016-03-24  Daniel Bates  <daba...@apple.com>
 
 CSP: Move logic for reporting a violation from ContentSecurityPolicyDirectiveList to ContentSecurityPolicy


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198660 => 198661)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-25 05:14:16 UTC (rev 198660)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-25 06:46:31 UTC (rev 198661)
@@ -286,6 +286,7 @@
 storage/indexeddb/open-ordering.html [ Skip ]
 storage/indexeddb/transaction-basics.html [ Skip ]
 storage/indexeddb/transaction-coordination-within-database.html [ Skip ]
+storage/indexeddb/modern/opendatabase-request.html [ Skip ]
 
 # Blink tests with non-trivial text failures.
 storage/indexeddb/createIndex-after-failure.html [ Skip ]
@@ -594,6 +595,9 @@
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/directive-parsing-03.html [ Skip ]
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/directive-parsing-04.html [ Skip ]
 webkit.org/b/116587 http/tests/security/contentSecurityPolicy/directive-parsing-05.html [ Skip ]
+webkit.org/b/116587 http/tests/security/contentSecurityPolicy/video-redirect-allowed.html [ Crash ]
+webkit.org/b/116587 http/tests/security/contentSecurityPolicy/video-with-http-url-allowed-by-csp-media-src-star.html [ Skip ]
+webkit.org/b/116587 http/tests/security/contentSecurityPolicy/video-with-https-url-allowed-by-csp-media-src-star.html [ Skip ]
 
 # websocket tests are very flakey due to bug116587 and bug111976
 webkit.org/b/116587 http/tests/websocket [ Skip ]
@@ -824,7 +828,89 @@
 webkit.org/b/153866 media/video-zoom-controls.html [ Crash ]
 webkit.org/b/153866 media/video-zoom.html [ Crash ]
 webkit.org/b/153866 media/volume-bar-empty-when-muted.html [ Crash ]
+webkit.org/b/153866 media/video-autoplay-allowed-but-fullscreen-required.html [ Crash ]
+webkit.org/b/153866 media/video-crash-invisible-autoplay-display-none.html [ Crash ]
+webkit.org/b/153866 media/video-main-content-allow-then-deny.html [ Crash ]
+webkit.org/b/153866 media/video-main-content-allow.html [ Crash ]
+webkit.org/b/153866 media/video-main-content-deny-display-none.html [ Crash ]
+webkit.org/b/153866 media/video-main-content-deny-not-in-dom.html [ Crash ]
+webkit.org/b/153866 media/video-main-content-deny-not-visible.html [ Crash ]
+webkit.org/b/153866 media/video-main-content-deny-obscured.html [ Crash ]
+webkit.org/b/153866 media/video-main-content-deny-too-small.html [ Crash ]
+webkit.org/b/153866 media/video-restricted-invisible-autoplay-allowed-when-visible.html [ Crash ]
+webkit.org/b/153866 media/video-source-type-params.html [ Crash ]
+webkit.org/b/153866 compositing/video/video-object-position.html [ Crash ]
+webkit.org/b/153866 media/auto-play-in-sandbox-with-allow-scripts.html [ Crash ]
+webkit.org/b/153866 media/media-volume-slider-rendered-normal.html [ Crash ]
+webkit.org/b/153866 media/remove-from-document-no-load.html [ Crash ]
+webkit.org/b/153866 media/track/track-active-cues.html [ Crash ]
+webkit.org/b/153866 media/track/track-cue-rendering-empty-cue-crash.html [ Crash ]
+webkit.org/b/153866 http/tests/media/clearkey/clear-key-hls-aes128.html [ Crash ]
+webkit.org/b/153866 http/tests/media/video-cookie.html [ Crash ]
 
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-20-t.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-21-t.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-22-b.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-23-t.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-24-t.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-28-t.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/animate-elem-29-b.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/interact-events-01-b.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-01-b.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-02-b.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/interact-order-03-b.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/interact-zoom-01-t.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/linking-a-01-b.svg [ Crash ]
+webkit.org/b/155875 svg/W3C-SVG-1.1/linking-a-02-b.svg [ Crash ]
+webkit.org/b/

[webkit-changes] [198623] trunk/LayoutTests

2016-03-24 Thread gyuyoung . kim
Title: [198623] trunk/LayoutTests








Revision 198623
Author gyuyoung@webkit.org
Date 2016-03-24 06:27:30 -0700 (Thu, 24 Mar 2016)


Log Message
Unreviewed EFL gardening.

Unskip passing tests, which have been passed a long time ago.
Failed to track correct revision on EFL buildbot.

* platform/efl/TestExpectations:

Modified Paths

trunk/LayoutTests/ChangeLog
trunk/LayoutTests/platform/efl/TestExpectations




Diff

Modified: trunk/LayoutTests/ChangeLog (198622 => 198623)

--- trunk/LayoutTests/ChangeLog	2016-03-24 10:36:45 UTC (rev 198622)
+++ trunk/LayoutTests/ChangeLog	2016-03-24 13:27:30 UTC (rev 198623)
@@ -1,3 +1,12 @@
+2016-03-24  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Unreviewed EFL gardening.
+
+Unskip passing tests, which have been passed a long time ago.
+Failed to track correct revision on EFL buildbot.
+
+* platform/efl/TestExpectations:
+
 2016-03-23  Commit Queue  <commit-qu...@webkit.org>
 
 Unreviewed, rolling out r198538.


Modified: trunk/LayoutTests/platform/efl/TestExpectations (198622 => 198623)

--- trunk/LayoutTests/platform/efl/TestExpectations	2016-03-24 10:36:45 UTC (rev 198622)
+++ trunk/LayoutTests/platform/efl/TestExpectations	2016-03-24 13:27:30 UTC (rev 198623)
@@ -633,8 +633,6 @@
 webkit.org/b/153866 http/tests/media/media-document.html [ Crash ]
 webkit.org/b/153866 http/tests/media/remove-while-loading.html [ Crash ]
 webkit.org/b/153866 http/tests/media/video-auth.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-cancel-load.html [ Crash ]
-webkit.org/b/153866 http/tests/media/video-cookie.html [ Crash ]
 webkit.org/b/153866 http/tests/media/video-load-suspend.html [ Crash ]
 webkit.org/b/153866 http/tests/media/video-load-twice.html [ Crash ]
 webkit.org/b/153866 http/tests/media/video-play-progress.html [ Crash ]
@@ -644,16 +642,11 @@
 webkit.org/b/153866 http/tests/media/video-throttled-load-metadata.html [ Crash ]
 webkit.org/b/153866 http/tests/media/video-useragent.html [ Crash ]
 webkit.org/b/153866 http/tests/security/inactive-document-with-empty-security-origin.html [ Crash ]
-webkit.org/b/153866 http/tests/security/isolatedWorld/userGestureEvents.html [ Crash ]
 webkit.org/b/153866 http/tests/security/local-video-source-from-remote.html [ Crash ]
-webkit.org/b/153866 http/tests/security/referrer-policy-redirect-link.html [ Crash ]
 webkit.org/b/153866 http/tests/security/video-cross-origin-accesssameorigin.html [ Crash ]
 webkit.org/b/153866 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/track/track-element/track-api-texttracks.html [ Crash ]
-webkit.org/b/153866 media/W3C/audio/canPlayType/canPlayType_application_octet_stream.html [ Crash ]
 webkit.org/b/153866 media/accessiblity-describes-video.html [ Crash ]
-webkit.org/b/153866 media/adopt-node-crash.html [ Crash ]
 webkit.org/b/153866 media/audio-mpeg4-supported.html [ Crash ]
-webkit.org/b/153866 media/auto-play-in-sandbox-with-allow-scripts.html [ Crash ]
 webkit.org/b/153866 media/click-volume-bar-not-pausing.html [ Crash ]
 webkit.org/b/153866 media/context-menu-actions.html [ Crash ]
 webkit.org/b/153866 media/controls-drag-timebar.html [ Crash ]
@@ -661,8 +654,6 @@
 webkit.org/b/153866 media/controls-strict.html [ Crash ]
 webkit.org/b/153866 media/controls-styling-strict.html [ Crash ]
 webkit.org/b/153866 media/controls-without-preload.html [ Crash ]
-webkit.org/b/153866 media/crash-closing-page-with-media-as-plugin-fallback.html [ Crash ]
-webkit.org/b/153866 media/fallback.html [ Crash ]
 webkit.org/b/153866 media/media-can-load-when-hidden.html [ Crash ]
 webkit.org/b/153866 media/media-captions-no-controls.html [ Crash ]
 webkit.org/b/153866 media/media-controller-drag-crash.html [ Crash ]
@@ -682,14 +673,11 @@
 webkit.org/b/153866 media/media-event-listeners.html [ Crash ]
 webkit.org/b/153866 media/media-extension-with-fragment.html [ Crash ]
 webkit.org/b/153866 media/media-fullscreen-inline.html [ Crash ]
-webkit.org/b/153866 media/media-volume-slider-rendered-normal.html [ Crash ]
 webkit.org/b/153866 media/muted-video-is-playing-audio.html [ Crash ]
 webkit.org/b/153866 media/no-autoplay-with-user-gesture-requirement.html [ Crash ]
 webkit.org/b/153866 media/nodesFromRect-shadowContent.html [ Crash ]
-webkit.org/b/153866 media/remove-from-document-no-load.html [ Crash ]
 webkit.org/b/153866 media/restore-from-page-cache.html [ Crash ]
 webkit.org/b/153866 media/sources-fallback-codecs.html [ Crash ]
-webkit.org/b/153866 media/track/track-active-cues.html [ Crash ]
 webkit.org/b/153866 media/track/track-automatic-subtitles.html [ Crash ]
 webkit.org/b/153866 media/track/track-css-all-cues.html [ Crash ]
 webkit.org/b/153866 media/track/track-css-cue-lifetime.html [ Crash ]
@@ -703,7 +691,6 @@
 webkit.org/b/153866 media/track/track-cue-empty-text-crash.html [ Crash ]
 webkit.org/b/153866 media/track/track-cue-inline-assertion-crash.html [ Crash ]
 webkit.org/b/153866 media/track

[webkit-changes] [198583] trunk/Source/WebCore

2016-03-23 Thread gyuyoung . kim
Title: [198583] trunk/Source/WebCore








Revision 198583
Author gyuyoung@webkit.org
Date 2016-03-23 07:05:54 -0700 (Wed, 23 Mar 2016)


Log Message
Reduce PassRefPtr uses in editing
https://bugs.webkit.org/show_bug.cgi?id=155743

Reviewed by Darin Adler.

Use RefPtr<>&&, raw pointer, or reference in arugments instead of PassRefPtr.
Besides RefPtr is used if function may be able to return nullptr.

* dom/Element.cpp:
(WebCore::Element::setOuterHTML):
(WebCore::Element::setInnerHTML):
* dom/Range.cpp:
(WebCore::Range::createContextualFragment):
* dom/ShadowRoot.cpp:
(WebCore::ShadowRoot::setInnerHTML):
* editing/CompositeEditCommand.cpp:
(WebCore::CompositeEditCommand::wrapContentsInDummySpan):
* editing/CompositeEditCommand.h:
* editing/DictationCommand.cpp:
(WebCore::DictationCommand::insertText):
* editing/SplitTextNodeContainingElementCommand.cpp:
(WebCore::SplitTextNodeContainingElementCommand::doApply):
* editing/TextInsertionBaseCommand.cpp:
(WebCore::TextInsertionBaseCommand::applyTextInsertionCommand):
* editing/TextInsertionBaseCommand.h:
* editing/TypingCommand.cpp:
(WebCore::TypingCommand::deleteSelection):
(WebCore::TypingCommand::deleteKeyPressed):
(WebCore::TypingCommand::forwardDeleteKeyPressed):
(WebCore::TypingCommand::insertText):
(WebCore::TypingCommand::insertLineBreak):
(WebCore::TypingCommand::insertParagraphSeparatorInQuotedContent):
(WebCore::TypingCommand::insertParagraphSeparator):
(WebCore::TypingCommand::lastTypingCommandIfStillOpenForTyping):
(WebCore::TypingCommand::closeTyping):
(WebCore::TypingCommand::ensureLastEditCommandHasCurrentSelectionIfOpenForMoreTyping):
* editing/TypingCommand.h:
* editing/VisibleSelection.cpp:
(WebCore::VisibleSelection::firstRange):
(WebCore::makeSearchRange):
* editing/VisibleSelection.h:
* editing/WrapContentsInDummySpanCommand.cpp:
(WebCore::WrapContentsInDummySpanCommand::WrapContentsInDummySpanCommand):
* editing/WrapContentsInDummySpanCommand.h:
(WebCore::WrapContentsInDummySpanCommand::create):
* editing/atk/FrameSelectionAtk.cpp:
(WebCore::maybeEmitTextFocusChange):
(WebCore::FrameSelection::notifyAccessibilityForSelectionChange):
* editing/htmlediting.cpp:
(WebCore::createOrderedListElement):
(WebCore::createUnorderedListElement):
(WebCore::createListItemElement):
(WebCore::createTabSpanElement):
* editing/htmlediting.h:
* editing/markup.cpp:
(WebCore::AttributeChange::AttributeChange):
(WebCore::ancestorToRetainStructureAndAppearanceForBlock):
(WebCore::styleFromMatchedRulesAndInlineDecl):
(WebCore::createFragmentForInnerOuterHTML):
(WebCore::createFragmentForTransformToFragment):
(WebCore::createContextualFragment):
* editing/markup.h:
* html/HTMLElement.cpp:
(WebCore::HTMLElement::insertAdjacentHTML):
* xml/XSLTProcessor.cpp:
(WebCore::XSLTProcessor::transformToFragment):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/dom/Element.cpp
trunk/Source/WebCore/dom/Range.cpp
trunk/Source/WebCore/dom/ShadowRoot.cpp
trunk/Source/WebCore/editing/CompositeEditCommand.cpp
trunk/Source/WebCore/editing/CompositeEditCommand.h
trunk/Source/WebCore/editing/DictationCommand.cpp
trunk/Source/WebCore/editing/SplitTextNodeContainingElementCommand.cpp
trunk/Source/WebCore/editing/TextInsertionBaseCommand.cpp
trunk/Source/WebCore/editing/TextInsertionBaseCommand.h
trunk/Source/WebCore/editing/TypingCommand.cpp
trunk/Source/WebCore/editing/TypingCommand.h
trunk/Source/WebCore/editing/VisibleSelection.cpp
trunk/Source/WebCore/editing/VisibleSelection.h
trunk/Source/WebCore/editing/WrapContentsInDummySpanCommand.cpp
trunk/Source/WebCore/editing/WrapContentsInDummySpanCommand.h
trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp
trunk/Source/WebCore/editing/htmlediting.cpp
trunk/Source/WebCore/editing/htmlediting.h
trunk/Source/WebCore/editing/markup.cpp
trunk/Source/WebCore/editing/markup.h
trunk/Source/WebCore/html/HTMLElement.cpp
trunk/Source/WebCore/xml/XSLTProcessor.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (198582 => 198583)

--- trunk/Source/WebCore/ChangeLog	2016-03-23 09:15:43 UTC (rev 198582)
+++ trunk/Source/WebCore/ChangeLog	2016-03-23 14:05:54 UTC (rev 198583)
@@ -1,3 +1,72 @@
+2016-03-23  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Reduce PassRefPtr uses in editing
+https://bugs.webkit.org/show_bug.cgi?id=155743
+
+Reviewed by Darin Adler.
+
+Use RefPtr<>&&, raw pointer, or reference in arugments instead of PassRefPtr.
+Besides RefPtr is used if function may be able to return nullptr.
+
+* dom/Element.cpp:
+(WebCore::Element::setOuterHTML):
+(WebCore::Element::setInnerHTML):
+* dom/Range.cpp:
+(WebCore::Range::createContextualFragment):
+* dom/ShadowRoot.cpp:
+(WebCore::ShadowRoot::setInnerHTML):
+* editing/CompositeEditCommand.cpp:
+(WebCore::CompositeEditCommand::wrapContentsInDummySpan):
+* editing/CompositeEditCommand.h:
+* editing/Di

[webkit-changes] [198483] trunk/Source/WebCore

2016-03-21 Thread gyuyoung . kim
Title: [198483] trunk/Source/WebCore








Revision 198483
Author gyuyoung@webkit.org
Date 2016-03-20 23:05:49 -0700 (Sun, 20 Mar 2016)


Log Message
Reduce uses of PassRefPtr in WebCore/dom - 6
https://bugs.webkit.org/show_bug.cgi?id=155579

Reviewed by Darin Adler.

* dom/MessagePortChannel.h:
* dom/default/PlatformMessagePortChannel.cpp:
(WebCore::PlatformMessagePortChannel::EventData::EventData):
(WebCore::MessagePortChannel::createChannel):
(WebCore::MessagePortChannel::MessagePortChannel):
(WebCore::MessagePortChannel::postMessageToRemote):
(WebCore::PlatformMessagePortChannel::create):
(WebCore::PlatformMessagePortChannel::PlatformMessagePortChannel):
* dom/default/PlatformMessagePortChannel.h:
(WebCore::PlatformMessagePortChannel::EventData::message):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/dom/DocumentMarker.cpp
trunk/Source/WebCore/dom/DocumentMarker.h
trunk/Source/WebCore/dom/DocumentMarkerController.cpp
trunk/Source/WebCore/dom/DocumentMarkerController.h
trunk/Source/WebCore/dom/EventContext.cpp
trunk/Source/WebCore/dom/EventContext.h
trunk/Source/WebCore/dom/EventDispatcher.cpp
trunk/Source/WebCore/dom/MessagePort.cpp
trunk/Source/WebCore/dom/MessagePort.h
trunk/Source/WebCore/dom/MessagePortChannel.h
trunk/Source/WebCore/dom/StaticNodeList.h
trunk/Source/WebCore/dom/default/PlatformMessagePortChannel.cpp
trunk/Source/WebCore/dom/default/PlatformMessagePortChannel.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (198482 => 198483)

--- trunk/Source/WebCore/ChangeLog	2016-03-21 05:28:21 UTC (rev 198482)
+++ trunk/Source/WebCore/ChangeLog	2016-03-21 06:05:49 UTC (rev 198483)
@@ -1,3 +1,21 @@
+2016-03-20  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Reduce uses of PassRefPtr in WebCore/dom - 6
+https://bugs.webkit.org/show_bug.cgi?id=155579
+
+Reviewed by Darin Adler.
+
+* dom/MessagePortChannel.h:
+* dom/default/PlatformMessagePortChannel.cpp:
+(WebCore::PlatformMessagePortChannel::EventData::EventData):
+(WebCore::MessagePortChannel::createChannel):
+(WebCore::MessagePortChannel::MessagePortChannel):
+(WebCore::MessagePortChannel::postMessageToRemote):
+(WebCore::PlatformMessagePortChannel::create):
+(WebCore::PlatformMessagePortChannel::PlatformMessagePortChannel):
+* dom/default/PlatformMessagePortChannel.h:
+(WebCore::PlatformMessagePortChannel::EventData::message):
+
 2016-03-20  Jinwoo Jeong  <jw00.je...@samsung.com>
 
 The setter of binaryType attribute in WebSocket should raise the exception.


Modified: trunk/Source/WebCore/dom/DocumentMarker.cpp (198482 => 198483)

--- trunk/Source/WebCore/dom/DocumentMarker.cpp	2016-03-21 05:28:21 UTC (rev 198482)
+++ trunk/Source/WebCore/dom/DocumentMarker.cpp	2016-03-21 06:05:49 UTC (rev 198483)
@@ -125,7 +125,7 @@
 ASSERT(m_details);
 }
 
-DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, PassRefPtr details)
+DocumentMarker::DocumentMarker(MarkerType type, unsigned startOffset, unsigned endOffset, RefPtr&& details)
 : m_type(type)
 , m_startOffset(startOffset)
 , m_endOffset(endOffset)


Modified: trunk/Source/WebCore/dom/DocumentMarker.h (198482 => 198483)

--- trunk/Source/WebCore/dom/DocumentMarker.h	2016-03-21 05:28:21 UTC (rev 198482)
+++ trunk/Source/WebCore/dom/DocumentMarker.h	2016-03-21 06:05:49 UTC (rev 198483)
@@ -122,7 +122,7 @@
 DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, const String& description, const Vector& alternatives, RetainPtr metadata);
 #endif
 DocumentMarker(unsigned startOffset, unsigned endOffset, bool activeMatch);
-DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, PassRefPtr);
+DocumentMarker(MarkerType, unsigned startOffset, unsigned endOffset, RefPtr&&);
 
 MarkerType type() const { return m_type; }
 unsigned startOffset() const { return m_startOffset; }


Modified: trunk/Source/WebCore/dom/DocumentMarkerController.cpp (198482 => 198483)

--- trunk/Source/WebCore/dom/DocumentMarkerController.cpp	2016-03-21 05:28:21 UTC (rev 198482)
+++ trunk/Source/WebCore/dom/DocumentMarkerController.cpp	2016-03-21 06:05:49 UTC (rev 198483)
@@ -83,9 +83,9 @@
 addMarker(node, DocumentMarker(type, startOffset, startOffset + length));
 }
 
-void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type, PassRefPtr details)
+void DocumentMarkerController::addMarkerToNode(Node* node, unsigned startOffset, unsigned length, DocumentMarker::MarkerType type, RefPtr&& details)
 {
-addMarker(node, DocumentMarker(type, startOffset, startOffset + length, details));
+addMarker(node, DocumentMarker(type, startOffset, startOffset + length, WTFMove(details)));
 }
 
 


Modified: trunk/Source/WebCore/dom/DocumentMarkerController.h (198482 => 19848

[webkit-changes] [198208] trunk/Source/WebKit2

2016-03-15 Thread gyuyoung . kim
Title: [198208] trunk/Source/WebKit2








Revision 198208
Author gyuyoung@webkit.org
Date 2016-03-15 03:42:01 -0700 (Tue, 15 Mar 2016)


Log Message
EFL build has been broken since r198180
https://bugs.webkit.org/show_bug.cgi?id=155488

Unreviewed build fix.

* WebProcess/UserContent/WebUserContentController.h: Use ENABLE(USER_MESSAGE_HANDLERS) guard.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.h




Diff

Modified: trunk/Source/WebKit2/ChangeLog (198207 => 198208)

--- trunk/Source/WebKit2/ChangeLog	2016-03-15 10:38:43 UTC (rev 198207)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-15 10:42:01 UTC (rev 198208)
@@ -1,3 +1,12 @@
+2016-03-15  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+EFL build has been broken since r198180
+https://bugs.webkit.org/show_bug.cgi?id=155488
+
+Unreviewed build fix.
+
+* WebProcess/UserContent/WebUserContentController.h: Use ENABLE(USER_MESSAGE_HANDLERS) guard. 
+
 2016-03-15  Chris Dumez  <cdu...@apple.com>
 
 Regression(r197939): ASSERTION FAILED: url.containsOnlyASCII() in URL.cpp


Modified: trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.h (198207 => 198208)

--- trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.h	2016-03-15 10:38:43 UTC (rev 198207)
+++ trunk/Source/WebKit2/WebProcess/UserContent/WebUserContentController.h	2016-03-15 10:42:01 UTC (rev 198208)
@@ -46,7 +46,10 @@
 
 class InjectedBundleScriptWorld;
 class WebCompiledContentExtensionData;
+
+#if ENABLE(USER_MESSAGE_HANDLERS)
 class WebUserMessageHandlerDescriptorProxy;
+#endif
 
 class WebUserContentController final : public WebCore::UserContentProvider, private IPC::MessageReceiver {
 public:
@@ -107,7 +110,6 @@
 
 
 uint64_t m_identifier;
-HashMap<uint64_t, RefPtr> m_userMessageHandlerDescriptors;
 
 typedef HashMap<RefPtr, Vector<std::pair<uint64_t, WebCore::UserScript>>> WorldToUserScriptMap;
 WorldToUserScriptMap m_userScripts;
@@ -116,6 +118,7 @@
 WorldToUserStyleSheetMap m_userStyleSheets;
 
 #if ENABLE(USER_MESSAGE_HANDLERS)
+HashMap<uint64_t, RefPtr> m_userMessageHandlerDescriptors;
 WebCore::UserMessageHandlerDescriptorMap m_userMessageHandlerDescriptorsMap;
 #endif
 #if ENABLE(CONTENT_EXTENSIONS)






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [197532] trunk/Source/WebKit2

2016-03-03 Thread gyuyoung . kim
Title: [197532] trunk/Source/WebKit2








Revision 197532
Author gyuyoung@webkit.org
Date 2016-03-03 16:54:21 -0800 (Thu, 03 Mar 2016)


Log Message
Use std::make_unique<> when creating std::unique_ptr<>
https://bugs.webkit.org/show_bug.cgi?id=154574

Reviewed by Darin Adler.

* NetworkProcess/cache/NetworkCacheStatistics.cpp:
(WebKit::NetworkCache::Statistics::open):
* NetworkProcess/cache/NetworkCacheStatistics.h:
* WebProcess/WebCoreSupport/WebChromeClient.cpp:
(WebKit::WebChromeClient::createColorChooser):

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.cpp
trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.h
trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (197531 => 197532)

--- trunk/Source/WebKit2/ChangeLog	2016-03-04 00:47:55 UTC (rev 197531)
+++ trunk/Source/WebKit2/ChangeLog	2016-03-04 00:54:21 UTC (rev 197532)
@@ -1,3 +1,16 @@
+2016-03-03  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Use std::make_unique<> when creating std::unique_ptr<>
+https://bugs.webkit.org/show_bug.cgi?id=154574
+
+Reviewed by Darin Adler.
+
+* NetworkProcess/cache/NetworkCacheStatistics.cpp:
+(WebKit::NetworkCache::Statistics::open):
+* NetworkProcess/cache/NetworkCacheStatistics.h:
+* WebProcess/WebCoreSupport/WebChromeClient.cpp:
+(WebKit::WebChromeClient::createColorChooser):
+
 2016-03-03  Alex Christensen  <achristen...@webkit.org>
 
 Move SPI to CFNetworkSPI.h


Modified: trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.cpp (197531 => 197532)

--- trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.cpp	2016-03-04 00:47:55 UTC (rev 197531)
+++ trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.cpp	2016-03-04 00:54:21 UTC (rev 197532)
@@ -78,7 +78,7 @@
 ASSERT(RunLoop::isMain());
 
 String databasePath = WebCore::pathByAppendingComponent(cachePath, StatisticsDatabaseName);
-return std::unique_ptr(new Statistics(databasePath));
+return std::make_unique(databasePath);
 }
 
 Statistics::Statistics(const String& databasePath)


Modified: trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.h (197531 => 197532)

--- trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.h	2016-03-04 00:47:55 UTC (rev 197531)
+++ trunk/Source/WebKit2/NetworkProcess/cache/NetworkCacheStatistics.h	2016-03-04 00:54:21 UTC (rev 197532)
@@ -44,6 +44,7 @@
 class Statistics {
 public:
 static std::unique_ptr open(const String& cachePath);
+explicit Statistics(const String& databasePath);
 
 void clear();
 
@@ -55,8 +56,6 @@
 void recordRevalidationSuccess(uint64_t webPageID, const Key&, const WebCore::ResourceRequest&);
 
 private:
-explicit Statistics(const String& databasePath);
-
 WorkQueue& serialBackgroundIOQueue() { return m_serialBackgroundIOQueue.get(); }
 
 void initialize(const String& databasePath);


Modified: trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp (197531 => 197532)

--- trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp	2016-03-04 00:47:55 UTC (rev 197531)
+++ trunk/Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp	2016-03-04 00:54:21 UTC (rev 197532)
@@ -701,7 +701,7 @@
 #if ENABLE(INPUT_TYPE_COLOR)
 std::unique_ptr WebChromeClient::createColorChooser(ColorChooserClient* client, const Color& initialColor)
 {
-return std::unique_ptr(new WebColorChooser(m_page, client, initialColor));
+return std::make_unique(m_page, client, initialColor);
 }
 #endif
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [197504] trunk/Tools

2016-03-03 Thread gyuyoung . kim
Title: [197504] trunk/Tools








Revision 197504
Author gyuyoung@webkit.org
Date 2016-03-03 06:09:22 -0800 (Thu, 03 Mar 2016)


Log Message
[EFL] Remove u-szeged.hu SVN mirror in EFL perf bot
https://bugs.webkit.org/show_bug.cgi?id=154960

Reviewed by Csaba Osztrogonác.

* BuildSlaveSupport/build.webkit.org-config/config.json: Remove szeged univ's svn mirror.
* BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:

Modified Paths

trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json
trunk/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py
trunk/Tools/ChangeLog




Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json (197503 => 197504)

--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json	2016-03-03 11:05:32 UTC (rev 197503)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/config.json	2016-03-03 14:09:22 UTC (rev 197504)
@@ -313,7 +313,6 @@
 {
   "name": "EFL Linux 64-bit Release WK2 (Perf)", "type": "BuildAndPerfTest", "builddir": "efl-linux-64-release-wk2-perf",
   "platform": "efl", "configuration": "release", "architectures": ["x86_64"],
-  "SVNMirror": "svn://webkit.inf.u-szeged.hu/webkit/",
   "slavenames": ["efl-linux-szeged-slave-3"]
 }
   ],


Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py (197503 => 197504)

--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py	2016-03-03 11:05:32 UTC (rev 197503)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py	2016-03-03 14:09:22 UTC (rev 197504)
@@ -405,7 +405,7 @@
 'Apple iOS 9 Simulator Release WK2 (Tests)' : ['configure build', 'svn', 'kill old processes', 'delete WebKitBuild directory', 'delete stale build files', 'download-built-product', 'extract-built-product', 'layout-test', 'run-api-tests', 'webkitpy-test', 'webkitperl-test', 'bindings-generation-tests', 'archive-test-results', 'upload', 'MasterShellCommand'],
 
 'EFL Linux 64-bit Release WK2' : ['configure build', 'svn', 'kill old processes', 'delete WebKitBuild directory', 'delete stale build files', 'jhbuild', 'compile-webkit', 'jscore-test', 'layout-test', 'webkitpy-test', 'webkitperl-test', 'bindings-generation-tests', 'archive-test-results', 'upload', 'MasterShellCommand', 'API tests'],
-'EFL Linux 64-bit Release WK2 (Perf)' : ['configure build', 'wait-for-svn-server', 'svn', 'kill old processes', 'delete WebKitBuild directory', 'delete stale build files', 'jhbuild', 'compile-webkit', 'perf-test'],
+'EFL Linux 64-bit Release WK2 (Perf)' : ['configure build', 'svn', 'kill old processes', 'delete WebKitBuild directory', 'delete stale build files', 'jhbuild', 'compile-webkit', 'perf-test'],
 'EFL Linux ARMv7 Thumb2 Release' : ['configure build', 'wait-for-svn-server', 'svn', 'delete WebKitBuild directory', 'delete stale build files', 'jhbuild', 'compile-webkit', 'jscore-test'],
 'EFL Linux ARMv7 Traditional Release' : ['configure build', 'wait-for-svn-server', 'svn', 'delete WebKitBuild directory', 'delete stale build files', 'jhbuild', 'compile-webkit', 'jscore-test'],
 'EFL Linux AArch64 Release' : ['configure build', 'wait-for-svn-server', 'svn', 'delete WebKitBuild directory', 'delete stale build files', 'jhbuild', 'compile-webkit', 'jscore-test'],


Modified: trunk/Tools/ChangeLog (197503 => 197504)

--- trunk/Tools/ChangeLog	2016-03-03 11:05:32 UTC (rev 197503)
+++ trunk/Tools/ChangeLog	2016-03-03 14:09:22 UTC (rev 197504)
@@ -1,3 +1,13 @@
+2016-03-03  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL] Remove u-szeged.hu SVN mirror in EFL perf bot
+https://bugs.webkit.org/show_bug.cgi?id=154960
+
+Reviewed by Csaba Osztrogonác.
+
+* BuildSlaveSupport/build.webkit.org-config/config.json: Remove szeged univ's svn mirror.
+* BuildSlaveSupport/build.webkit.org-config/mastercfg_unittest.py:
+
 2016-03-03  Frederic Wang  <fw...@igalia.com>
 
 [jhbuild] Remove LLVM dependency.






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [197306] trunk/Source/WebCore

2016-02-28 Thread gyuyoung . kim
Title: [197306] trunk/Source/WebCore








Revision 197306
Author gyuyoung@webkit.org
Date 2016-02-28 17:57:41 -0800 (Sun, 28 Feb 2016)


Log Message
Reduce uses of PassRefPtr in indexeddb
https://bugs.webkit.org/show_bug.cgi?id=154273

Reviewed by Darin Adler.

No new tests, no behavior changes.

* Modules/indexeddb/IDBDatabaseError.h:
(WebCore::IDBDatabaseError::create):
* Modules/indexeddb/IDBKeyData.cpp:
(WebCore::IDBKeyData::maybeCreateIDBKey):
* Modules/indexeddb/IDBKeyData.h:
* Modules/indexeddb/IDBKeyRange.cpp:
(WebCore::IDBKeyRange::create):
(WebCore::IDBKeyRange::IDBKeyRange):
(WebCore::IDBKeyRange::only):
(WebCore::IDBKeyRange::lowerBound):
(WebCore::IDBKeyRange::upperBound):
(WebCore::IDBKeyRange::bound):
* Modules/indexeddb/IDBKeyRange.h:
(WebCore::IDBKeyRange::create):
(WebCore::IDBKeyRange::lower):
(WebCore::IDBKeyRange::upper):
(WebCore::IDBKeyRange::lowerBound):
(WebCore::IDBKeyRange::upperBound):
(WebCore::IDBKeyRange::bound):
* Modules/indexeddb/IDBKeyRangeData.cpp:
(WebCore::IDBKeyRangeData::maybeCreateIDBKeyRange):
* Modules/indexeddb/IDBKeyRangeData.h:
* Modules/indexeddb/IDBServerConnection.h:
* Modules/indexeddb/legacy/IDBCallbacks.h:
* Modules/indexeddb/legacy/IDBCursorBackend.cpp:
(WebCore::IDBCursorBackend::continueFunction):
* Modules/indexeddb/legacy/IDBCursorBackend.h:
* Modules/indexeddb/legacy/IDBCursorBackendOperations.h:
(WebCore::CursorIterationOperation::create):
(WebCore::CursorIterationOperation::CursorIterationOperation):
* Modules/indexeddb/legacy/IDBTransactionBackendOperations.cpp:
(WebCore::GetOperation::perform):
(WebCore::PutOperation::perform):
* Modules/indexeddb/legacy/LegacyCursor.cpp:
(WebCore::LegacyCursor::continueFunction):
* Modules/indexeddb/legacy/LegacyCursor.h:
* Modules/indexeddb/legacy/LegacyFactory.h:
(WebCore::LegacyFactory::create):
* Modules/indexeddb/legacy/LegacyRequest.cpp:
(WebCore::LegacyRequest::onSuccess):
* Modules/indexeddb/legacy/LegacyRequest.h:
* inspector/InspectorIndexedDBAgent.cpp:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Modules/indexeddb/IDBDatabaseError.h
trunk/Source/WebCore/Modules/indexeddb/IDBKeyData.cpp
trunk/Source/WebCore/Modules/indexeddb/IDBKeyData.h
trunk/Source/WebCore/Modules/indexeddb/IDBKeyRange.cpp
trunk/Source/WebCore/Modules/indexeddb/IDBKeyRange.h
trunk/Source/WebCore/Modules/indexeddb/IDBKeyRangeData.cpp
trunk/Source/WebCore/Modules/indexeddb/IDBKeyRangeData.h
trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (197305 => 197306)

--- trunk/Source/WebCore/ChangeLog	2016-02-29 01:44:26 UTC (rev 197305)
+++ trunk/Source/WebCore/ChangeLog	2016-02-29 01:57:41 UTC (rev 197306)
@@ -1,3 +1,55 @@
+2016-02-28  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Reduce uses of PassRefPtr in indexeddb
+https://bugs.webkit.org/show_bug.cgi?id=154273
+
+Reviewed by Darin Adler.
+
+No new tests, no behavior changes.
+
+* Modules/indexeddb/IDBDatabaseError.h:
+(WebCore::IDBDatabaseError::create):
+* Modules/indexeddb/IDBKeyData.cpp:
+(WebCore::IDBKeyData::maybeCreateIDBKey):
+* Modules/indexeddb/IDBKeyData.h:
+* Modules/indexeddb/IDBKeyRange.cpp:
+(WebCore::IDBKeyRange::create):
+(WebCore::IDBKeyRange::IDBKeyRange):
+(WebCore::IDBKeyRange::only):
+(WebCore::IDBKeyRange::lowerBound):
+(WebCore::IDBKeyRange::upperBound):
+(WebCore::IDBKeyRange::bound):
+* Modules/indexeddb/IDBKeyRange.h:
+(WebCore::IDBKeyRange::create):
+(WebCore::IDBKeyRange::lower):
+(WebCore::IDBKeyRange::upper):
+(WebCore::IDBKeyRange::lowerBound):
+(WebCore::IDBKeyRange::upperBound):
+(WebCore::IDBKeyRange::bound):
+* Modules/indexeddb/IDBKeyRangeData.cpp:
+(WebCore::IDBKeyRangeData::maybeCreateIDBKeyRange):
+* Modules/indexeddb/IDBKeyRangeData.h:
+* Modules/indexeddb/IDBServerConnection.h:
+* Modules/indexeddb/legacy/IDBCallbacks.h:
+* Modules/indexeddb/legacy/IDBCursorBackend.cpp:
+(WebCore::IDBCursorBackend::continueFunction):
+* Modules/indexeddb/legacy/IDBCursorBackend.h:
+* Modules/indexeddb/legacy/IDBCursorBackendOperations.h:
+(WebCore::CursorIterationOperation::create):
+(WebCore::CursorIterationOperation::CursorIterationOperation):
+* Modules/indexeddb/legacy/IDBTransactionBackendOperations.cpp:
+(WebCore::GetOperation::perform):
+(WebCore::PutOperation::perform):
+* Modules/indexeddb/legacy/LegacyCursor.cpp:
+(WebCore::LegacyCursor::continueFunction):
+* Modules/indexeddb/legacy/LegacyCursor.h:
+* Modules/indexeddb/legacy/LegacyFactory.h:
+(WebCore::LegacyFactory::create):
+* Modules/indexeddb/legacy/LegacyRequest.cpp:
+(WebCore::LegacyRequest::onSuccess):
+* Modules/indexeddb/legacy/Legacy

[webkit-changes] [196796] trunk/Source/JavaScriptCore

2016-02-18 Thread gyuyoung . kim
Title: [196796] trunk/Source/_javascript_Core








Revision 196796
Author gyuyoung@webkit.org
Date 2016-02-18 21:12:02 -0800 (Thu, 18 Feb 2016)


Log Message
[CMake][GTK] Clean up llvm guard in PlatformGTK.cmake
https://bugs.webkit.org/show_bug.cgi?id=154430

Reviewed by Saam Barati.

llvm isn't used anymore.

* PlatformGTK.cmake: Remove USE_LLVM_DISASSEMBLER guard.

Modified Paths

trunk/Source/_javascript_Core/ChangeLog
trunk/Source/_javascript_Core/PlatformGTK.cmake




Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (196795 => 196796)

--- trunk/Source/_javascript_Core/ChangeLog	2016-02-19 04:25:12 UTC (rev 196795)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-02-19 05:12:02 UTC (rev 196796)
@@ -1,3 +1,14 @@
+2016-02-18  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[CMake][GTK] Clean up llvm guard in PlatformGTK.cmake
+https://bugs.webkit.org/show_bug.cgi?id=154430
+
+Reviewed by Saam Barati.
+
+llvm isn't used anymore.
+
+* PlatformGTK.cmake: Remove USE_LLVM_DISASSEMBLER guard.
+
 2016-02-18  Saam Barati  <sbar...@apple.com>
 
 Implement Proxy.[[HasProperty]]


Modified: trunk/Source/_javascript_Core/PlatformGTK.cmake (196795 => 196796)

--- trunk/Source/_javascript_Core/PlatformGTK.cmake	2016-02-19 04:25:12 UTC (rev 196795)
+++ trunk/Source/_javascript_Core/PlatformGTK.cmake	2016-02-19 05:12:02 UTC (rev 196796)
@@ -38,11 +38,6 @@
 )
 endif ()
 
-if (USE_LLVM_DISASSEMBLER)
-set(llvmForJSC_LIBRARIES ${LLVM_LIBRARIES})
-set(llvmForJSC_INSTALL_DIR "${LIB_INSTALL_DIR}/_javascript_coregtk-${WEBKITGTK_API_VERSION}")
-endif ()
-
 add_definitions(-DSTATICALLY_LINKED_WITH_WTF)
 add_definitions(-DLIBDIR="${LIB_INSTALL_DIR}")
 






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [196572] trunk/Source/WebKit2

2016-02-15 Thread gyuyoung . kim
Title: [196572] trunk/Source/WebKit2








Revision 196572
Author gyuyoung@webkit.org
Date 2016-02-15 00:39:58 -0800 (Mon, 15 Feb 2016)


Log Message
[CMake][Mac] Remove WKNPAPIPlugInContainer.mm in WebKit2/PlatformMac.cmake
https://bugs.webkit.org/show_bug.cgi?id=154234

Reviewed by Csaba Osztrogonác.

* PlatformMac.cmake: Remove WKNPAPIPlugInContainer.mm.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/PlatformMac.cmake




Diff

Modified: trunk/Source/WebKit2/ChangeLog (196571 => 196572)

--- trunk/Source/WebKit2/ChangeLog	2016-02-15 05:10:58 UTC (rev 196571)
+++ trunk/Source/WebKit2/ChangeLog	2016-02-15 08:39:58 UTC (rev 196572)
@@ -1,3 +1,12 @@
+2016-02-15  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[CMake][Mac] Remove WKNPAPIPlugInContainer.mm in WebKit2/PlatformMac.cmake
+https://bugs.webkit.org/show_bug.cgi?id=154234
+
+Reviewed by Csaba Osztrogonác.
+
+* PlatformMac.cmake: Remove WKNPAPIPlugInContainer.mm.
+
 2016-02-14  Chris Dumez  <cdu...@apple.com>
 
 Unreviewed, land an additional Mac CMake build fix.


Modified: trunk/Source/WebKit2/PlatformMac.cmake (196571 => 196572)

--- trunk/Source/WebKit2/PlatformMac.cmake	2016-02-15 05:10:58 UTC (rev 196571)
+++ trunk/Source/WebKit2/PlatformMac.cmake	2016-02-15 08:39:58 UTC (rev 196572)
@@ -282,7 +282,6 @@
 
 WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm
 WebProcess/Plugins/Netscape/mac/PluginProxyMac.mm
-WebProcess/Plugins/Netscape/mac/WKNPAPIPlugInContainer.mm
 
 WebProcess/Plugins/PDF/DeprecatedPDFPlugin.mm
 WebProcess/Plugins/PDF/PDFPlugin.mm






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [196046] trunk/Source/WebKit2

2016-02-02 Thread gyuyoung . kim
Title: [196046] trunk/Source/WebKit2








Revision 196046
Author gyuyoung@webkit.org
Date 2016-02-02 22:02:36 -0800 (Tue, 02 Feb 2016)


Log Message
Remove ENABLE(GLOBAL_FASTMALLOC_NEW) guard in WebMemorySamplerLinux.cpp
https://bugs.webkit.org/show_bug.cgi?id=153812

Reviewed by Darin Adler.

r164261 already removed ENABLE_GLOBAL_FASTMALLOC_NEW guard though, WebMemorySamplerLinux
is still using it. That's why EFL and GTK memory sampler don't show fast malloc memory use.

* Shared/linux/WebMemorySamplerLinux.cpp:
(WebKit::WebMemorySampler::sampleWebKit): Deleted.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (196045 => 196046)

--- trunk/Source/WebKit2/ChangeLog	2016-02-03 05:03:38 UTC (rev 196045)
+++ trunk/Source/WebKit2/ChangeLog	2016-02-03 06:02:36 UTC (rev 196046)
@@ -1,3 +1,16 @@
+2016-02-02  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Remove ENABLE(GLOBAL_FASTMALLOC_NEW) guard in WebMemorySamplerLinux.cpp
+https://bugs.webkit.org/show_bug.cgi?id=153812
+
+Reviewed by Darin Adler.
+
+r164261 already removed ENABLE_GLOBAL_FASTMALLOC_NEW guard though, WebMemorySamplerLinux
+is still using it. That's why EFL and GTK memory sampler don't show fast malloc memory use.
+
+* Shared/linux/WebMemorySamplerLinux.cpp:
+(WebKit::WebMemorySampler::sampleWebKit): Deleted.
+
 2016-02-02  Enrica Casucci  <enr...@apple.com>
 
 Provide handleKeyWebEvent with completion handler.


Modified: trunk/Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp (196045 => 196046)

--- trunk/Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp	2016-02-03 05:03:38 UTC (rev 196045)
+++ trunk/Source/WebKit2/Shared/linux/WebMemorySamplerLinux.cpp	2016-02-03 06:02:36 UTC (rev 196046)
@@ -143,7 +143,6 @@
 size_t totalBytesInUse = 0;
 size_t totalBytesCommitted = 0;
 
-#if ENABLE(GLOBAL_FASTMALLOC_NEW)
 FastMallocStatistics fastMallocStatistics = WTF::fastMallocStatistics();
 size_t fastMallocBytesInUse = fastMallocStatistics.committedVMBytes - fastMallocStatistics.freeListBytes;
 size_t fastMallocBytesCommitted = fastMallocStatistics.committedVMBytes;
@@ -152,7 +151,6 @@
 
 appendKeyValuePair(webKitMemoryStats, ASCIILiteral("Fast Malloc In Use"), fastMallocBytesInUse);
 appendKeyValuePair(webKitMemoryStats, ASCIILiteral("Fast Malloc Committed Memory"), fastMallocBytesCommitted);
-#endif
 
 size_t jscHeapBytesInUse = JSDOMWindow::commonVM().heap.size();
 size_t jscHeapBytesCommitted = JSDOMWindow::commonVM().heap.capacity();






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


[webkit-changes] [195925] trunk/Source

2016-01-31 Thread gyuyoung . kim
Title: [195925] trunk/Source








Revision 195925
Author gyuyoung@webkit.org
Date 2016-01-31 03:41:44 -0800 (Sun, 31 Jan 2016)


Log Message
Use std::make_unique<> when creating an unique_ptr object.
https://bugs.webkit.org/show_bug.cgi?id=153705

Reviewed by Darin Adler.

Source/WebCore:

Some factory functions have used std::unique_ptr<> for creating an unique_ptr object.
It is wrong. We have to use std::make_unique<>.

* Modules/mediasession/WebMediaSessionManager.cpp:
(WebCore::WebMediaSessionManager::mockPicker):
* inspector/InspectorTimelineAgent.cpp:
(WebCore::InspectorTimelineAgent::internalStart):
* platform/cf/RunLoopObserver.cpp:
(WebCore::RunLoopObserver::create): Deleted.
* platform/cf/RunLoopObserver.h:
(WebCore::RunLoopObserver::RunLoopObserver):
* platform/graphics/avfoundation/WebMediaSessionManagerMac.cpp:
(WebCore::WebMediaSessionManagerMac::platformPicker):
* platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.h:
* platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.mm:
(WebCore::MediaPlaybackTargetPickerMac::create): Deleted.
* platform/graphics/ca/cocoa/LayerFlushSchedulerMac.cpp:
(WebCore::LayerFlushScheduler::LayerFlushScheduler):
* platform/mock/MediaPlaybackTargetPickerMock.cpp:
(WebCore::MediaPlaybackTargetPickerMock::create): Deleted.
* platform/mock/MediaPlaybackTargetPickerMock.h:
* rendering/FloatingObjects.cpp:
(WebCore::FloatingObject::copyToNewContainer):

Source/WebKit2:

* UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::WebPageProxy): Use std::make_unique<> instead of RunLoopObserver::create().

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/Modules/mediasession/WebMediaSessionManager.cpp
trunk/Source/WebCore/inspector/InspectorTimelineAgent.cpp
trunk/Source/WebCore/platform/cf/RunLoopObserver.cpp
trunk/Source/WebCore/platform/cf/RunLoopObserver.h
trunk/Source/WebCore/platform/graphics/avfoundation/WebMediaSessionManagerMac.cpp
trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.h
trunk/Source/WebCore/platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.mm
trunk/Source/WebCore/platform/graphics/ca/cocoa/LayerFlushSchedulerMac.cpp
trunk/Source/WebCore/platform/mock/MediaPlaybackTargetPickerMock.cpp
trunk/Source/WebCore/platform/mock/MediaPlaybackTargetPickerMock.h
trunk/Source/WebCore/rendering/FloatingObjects.cpp
trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/UIProcess/WebPageProxy.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (195924 => 195925)

--- trunk/Source/WebCore/ChangeLog	2016-01-31 09:20:05 UTC (rev 195924)
+++ trunk/Source/WebCore/ChangeLog	2016-01-31 11:41:44 UTC (rev 195925)
@@ -1,3 +1,34 @@
+2016-01-31  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Use std::make_unique<> when creating an unique_ptr object.
+https://bugs.webkit.org/show_bug.cgi?id=153705
+
+Reviewed by Darin Adler.
+
+Some factory functions have used std::unique_ptr<> for creating an unique_ptr object.
+It is wrong. We have to use std::make_unique<>.
+
+* Modules/mediasession/WebMediaSessionManager.cpp:
+(WebCore::WebMediaSessionManager::mockPicker):
+* inspector/InspectorTimelineAgent.cpp:
+(WebCore::InspectorTimelineAgent::internalStart):
+* platform/cf/RunLoopObserver.cpp:
+(WebCore::RunLoopObserver::create): Deleted.
+* platform/cf/RunLoopObserver.h:
+(WebCore::RunLoopObserver::RunLoopObserver):
+* platform/graphics/avfoundation/WebMediaSessionManagerMac.cpp:
+(WebCore::WebMediaSessionManagerMac::platformPicker):
+* platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.h:
+* platform/graphics/avfoundation/objc/MediaPlaybackTargetPickerMac.mm:
+(WebCore::MediaPlaybackTargetPickerMac::create): Deleted.
+* platform/graphics/ca/cocoa/LayerFlushSchedulerMac.cpp:
+(WebCore::LayerFlushScheduler::LayerFlushScheduler):
+* platform/mock/MediaPlaybackTargetPickerMock.cpp:
+(WebCore::MediaPlaybackTargetPickerMock::create): Deleted.
+* platform/mock/MediaPlaybackTargetPickerMock.h:
+* rendering/FloatingObjects.cpp:
+(WebCore::FloatingObject::copyToNewContainer):
+
 2016-01-30  Michael Catanzaro  <mcatanz...@igalia.com>
 
 Unreviewed, fix GTK debug build after r195899


Modified: trunk/Source/WebCore/Modules/mediasession/WebMediaSessionManager.cpp (195924 => 195925)

--- trunk/Source/WebCore/Modules/mediasession/WebMediaSessionManager.cpp	2016-01-31 09:20:05 UTC (rev 195924)
+++ trunk/Source/WebCore/Modules/mediasession/WebMediaSessionManager.cpp	2016-01-31 11:41:44 UTC (rev 195925)
@@ -113,7 +113,7 @@
 MediaPlaybackTargetPickerMock& WebMediaSessionManager::mockPicker()
 {
 if (!m_pickerOverride)
-m_pickerOverride = MediaPlaybackTargetPickerMock::create(*this);
+m_pickerOverrid

[webkit-changes] [195927] trunk/Source

2016-01-31 Thread gyuyoung . kim
Title: [195927] trunk/Source








Revision 195927
Author gyuyoung@webkit.org
Date 2016-01-31 04:08:32 -0800 (Sun, 31 Jan 2016)


Log Message
Reduce PassRefPtr uses in dom - 5
https://bugs.webkit.org/show_bug.cgi?id=153470

Reviewed by Darin Adler.

As a step to remove PassRefPtr, this patch reduces uses of PassRefPtr in WebCore/dom.

* dom/Document.cpp:
(WebCore::Document::adoptNode):
(WebCore::Document::implicitClose):
(WebCore::Document::enqueuePopstateEvent):
(WebCore::Document::setInputCursor):
* dom/Document.h:
* dom/DocumentMarker.cpp:
(WebCore::DocumentMarkerTextMatch::instanceFor):
* dom/Event.cpp:
(WebCore::Event::setUnderlyingEvent):
* dom/Event.h:
* dom/EventDispatcher.h:
* dom/GenericEventQueue.cpp:
(WebCore::GenericEventQueue::enqueueEvent):
* dom/GenericEventQueue.h:
* dom/MouseEvent.cpp:
(WebCore::SimulatedMouseEvent::SimulatedMouseEvent):
* dom/Node.cpp:
(WebCore::Node::dispatchDOMActivateEvent):
* dom/NodeIterator.h:
* dom/PendingScript.h:
* dom/PopStateEvent.cpp:
(WebCore::PopStateEvent::create):
* dom/PopStateEvent.h:
* dom/ProcessingInstruction.cpp:
(WebCore::ProcessingInstruction::setCSSStyleSheet): Deleted. Nobody calls this function.
* dom/ProcessingInstruction.h:
* dom/RangeBoundaryPoint.h:
(WebCore::RangeBoundaryPoint::RangeBoundaryPoint):
* dom/TextEvent.cpp:
(WebCore::TextEvent::createForFragmentPaste):
(WebCore::TextEvent::TextEvent):
* dom/TextEvent.h:
* editing/Editor.cpp:
(WebCore::Editor::pasteAsFragment):
* editing/Editor.h:
* editing/mac/EditorMac.mm:
(WebCore::Editor::replaceNodeFromPasteboard):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/dom/Document.cpp
trunk/Source/WebCore/dom/Document.h
trunk/Source/WebCore/dom/DocumentMarker.cpp
trunk/Source/WebCore/dom/Event.cpp
trunk/Source/WebCore/dom/Event.h
trunk/Source/WebCore/dom/EventDispatcher.h
trunk/Source/WebCore/dom/GenericEventQueue.cpp
trunk/Source/WebCore/dom/GenericEventQueue.h
trunk/Source/WebCore/dom/MouseEvent.cpp
trunk/Source/WebCore/dom/Node.cpp
trunk/Source/WebCore/dom/NodeIterator.h
trunk/Source/WebCore/dom/PendingScript.h
trunk/Source/WebCore/dom/PopStateEvent.cpp
trunk/Source/WebCore/dom/PopStateEvent.h
trunk/Source/WebCore/dom/ProcessingInstruction.cpp
trunk/Source/WebCore/dom/ProcessingInstruction.h
trunk/Source/WebCore/dom/RangeBoundaryPoint.h
trunk/Source/WebCore/dom/TextEvent.cpp
trunk/Source/WebCore/dom/TextEvent.h
trunk/Source/WebCore/editing/Editor.cpp
trunk/Source/WebCore/editing/Editor.h
trunk/Source/WebCore/editing/gtk/EditorGtk.cpp
trunk/Source/WebCore/editing/ios/EditorIOS.mm
trunk/Source/WebCore/editing/mac/EditorMac.mm
trunk/Source/WebCore/editing/win/EditorWin.cpp
trunk/Source/WebKit/mac/WebView/WebHTMLView.mm




Diff

Modified: trunk/Source/WebCore/ChangeLog (195926 => 195927)

--- trunk/Source/WebCore/ChangeLog	2016-01-31 11:41:52 UTC (rev 195926)
+++ trunk/Source/WebCore/ChangeLog	2016-01-31 12:08:32 UTC (rev 195927)
@@ -1,5 +1,53 @@
 2016-01-31  Gyuyoung Kim  <gyuyoung@webkit.org>
 
+Reduce PassRefPtr uses in dom - 5
+https://bugs.webkit.org/show_bug.cgi?id=153470
+
+Reviewed by Darin Adler.
+
+As a step to remove PassRefPtr, this patch reduces uses of PassRefPtr in WebCore/dom. 
+
+* dom/Document.cpp:
+(WebCore::Document::adoptNode):
+(WebCore::Document::implicitClose):
+(WebCore::Document::enqueuePopstateEvent):
+(WebCore::Document::setInputCursor):
+* dom/Document.h:
+* dom/DocumentMarker.cpp:
+(WebCore::DocumentMarkerTextMatch::instanceFor):
+* dom/Event.cpp:
+(WebCore::Event::setUnderlyingEvent):
+* dom/Event.h:
+* dom/EventDispatcher.h:
+* dom/GenericEventQueue.cpp:
+(WebCore::GenericEventQueue::enqueueEvent):
+* dom/GenericEventQueue.h:
+* dom/MouseEvent.cpp:
+(WebCore::SimulatedMouseEvent::SimulatedMouseEvent):
+* dom/Node.cpp:
+(WebCore::Node::dispatchDOMActivateEvent):
+* dom/NodeIterator.h:
+* dom/PendingScript.h:
+* dom/PopStateEvent.cpp:
+(WebCore::PopStateEvent::create):
+* dom/PopStateEvent.h:
+* dom/ProcessingInstruction.cpp:
+(WebCore::ProcessingInstruction::setCSSStyleSheet): Deleted. Nobody calls this function.
+* dom/ProcessingInstruction.h:
+* dom/RangeBoundaryPoint.h:
+(WebCore::RangeBoundaryPoint::RangeBoundaryPoint):
+* dom/TextEvent.cpp:
+(WebCore::TextEvent::createForFragmentPaste):
+(WebCore::TextEvent::TextEvent):
+* dom/TextEvent.h:
+* editing/Editor.cpp:
+(WebCore::Editor::pasteAsFragment):
+* editing/Editor.h:
+* editing/mac/EditorMac.mm:
+(WebCore::Editor::replaceNodeFromPasteboard):
+
+2016-01-31  Gyuyoung Kim  <gyuyoung@webkit.org>
+
 Use std::make_unique<> when creating an unique_ptr object.
 https://bugs.webkit.org/show_bug.cgi?id=153705
 


M

[webkit-changes] [195524] trunk/Source

2016-01-24 Thread gyuyoung . kim
Title: [195524] trunk/Source








Revision 195524
Author gyuyoung@webkit.org
Date 2016-01-24 22:13:09 -0800 (Sun, 24 Jan 2016)


Log Message
Reduce PassRefPtr uses in dom - 4
https://bugs.webkit.org/show_bug.cgi?id=153270

Reviewed by Darin Adler.

As a step to remove PassRefPtr uses, this patch reduces the uses in WebCore/dom.

Source/WebCore:

* bindings/js/JSDeviceMotionEventCustom.cpp:
(WebCore::JSDeviceMotionEvent::initDeviceMotionEvent):
* dom/DeviceMotionData.cpp:
(WebCore::DeviceMotionData::create):
(WebCore::DeviceMotionData::DeviceMotionData):
* dom/DeviceMotionData.h:
* dom/Document.cpp:
(WebCore::Document::setBodyOrFrameset):
(WebCore::Document::setFocusedElement):
(WebCore::Document::setDecoder):
(WebCore::Document::pushCurrentScript):
* dom/Document.h:
* dom/Event.cpp:
(WebCore::Event::cloneFor):
* dom/Event.h:
* dom/MouseEvent.cpp:
(WebCore::MouseEvent::cloneFor):
* dom/MouseEvent.h:
* dom/NodeIterator.cpp:
(WebCore::NodeIterator::NodePointer::NodePointer):
(WebCore::NodeIterator::NodeIterator):
* dom/NodeIterator.h:
(WebCore::NodeIterator::create):
* html/RadioInputType.cpp:
(WebCore::RadioInputType::handleKeydownEvent):
* platform/ios/DeviceMotionClientIOS.mm:
(WebCore::DeviceMotionClientIOS::motionChanged):
* xml/XSLTProcessor.cpp:
(WebCore::XSLTProcessor::createDocumentFromSource):

Source/WebKit/win:

* Plugins/PluginView.cpp:
(WebCore::PluginView::focusPluginElement):

Source/WebKit2:

* WebProcess/Plugins/PluginView.cpp:
(WebKit::PluginView::focusPluginElement):

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp
trunk/Source/WebCore/dom/DeviceMotionData.cpp
trunk/Source/WebCore/dom/DeviceMotionData.h
trunk/Source/WebCore/dom/Document.cpp
trunk/Source/WebCore/dom/Document.h
trunk/Source/WebCore/dom/Event.cpp
trunk/Source/WebCore/dom/Event.h
trunk/Source/WebCore/dom/MouseEvent.cpp
trunk/Source/WebCore/dom/MouseEvent.h
trunk/Source/WebCore/dom/NodeIterator.cpp
trunk/Source/WebCore/dom/NodeIterator.h
trunk/Source/WebCore/html/RadioInputType.cpp
trunk/Source/WebCore/platform/ios/DeviceMotionClientIOS.mm
trunk/Source/WebCore/xml/XSLTProcessor.cpp
trunk/Source/WebKit/win/ChangeLog
trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/WebProcess/Plugins/PluginView.cpp




Diff

Modified: trunk/Source/WebCore/ChangeLog (195523 => 195524)

--- trunk/Source/WebCore/ChangeLog	2016-01-25 05:23:49 UTC (rev 195523)
+++ trunk/Source/WebCore/ChangeLog	2016-01-25 06:13:09 UTC (rev 195524)
@@ -1,3 +1,42 @@
+2016-01-24  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Reduce PassRefPtr uses in dom - 4
+https://bugs.webkit.org/show_bug.cgi?id=153270
+
+Reviewed by Darin Adler.
+
+As a step to remove PassRefPtr uses, this patch reduces the uses in WebCore/dom.
+
+* bindings/js/JSDeviceMotionEventCustom.cpp:
+(WebCore::JSDeviceMotionEvent::initDeviceMotionEvent):
+* dom/DeviceMotionData.cpp:
+(WebCore::DeviceMotionData::create):
+(WebCore::DeviceMotionData::DeviceMotionData):
+* dom/DeviceMotionData.h:
+* dom/Document.cpp:
+(WebCore::Document::setBodyOrFrameset):
+(WebCore::Document::setFocusedElement):
+(WebCore::Document::setDecoder):
+(WebCore::Document::pushCurrentScript):
+* dom/Document.h:
+* dom/Event.cpp:
+(WebCore::Event::cloneFor):
+* dom/Event.h:
+* dom/MouseEvent.cpp:
+(WebCore::MouseEvent::cloneFor):
+* dom/MouseEvent.h:
+* dom/NodeIterator.cpp:
+(WebCore::NodeIterator::NodePointer::NodePointer):
+(WebCore::NodeIterator::NodeIterator):
+* dom/NodeIterator.h:
+(WebCore::NodeIterator::create):
+* html/RadioInputType.cpp:
+(WebCore::RadioInputType::handleKeydownEvent):
+* platform/ios/DeviceMotionClientIOS.mm:
+(WebCore::DeviceMotionClientIOS::motionChanged):
+* xml/XSLTProcessor.cpp:
+(WebCore::XSLTProcessor::createDocumentFromSource):
+
 2016-01-24  Myles C. Maxfield  <mmaxfi...@apple.com>
 
 [Font Loading] General cleanup


Modified: trunk/Source/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp (195523 => 195524)

--- trunk/Source/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp	2016-01-25 05:23:49 UTC (rev 195523)
+++ trunk/Source/WebCore/bindings/js/JSDeviceMotionEventCustom.cpp	2016-01-25 06:13:09 UTC (rev 195524)
@@ -188,8 +188,8 @@
 
 bool intervalProvided = !state.argument(6).isUndefinedOrNull();
 double interval = state.argument(6).toNumber();
-RefPtr deviceMotionData = DeviceMotionData::create(acceleration, accelerationIncludingGravity, rotationRate, intervalProvided, interval);
-wrapped().initDeviceMotionEvent(type, bubbles, cancelable, deviceMotionData.get());
+auto deviceMotionData = DeviceMotionData::create(WTFMove(acceleration), WTFMove(accelerationIncludingGravity), WTFMove(rotationRate), intervalProvided, inter

[webkit-changes] [195243] trunk/Source/WebCore

2016-01-18 Thread gyuyoung . kim
Title: [195243] trunk/Source/WebCore








Revision 195243
Author gyuyoung@webkit.org
Date 2016-01-18 18:56:34 -0800 (Mon, 18 Jan 2016)


Log Message
Reduce PassRefPtr uses in dom - 3
https://bugs.webkit.org/show_bug.cgi?id=153055

Reviewed by Darin Adler.

Third patch to reduce uses of PassRefPtr in WebCore/dom.

* dom/MutationObserverInterestGroup.cpp:
(WebCore::MutationObserverInterestGroup::enqueueMutationRecord):
* dom/MutationRecord.cpp:
(WebCore::MutationRecord::createChildList):
(WebCore::MutationRecord::createAttributes):
(WebCore::MutationRecord::createCharacterData):
(WebCore::MutationRecord::createWithNullOldValue):
* dom/MutationRecord.h:
* dom/NamedFlowCollection.cpp:
(WebCore::NamedFlowCollection::createCSSOMSnapshot):
* dom/NamedFlowCollection.h:
* dom/PendingScript.cpp:
(WebCore::PendingScript::releaseElementAndClear):
* dom/PendingScript.h:
* dom/ScriptRunner.h:
* dom/SecurityContext.h:
* dom/ShadowRoot.cpp:
(WebCore::ShadowRoot::cloneNode):
* dom/ShadowRoot.h:
* dom/SpaceSplitString.cpp:
(WebCore::SpaceSplitStringData::create):
* dom/SpaceSplitString.h:
* dom/TreeWalker.cpp:
(WebCore::TreeWalker::setCurrent):
(WebCore::TreeWalker::parentNode):
(WebCore::TreeWalker::previousNode):
(WebCore::TreeWalker::nextNode):
* dom/TreeWalker.h:
* dom/default/PlatformMessagePortChannel.cpp:
(WebCore::PlatformMessagePortChannel::entangledChannel):
* dom/default/PlatformMessagePortChannel.h:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/dom/MutationObserverInterestGroup.cpp
trunk/Source/WebCore/dom/MutationRecord.cpp
trunk/Source/WebCore/dom/MutationRecord.h
trunk/Source/WebCore/dom/NamedFlowCollection.cpp
trunk/Source/WebCore/dom/NamedFlowCollection.h
trunk/Source/WebCore/dom/PendingScript.cpp
trunk/Source/WebCore/dom/PendingScript.h
trunk/Source/WebCore/dom/ScriptRunner.h
trunk/Source/WebCore/dom/SecurityContext.h
trunk/Source/WebCore/dom/ShadowRoot.cpp
trunk/Source/WebCore/dom/ShadowRoot.h
trunk/Source/WebCore/dom/SpaceSplitString.cpp
trunk/Source/WebCore/dom/SpaceSplitString.h
trunk/Source/WebCore/dom/TreeWalker.cpp
trunk/Source/WebCore/dom/TreeWalker.h
trunk/Source/WebCore/dom/default/PlatformMessagePortChannel.cpp
trunk/Source/WebCore/dom/default/PlatformMessagePortChannel.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (195242 => 195243)

--- trunk/Source/WebCore/ChangeLog	2016-01-19 01:23:08 UTC (rev 195242)
+++ trunk/Source/WebCore/ChangeLog	2016-01-19 02:56:34 UTC (rev 195243)
@@ -1,3 +1,44 @@
+2016-01-18  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+Reduce PassRefPtr uses in dom - 3
+https://bugs.webkit.org/show_bug.cgi?id=153055
+
+Reviewed by Darin Adler.
+
+Third patch to reduce uses of PassRefPtr in WebCore/dom.
+
+* dom/MutationObserverInterestGroup.cpp:
+(WebCore::MutationObserverInterestGroup::enqueueMutationRecord):
+* dom/MutationRecord.cpp:
+(WebCore::MutationRecord::createChildList):
+(WebCore::MutationRecord::createAttributes):
+(WebCore::MutationRecord::createCharacterData):
+(WebCore::MutationRecord::createWithNullOldValue):
+* dom/MutationRecord.h:
+* dom/NamedFlowCollection.cpp:
+(WebCore::NamedFlowCollection::createCSSOMSnapshot):
+* dom/NamedFlowCollection.h:
+* dom/PendingScript.cpp:
+(WebCore::PendingScript::releaseElementAndClear):
+* dom/PendingScript.h:
+* dom/ScriptRunner.h:
+* dom/SecurityContext.h:
+* dom/ShadowRoot.cpp:
+(WebCore::ShadowRoot::cloneNode):
+* dom/ShadowRoot.h:
+* dom/SpaceSplitString.cpp:
+(WebCore::SpaceSplitStringData::create):
+* dom/SpaceSplitString.h:
+* dom/TreeWalker.cpp:
+(WebCore::TreeWalker::setCurrent):
+(WebCore::TreeWalker::parentNode):
+(WebCore::TreeWalker::previousNode):
+(WebCore::TreeWalker::nextNode):
+* dom/TreeWalker.h:
+* dom/default/PlatformMessagePortChannel.cpp:
+(WebCore::PlatformMessagePortChannel::entangledChannel):
+* dom/default/PlatformMessagePortChannel.h:
+
 2016-01-18  Nan Wang  <n_w...@apple.com>
 
 AX: [Mac] Implement next/previous text marker functions using TextIterator


Modified: trunk/Source/WebCore/dom/MutationObserverInterestGroup.cpp (195242 => 195243)

--- trunk/Source/WebCore/dom/MutationObserverInterestGroup.cpp	2016-01-19 01:23:08 UTC (rev 195242)
+++ trunk/Source/WebCore/dom/MutationObserverInterestGroup.cpp	2016-01-19 02:56:34 UTC (rev 195243)
@@ -78,7 +78,7 @@
 if (mutation->oldValue().isNull())
 mutationWithNullOldValue = mutation;
 else
-mutationWithNullOldValue = MutationRecord::createWithNullOldValue(mutation).get();
+mutationWithNullOldValue = MutationRecord::createWithNullOldValue(*mutation).ptr();
 }
 observer->enqueueMutationRecord(mutationWithNullOldValue);
 }

[webkit-changes] [195056] trunk/Source/WebKit2

2016-01-14 Thread gyuyoung . kim
Title: [195056] trunk/Source/WebKit2








Revision 195056
Author gyuyoung@webkit.org
Date 2016-01-14 06:42:22 -0800 (Thu, 14 Jan 2016)


Log Message
[EFL][GTK][SeccompFilter] Fix build break when enabling --seccomp-filters
https://bugs.webkit.org/show_bug.cgi?id=153094

Reviewed by Csaba Osztrogonác.

diskCacheDirectory and cookiePersistentStoragePath were removed by r192796.
But SyscallPolicy::addDefaultWebProcessPolicy has added directory permission
to the removed paths.

It looks two paths needs to be handled by network process.

* Shared/linux/SeccompFilters/SyscallPolicy.cpp:
(WebKit::SyscallPolicy::addDefaultWebProcessPolicy): Deleted.

Modified Paths

trunk/Source/WebKit2/ChangeLog
trunk/Source/WebKit2/Shared/linux/SeccompFilters/SyscallPolicy.cpp




Diff

Modified: trunk/Source/WebKit2/ChangeLog (195055 => 195056)

--- trunk/Source/WebKit2/ChangeLog	2016-01-14 14:22:55 UTC (rev 195055)
+++ trunk/Source/WebKit2/ChangeLog	2016-01-14 14:42:22 UTC (rev 195056)
@@ -1,3 +1,19 @@
+2016-01-14  Gyuyoung Kim  <gyuyoung@webkit.org>
+
+[EFL][GTK][SeccompFilter] Fix build break when enabling --seccomp-filters
+https://bugs.webkit.org/show_bug.cgi?id=153094
+
+Reviewed by Csaba Osztrogonác.
+
+diskCacheDirectory and cookiePersistentStoragePath were removed by r192796.
+But SyscallPolicy::addDefaultWebProcessPolicy has added directory permission
+to the removed paths.
+
+It looks two paths needs to be handled by network process.
+
+* Shared/linux/SeccompFilters/SyscallPolicy.cpp:
+(WebKit::SyscallPolicy::addDefaultWebProcessPolicy): Deleted.
+
 2016-01-13  Alex Christensen  <achristen...@webkit.org>
 
 Implement custom protocols when using NetworkSession


Modified: trunk/Source/WebKit2/Shared/linux/SeccompFilters/SyscallPolicy.cpp (195055 => 195056)

--- trunk/Source/WebKit2/Shared/linux/SeccompFilters/SyscallPolicy.cpp	2016-01-14 14:22:55 UTC (rev 195055)
+++ trunk/Source/WebKit2/Shared/linux/SeccompFilters/SyscallPolicy.cpp	2016-01-14 14:42:22 UTC (rev 195056)
@@ -139,14 +139,8 @@
 addDirectoryPermission(removeTrailingSlash(parameters.applicationCacheDirectory), ReadAndWrite);
 if (!parameters.webSQLDatabaseDirectory.isEmpty())
 addDirectoryPermission(removeTrailingSlash(parameters.webSQLDatabaseDirectory), ReadAndWrite);
-if (!parameters.diskCacheDirectory.isEmpty())
-addDirectoryPermission(removeTrailingSlash(parameters.diskCacheDirectory), ReadAndWrite);
 if (!parameters.cookieStorageDirectory.isEmpty())
 addDirectoryPermission(removeTrailingSlash(parameters.cookieStorageDirectory), ReadAndWrite);
-#if USE(SOUP)
-if (!parameters.cookiePersistentStoragePath.isEmpty())
-addDirectoryPermission(removeTrailingSlash(parameters.cookiePersistentStoragePath), ReadAndWrite);
-#endif
 
 // The root policy will block access to any directory or
 // file unless white listed bellow or by platform.






___
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes


  1   2   3   >