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

2016-03-27 Thread commit-queue
Title: [198729] trunk/Source/WebCore








Revision 198729
Author commit-qu...@webkit.org
Date 2016-03-27 23:47:34 -0700 (Sun, 27 Mar 2016)


Log Message
Removed redundant #if conditions in ANGLEWebKitBridge.h
https://bugs.webkit.org/show_bug.cgi?id=155880

Patch by Konstantin Tokarev  on 2016-03-27
Reviewed by Csaba Osztrogonác.

GTK, Efl, AppleWin, and WinCairo ports can be built only with cmake,
so condition !defined(BUILDING_WITH_CMAKE) implies
!PLATFORM(GTK) && !PLATFORM(EFL) && !PLATOFRM(WIN).

No new tests needed.

* platform/graphics/ANGLEWebKitBridge.h:

Modified Paths

trunk/Source/WebCore/ChangeLog
trunk/Source/WebCore/platform/graphics/ANGLEWebKitBridge.h




Diff

Modified: trunk/Source/WebCore/ChangeLog (198728 => 198729)

--- trunk/Source/WebCore/ChangeLog	2016-03-28 05:59:51 UTC (rev 198728)
+++ trunk/Source/WebCore/ChangeLog	2016-03-28 06:47:34 UTC (rev 198729)
@@ -1,3 +1,18 @@
+2016-03-27  Konstantin Tokarev  
+
+Removed redundant #if conditions in ANGLEWebKitBridge.h
+https://bugs.webkit.org/show_bug.cgi?id=155880
+
+Reviewed by Csaba Osztrogonác.
+
+GTK, Efl, AppleWin, and WinCairo ports can be built only with cmake,
+so condition !defined(BUILDING_WITH_CMAKE) implies
+!PLATFORM(GTK) && !PLATFORM(EFL) && !PLATOFRM(WIN).
+
+No new tests needed.
+
+* platform/graphics/ANGLEWebKitBridge.h:
+
 2016-03-26  Alex Christensen  
 
 Mac CMake build fix.


Modified: trunk/Source/WebCore/platform/graphics/ANGLEWebKitBridge.h (198728 => 198729)

--- trunk/Source/WebCore/platform/graphics/ANGLEWebKitBridge.h	2016-03-28 05:59:51 UTC (rev 198728)
+++ trunk/Source/WebCore/platform/graphics/ANGLEWebKitBridge.h	2016-03-28 06:47:34 UTC (rev 198729)
@@ -26,6 +26,7 @@
 #ifndef ANGLEWebKitBridge_h
 #define ANGLEWebKitBridge_h
 
+#include 
 #include 
 #include 
 
@@ -43,14 +44,6 @@
 #endif
 #endif
 
-#if !PLATFORM(GTK) && !PLATFORM(EFL) && !PLATFORM(WIN) && !defined(BUILDING_WITH_CMAKE)
-#include "ANGLE/ShaderLang.h"
-#elif PLATFORM(WIN) && !defined(BUILDING_WITH_CMAKE)
-#include "GLSLANG/ShaderLang.h"
-#else
-#include 
-#endif
-
 namespace WebCore {
 
 enum ANGLEShaderType {






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


[webkit-changes] [198727] trunk

2016-03-27 Thread dbates
Title: [198727] trunk








Revision 198727
Author dba...@webkit.org
Date 2016-03-27 22:07:10 -0700 (Sun, 27 Mar 2016)


Log Message
WebKit.xcworkspace "All Source" scheme always copies OS X WebKitSystemInterface libraries
https://bugs.webkit.org/show_bug.cgi?id=155889

Reviewed by Alexey Proskuryakov.

Fixes an issue where building the "All Source" scheme in WebKit.xcworkspace would
always copy the OS X WebKitSystemInterface libraries regardless of the selected
base SDK. In particular, it would copy the OS X WebKitSystemInterface libraries
when building with SDK iphonesimulator. WebKit.xcworkspace should copy the SDK-
specific WebKitSystemInterface libraries.

* WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:

Modified Paths

trunk/ChangeLog
trunk/WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme




Diff

Modified: trunk/ChangeLog (198726 => 198727)

--- trunk/ChangeLog	2016-03-28 02:31:44 UTC (rev 198726)
+++ trunk/ChangeLog	2016-03-28 05:07:10 UTC (rev 198727)
@@ -1,3 +1,18 @@
+2016-03-27  Daniel Bates  
+
+WebKit.xcworkspace "All Source" scheme always copies OS X WebKitSystemInterface libraries
+https://bugs.webkit.org/show_bug.cgi?id=155889
+
+Reviewed by Alexey Proskuryakov.
+
+Fixes an issue where building the "All Source" scheme in WebKit.xcworkspace would
+always copy the OS X WebKitSystemInterface libraries regardless of the selected
+base SDK. In particular, it would copy the OS X WebKitSystemInterface libraries
+when building with SDK iphonesimulator. WebKit.xcworkspace should copy the SDK-
+specific WebKitSystemInterface libraries.
+
+* WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme:
+
 2016-03-25  Brady Eidson  
 
 Soften push/replaceState frequency restrictions.


Modified: trunk/WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme (198726 => 198727)

--- trunk/WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme	2016-03-28 02:31:44 UTC (rev 198726)
+++ trunk/WebKit.xcworkspace/xcshareddata/xcschemes/All Source.xcscheme	2016-03-28 05:07:10 UTC (rev 198727)
@@ -9,7 +9,7 @@
 ActionType = "Xcode.IDEStandardExecutionActionsCore.ExecutionActionType.ShellScriptAction">
 title = "Run Script"
-   scriptText = ""$SRCROOT/../../Tools/Scripts/copy-webkitlibraries-to-product-directory" --wksi">
+   scriptText = ""$SRCROOT/../../Tools/Scripts/copy-webkitlibraries-to-product-directory" --wksi --sdk "$SDKROOT"">

 BuildableIdentifier = "primary"






___
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  
 
+[EFL][AX] Mark AX failing tests to failure
+
+Unreveiwed EFL gardening.
+
+* platform/efl/TestExpectations:
+
+2016-03-27  Gyuyoung Kim  
+
 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  
+
+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  
 
 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