Title: [188120] trunk
Revision
188120
Author
[email protected]
Date
2015-08-07 01:32:21 -0700 (Fri, 07 Aug 2015)

Log Message

AX: Bug 147737 is causing test failures in Mavericks WK1
https://bugs.webkit.org/show_bug.cgi?id=147763

Source/WebCore:

Restrict change made in 147737 to ElCapitan+ because it is causing tests
to fail in Mavericks.

Patch by Doug Russell <[email protected]> on 2015-08-07
Reviewed by Chris Fleizach.

Fixes failing tests.

* accessibility/AXObjectCache.cpp:
(WebCore::AXObjectCache::setEnhancedUserInterfaceAccessibility):

LayoutTests:

Patch by Doug Russell <[email protected]> on 2015-08-07
Reviewed by Chris Fleizach.

* platform/mac/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (188119 => 188120)


--- trunk/LayoutTests/ChangeLog	2015-08-07 08:15:13 UTC (rev 188119)
+++ trunk/LayoutTests/ChangeLog	2015-08-07 08:32:21 UTC (rev 188120)
@@ -1,3 +1,12 @@
+2015-08-07  Doug Russell  <[email protected]>
+
+        AX: Bug 147737 is causing test failures in Mavericks WK1
+        https://bugs.webkit.org/show_bug.cgi?id=147763
+
+        Reviewed by Chris Fleizach.
+
+        * platform/mac/TestExpectations:
+
 2015-08-06  Yusuke Suzuki  <[email protected]>
 
         Introduce get_by_id like IC into get_by_val when the given name is String or Symbol

Modified: trunk/LayoutTests/platform/mac/TestExpectations (188119 => 188120)


--- trunk/LayoutTests/platform/mac/TestExpectations	2015-08-07 08:15:13 UTC (rev 188119)
+++ trunk/LayoutTests/platform/mac/TestExpectations	2015-08-07 08:32:21 UTC (rev 188120)
@@ -1306,3 +1306,6 @@
 
 # WK1-only timeout.
 webkit.org/b/147683 platform/mac/fast/scrolling/scroll-div-with-nested-nonscrollable-iframe.html [ Skip ]
+
+webkit.org/b/147763 [ Mavericks ] accessibility/mac/loaded-notification.html [ Skip ]
+webkit.org/b/147763 [ Yosemite ] accessibility/mac/loaded-notification.html [ Skip ]

Modified: trunk/Source/WebCore/ChangeLog (188119 => 188120)


--- trunk/Source/WebCore/ChangeLog	2015-08-07 08:15:13 UTC (rev 188119)
+++ trunk/Source/WebCore/ChangeLog	2015-08-07 08:32:21 UTC (rev 188120)
@@ -1,3 +1,18 @@
+2015-08-07  Doug Russell  <[email protected]>
+
+        AX: Bug 147737 is causing test failures in Mavericks WK1
+        https://bugs.webkit.org/show_bug.cgi?id=147763
+
+        Restrict change made in 147737 to ElCapitan+ because it is causing tests
+        to fail in Mavericks.
+
+        Reviewed by Chris Fleizach.
+
+        Fixes failing tests.
+
+        * accessibility/AXObjectCache.cpp:
+        (WebCore::AXObjectCache::setEnhancedUserInterfaceAccessibility):
+
 2015-08-07  Xabier Rodriguez Calvar  <[email protected]>
 
         Create [CustomBinding] extended IDL attribute

Modified: trunk/Source/WebCore/accessibility/AXObjectCache.cpp (188119 => 188120)


--- trunk/Source/WebCore/accessibility/AXObjectCache.cpp	2015-08-07 08:15:13 UTC (rev 188119)
+++ trunk/Source/WebCore/accessibility/AXObjectCache.cpp	2015-08-07 08:32:21 UTC (rev 188120)
@@ -129,8 +129,12 @@
 void AXObjectCache::setEnhancedUserInterfaceAccessibility(bool flag)
 {
     gAccessibilityEnhancedUserInterfaceEnabled = flag;
+#if PLATFORM(MAC)
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 101100
     if (flag)
         enableAccessibility();
+#endif
+#endif
 }
 
 AXObjectCache::AXObjectCache(Document& document)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to