Title: [186239] trunk/Source/WebKit2
Revision
186239
Author
bfulg...@apple.com
Date
2015-07-02 15:32:27 -0700 (Thu, 02 Jul 2015)

Log Message

Correct typo in r186238.

* UIProcess/API/Cocoa/WKWebView.mm:
(-[WKWebView scrollViewWillEndDragging:withVelocity:targetContentOffset:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (186238 => 186239)


--- trunk/Source/WebKit2/ChangeLog	2015-07-02 22:31:21 UTC (rev 186238)
+++ trunk/Source/WebKit2/ChangeLog	2015-07-02 22:32:27 UTC (rev 186239)
@@ -1,5 +1,12 @@
 2015-07-02  Brent Fulgham  <bfulg...@apple.com>
 
+        Correct typo in r186238.
+
+        * UIProcess/API/Cocoa/WKWebView.mm:
+        (-[WKWebView scrollViewWillEndDragging:withVelocity:targetContentOffset:]):
+
+2015-07-02  Brent Fulgham  <bfulg...@apple.com>
+
         Provide delegate SPI for clients to notify WebKit about content inset changes
         https://bugs.webkit.org/show_bug.cgi?id=146482
         <rdar://problem/21602741>

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm (186238 => 186239)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2015-07-02 22:31:21 UTC (rev 186238)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm	2015-07-02 22:32:27 UTC (rev 186239)
@@ -1468,7 +1468,7 @@
         if ([uiDelegatePrivate respondsToSelector:@selector(_webView:finalObscuredInsetsForScrollView:withVelocity:targetContentOffset:)])
             contentInset = [uiDelegatePrivate _webView:self finalObscuredInsetsForScrollView:scrollView withVelocity:velocity targetContentOffset:targetContentOffset];
         else
-            UIEdgeInsets contentInset = [self _computedContentInset];
+            contentInset = [self _computedContentInset];
 
         CGRect unobscuredRect = UIEdgeInsetsInsetRect(fullViewRect, contentInset);
         
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to