Changeset 163994 in webkit


Ignore:
Timestamp:
Feb 12, 2014 3:13:49 PM (10 years ago)
Author:
andersca@apple.com
Message:

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

Reviewed by Dan Bernstein.

  • UIProcess/API/Cocoa/WKWebView.h:
Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r163992 r163994  
     12014-02-12  Anders Carlsson  <andersca@apple.com>
     2
     3        Expose scrollView on the WKWebView
     4        https://bugs.webkit.org/show_bug.cgi?id=128697
     5
     6        Reviewed by Dan Bernstein.
     7
     8        * UIProcess/API/Cocoa/WKWebView.h:
     9
    1102014-02-12  Anders Carlsson  <andersca@apple.com>
    211
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.h

    r163555 r163994  
    8686@property (nonatomic, readonly) BOOL hasOnlySecureContent;
    8787
    88 @property(readonly) BOOL canGoBack;
    89 @property(readonly) BOOL canGoForward;
     88@property (readonly) BOOL canGoBack;
     89@property (readonly) BOOL canGoForward;
    9090
    9191- (void)goBack;
    9292- (void)goForward;
    9393
     94#if TARGET_OS_IPHONE
     95@property (nonatomic, readonly) UIScrollView *scrollView;
     96#endif
     97
    9498@end
    9599
Note: See TracChangeset for help on using the changeset viewer.