Title: [213694] trunk/Tools
Revision
213694
Author
[email protected]
Date
2017-03-09 17:08:25 -0800 (Thu, 09 Mar 2017)

Log Message

Attempt to fix the WebKit2 test bots following <https://trac.webkit.org/changeset/213676>
(https://bugs.webkit.org/show_bug.cgi?id=169364)

Create new WebView with Credential Management enabled when the enableCredentialManagement
WebKitTestRunner option is specified.

* WebKitTestRunner/ios/PlatformWebViewIOS.mm:
(WTR::PlatformWebView::viewSupportsOptions):
* WebKitTestRunner/mac/PlatformWebViewMac.mm:
(WTR::PlatformWebView::viewSupportsOptions):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (213693 => 213694)


--- trunk/Tools/ChangeLog	2017-03-10 00:59:51 UTC (rev 213693)
+++ trunk/Tools/ChangeLog	2017-03-10 01:08:25 UTC (rev 213694)
@@ -1,3 +1,16 @@
+2017-03-09  Daniel Bates  <[email protected]>
+
+        Attempt to fix the WebKit2 test bots following <https://trac.webkit.org/changeset/213676>
+        (https://bugs.webkit.org/show_bug.cgi?id=169364)
+
+        Create new WebView with Credential Management enabled when the enableCredentialManagement
+        WebKitTestRunner option is specified.
+
+        * WebKitTestRunner/ios/PlatformWebViewIOS.mm:
+        (WTR::PlatformWebView::viewSupportsOptions):
+        * WebKitTestRunner/mac/PlatformWebViewMac.mm:
+        (WTR::PlatformWebView::viewSupportsOptions):
+
 2017-03-09  John Wilander  <[email protected]>
 
         Resource Load Statistics: Remove statistics data as part of full website data removal

Modified: trunk/Tools/WebKitTestRunner/ios/PlatformWebViewIOS.mm (213693 => 213694)


--- trunk/Tools/WebKitTestRunner/ios/PlatformWebViewIOS.mm	2017-03-10 00:59:51 UTC (rev 213693)
+++ trunk/Tools/WebKitTestRunner/ios/PlatformWebViewIOS.mm	2017-03-10 01:08:25 UTC (rev 213694)
@@ -298,7 +298,8 @@
         || m_options.useCharacterSelectionGranularity != options.useCharacterSelectionGranularity
         || m_options.enableIntersectionObserver != options.enableIntersectionObserver
         || m_options.enableModernMediaControls != options.enableModernMediaControls
-        || m_options.enablePointerLock != options.enablePointerLock)
+        || m_options.enablePointerLock != options.enablePointerLock
+        || m_options.enableCredentialManagement != options.enableCredentialManagement)
         return false;
 
     return true;

Modified: trunk/Tools/WebKitTestRunner/mac/PlatformWebViewMac.mm (213693 => 213694)


--- trunk/Tools/WebKitTestRunner/mac/PlatformWebViewMac.mm	2017-03-10 00:59:51 UTC (rev 213693)
+++ trunk/Tools/WebKitTestRunner/mac/PlatformWebViewMac.mm	2017-03-10 01:08:25 UTC (rev 213694)
@@ -293,7 +293,8 @@
         || m_options.needsSiteSpecificQuirks != options.needsSiteSpecificQuirks
         || m_options.enableIntersectionObserver != options.enableIntersectionObserver
         || m_options.enableModernMediaControls != options.enableModernMediaControls
-        || m_options.enablePointerLock != options.enablePointerLock)
+        || m_options.enablePointerLock != options.enablePointerLock
+        || m_options.enableCredentialManagement != options.enableCredentialManagement)
         return false;
 
     return true;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to