Title: [230288] trunk/Tools
Revision
230288
Author
ryanhad...@apple.com
Date
2018-04-04 18:03:02 -0700 (Wed, 04 Apr 2018)

Log Message

Disable failing WKWebViewAutofillTests
https://bugs.webkit.org/show_bug.cgi?id=184196

Unreviewed test gardening.

* TestWebKitAPI/Tests/ios/WKWebViewAutofillTests.mm:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (230287 => 230288)


--- trunk/Tools/ChangeLog	2018-04-05 00:30:48 UTC (rev 230287)
+++ trunk/Tools/ChangeLog	2018-04-05 01:03:02 UTC (rev 230288)
@@ -1,3 +1,13 @@
+2018-04-04  Ryan Haddad  <ryanhad...@apple.com>
+
+        Disable failing WKWebViewAutofillTests
+        https://bugs.webkit.org/show_bug.cgi?id=184196
+
+        Unreviewed test gardening.
+
+        * TestWebKitAPI/Tests/ios/WKWebViewAutofillTests.mm:
+        (TestWebKitAPI::TEST):
+
 2018-04-04  Youenn Fablet  <you...@apple.com>
 
         Introduce a ThreadSafeRefCounted parameter to ensure being destroyed on the main thread

Modified: trunk/Tools/TestWebKitAPI/Tests/ios/WKWebViewAutofillTests.mm (230287 => 230288)


--- trunk/Tools/TestWebKitAPI/Tests/ios/WKWebViewAutofillTests.mm	2018-04-05 00:30:48 UTC (rev 230287)
+++ trunk/Tools/TestWebKitAPI/Tests/ios/WKWebViewAutofillTests.mm	2018-04-05 01:03:02 UTC (rev 230288)
@@ -115,7 +115,7 @@
 
 namespace TestWebKitAPI {
 
-TEST(WKWebViewAutofillTests, UsernameAndPasswordField)
+TEST(WKWebViewAutofillTests, DISABLED_UsernameAndPasswordField)
 {
     auto webView = adoptNS([[AutofillTestView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]);
     [webView synchronouslyLoadHTMLString:@"<input id='user' type='email'><input id='password' type='password'>"];
@@ -134,7 +134,7 @@
     EXPECT_FALSE([webView textInputHasAutofillContext]);
 }
 
-TEST(WKWebViewAutofillTests, UsernameAndPasswordFieldSeparatedByRadioButton)
+TEST(WKWebViewAutofillTests, DISABLED_UsernameAndPasswordFieldSeparatedByRadioButton)
 {
     auto webView = adoptNS([[AutofillTestView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]);
     [webView synchronouslyLoadHTMLString:@"<input id='user' type='email'><input type='radio' name='radio_button' value='radio'><input id='password' type='password'>"];
@@ -165,7 +165,7 @@
     EXPECT_FALSE([webView textInputHasAutofillContext]);
 }
 
-TEST(WKWebViewAutofillTests, StandalonePasswordField)
+TEST(WKWebViewAutofillTests, DISABLED_StandalonePasswordField)
 {
     auto webView = adoptNS([[AutofillTestView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]);
     [webView synchronouslyLoadHTMLString:@"<input id='password' type='password'>"];
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to