Title: [219590] trunk/Tools
Revision
219590
Author
[email protected]
Date
2017-07-17 17:15:42 -0700 (Mon, 17 Jul 2017)

Log Message

Unreviewed, fix the iOS build.

I missed a spot when renaming -synchronouslyLoadHTML: to -synchronouslyLoadHTMLString:.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (219589 => 219590)


--- trunk/Tools/ChangeLog	2017-07-17 23:56:45 UTC (rev 219589)
+++ trunk/Tools/ChangeLog	2017-07-18 00:15:42 UTC (rev 219590)
@@ -1,5 +1,14 @@
 2017-07-17  Wenson Hsieh  <[email protected]>
 
+        Unreviewed, fix the iOS build.
+
+        I missed a spot when renaming -synchronouslyLoadHTML: to -synchronouslyLoadHTMLString:.
+
+        * TestWebKitAPI/Tests/ios/DataInteractionTests.mm:
+        (TestWebKitAPI::TEST):
+
+2017-07-17  Wenson Hsieh  <[email protected]>
+
         [iOS DnD] Web process uses too much memory when beginning a drag on a very large image
         https://bugs.webkit.org/show_bug.cgi?id=174585
         <rdar://problem/33302541>

Modified: trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm (219589 => 219590)


--- trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm	2017-07-17 23:56:45 UTC (rev 219589)
+++ trunk/Tools/TestWebKitAPI/Tests/ios/DataInteractionTests.mm	2017-07-18 00:15:42 UTC (rev 219590)
@@ -173,7 +173,7 @@
 TEST(DataInteractionTests, CanStartDragOnEnormousImage)
 {
     auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]);
-    [webView synchronouslyLoadHTML:@"<img src=''></img>"];
+    [webView synchronouslyLoadHTMLString:@"<img src=''></img>"];
 
     auto dataInteractionSimulator = adoptNS([[DataInteractionSimulator alloc] initWithWebView:webView.get()]);
     [dataInteractionSimulator runFrom:CGPointMake(100, 100) to:CGPointMake(100, 100)];
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to