8000 Fix the build after 258842@main · WebKit/WebKit@869873e · GitHub
[go: up one dir, main page]

Skip to content

Commit 869873e

Browse files
committed
Fix the build after 258842@main
https://bugs.webkit.org/show_bug.cgi?id=250529 rdar://104194099 Unreviewed build fix. * Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm: (contentZoomScale): Canonical link: https://commits.webkit.org/258852@main
1 parent 9cee478 commit 869873e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/WebKit/UIProcess/API/ios/WKWebViewIOS.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ - (void)_didInvokeUIScrollViewDelegateCallback
564564
static CGFloat contentZoomScale(WKWebView *webView)
565565
{
566566
CGFloat scale = webView._currentContentView.layer.affineTransform.a;
567-
ASSERT(_resizeAnimationView || scale == [webView->_scrollView zoomScale]);
567+
ASSERT(webView->_resizeAnimationView || scale == [webView->_scrollView zoomScale]);
568568
return scale;
569569
}
570570

0 commit comments

Comments
 (0)
0