Title: [241553] trunk/Tools
Revision
241553
Author
jiewen_...@apple.com
Date
2019-02-14 10:47:38 -0800 (Thu, 14 Feb 2019)

Log Message

Unreviewed, build fix after r241480

* TestWebKitAPI/ios/DragAndDropSimulatorIOS.mm:
(-[DragAndDropSimulator initWithWebViewFrame:configuration:]):
(-[DragAndDropSimulator initWithWebView:]):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (241552 => 241553)


--- trunk/Tools/ChangeLog	2019-02-14 18:12:23 UTC (rev 241552)
+++ trunk/Tools/ChangeLog	2019-02-14 18:47:38 UTC (rev 241553)
@@ -1,3 +1,11 @@
+2019-02-14  Jiewen Tan  <jiewen_...@apple.com>
+
+        Unreviewed, build fix after r241480
+
+        * TestWebKitAPI/ios/DragAndDropSimulatorIOS.mm:
+        (-[DragAndDropSimulator initWithWebViewFrame:configuration:]):
+        (-[DragAndDropSimulator initWithWebView:]):
+
 2019-02-14  Chris Fleizach  <cfleiz...@apple.com>
 
         AX: ARIA Reflection was disabled in error

Modified: trunk/Tools/TestWebKitAPI/ios/DragAndDropSimulatorIOS.mm (241552 => 241553)


--- trunk/Tools/TestWebKitAPI/ios/DragAndDropSimulatorIOS.mm	2019-02-14 18:12:23 UTC (rev 241552)
+++ trunk/Tools/TestWebKitAPI/ios/DragAndDropSimulatorIOS.mm	2019-02-14 18:47:38 UTC (rev 241553)
@@ -332,7 +332,6 @@
 
 - (instancetype)initWithWebViewFrame:(CGRect)frame configuration:(WKWebViewConfiguration *)configuration
 {
-    self.dragDestinationAction = WKDragDestinationActionAny & ~WKDragDestinationActionLoad;
     if (configuration)
         return [self initWithWebView:[[[TestWKWebView alloc] initWithFrame:frame configuration:configuration] autorelease]];
 
@@ -347,6 +346,7 @@
         _shouldAllowMoveOperation = YES;
         [_webView setUIDelegate:self];
         [_webView _setInputDelegate:self];
+        self.dragDestinationAction = WKDragDestinationActionAny & ~WKDragDestinationActionLoad;
     }
     return self;
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to