Title: [163994] trunk/Source/WebKit2
Revision
163994
Author
[email protected]
Date
2014-02-12 15:13:49 -0800 (Wed, 12 Feb 2014)

Log Message

Expose scrollView on the WKWebView
https://bugs.webkit.org/show_bug.cgi?id=128697

Reviewed by Dan Bernstein.

* UIProcess/API/Cocoa/WKWebView.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (163993 => 163994)


--- trunk/Source/WebKit2/ChangeLog	2014-02-12 23:09:28 UTC (rev 163993)
+++ trunk/Source/WebKit2/ChangeLog	2014-02-12 23:13:49 UTC (rev 163994)
@@ -1,5 +1,14 @@
 2014-02-12  Anders Carlsson  <[email protected]>
 
+        Expose scrollView on the WKWebView
+        https://bugs.webkit.org/show_bug.cgi?id=128697
+
+        Reviewed by Dan Bernstein.
+
+        * UIProcess/API/Cocoa/WKWebView.h:
+
+2014-02-12  Anders Carlsson  <[email protected]>
+
         Better iOS build fix.
 
         * UIProcess/WebPageProxy.cpp:

Modified: trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.h (163993 => 163994)


--- trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.h	2014-02-12 23:09:28 UTC (rev 163993)
+++ trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.h	2014-02-12 23:13:49 UTC (rev 163994)
@@ -85,12 +85,16 @@
 
 @property (nonatomic, readonly) BOOL hasOnlySecureContent;
 
-@property(readonly) BOOL canGoBack;
-@property(readonly) BOOL canGoForward;
+@property (readonly) BOOL canGoBack;
+@property (readonly) BOOL canGoForward;
 
 - (void)goBack;
 - (void)goForward;
 
+#if TARGET_OS_IPHONE
+@property (nonatomic, readonly) UIScrollView *scrollView;
+#endif
+
 @end
 
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to