Title: [261069] trunk/Tools
- Revision
- 261069
- Author
- [email protected]
- Date
- 2020-05-03 15:37:19 -0700 (Sun, 03 May 2020)
Log Message
Attempt to fix the iOS build after r261068
(https://bugs.webkit.org/show_bug.cgi?id=208281)
Wrap TEST()s in namespace TestWebKitAPI so as to not need to qualify IPhoneUserInterfaceSwizzler.
* TestWebKitAPI/Tests/ios/UIWKInteractionViewProtocol.mm:
(TEST): Deleted.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (261068 => 261069)
--- trunk/Tools/ChangeLog 2020-05-03 22:14:45 UTC (rev 261068)
+++ trunk/Tools/ChangeLog 2020-05-03 22:37:19 UTC (rev 261069)
@@ -1,5 +1,15 @@
2020-05-03 Daniel Bates <[email protected]>
+ Attempt to fix the iOS build after r261068
+ (https://bugs.webkit.org/show_bug.cgi?id=208281)
+
+ Wrap TEST()s in namespace TestWebKitAPI so as to not need to qualify IPhoneUserInterfaceSwizzler.
+
+ * TestWebKitAPI/Tests/ios/UIWKInteractionViewProtocol.mm:
+ (TEST): Deleted.
+
+2020-05-03 Daniel Bates <[email protected]>
+
[iPad Simulator] TestWebKitAPI.UIWKInteractionViewProtocol.SelectPositionAtPointAfterBecomingFirstResponder is failing
https://bugs.webkit.org/show_bug.cgi?id=208281
<rdar://problem/59829265>
Modified: trunk/Tools/TestWebKitAPI/Tests/ios/UIWKInteractionViewProtocol.mm (261068 => 261069)
--- trunk/Tools/TestWebKitAPI/Tests/ios/UIWKInteractionViewProtocol.mm 2020-05-03 22:14:45 UTC (rev 261068)
+++ trunk/Tools/TestWebKitAPI/Tests/ios/UIWKInteractionViewProtocol.mm 2020-05-03 22:37:19 UTC (rev 261069)
@@ -83,6 +83,8 @@
@end
+namespace TestWebKitAPI {
+
TEST(UIWKInteractionViewProtocol, SelectTextWithCharacterGranularity)
{
auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 400, 400)]);
@@ -178,4 +180,6 @@
EXPECT_WK_STREQ("DIV", [webView stringByEvaluatingJavaScript:@"document.querySelector('iframe').contentDocument.activeElement.tagName"]);
}
+} // namespace TestWebKitAPI
+
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes