I have UIViewController subclass hosting WKWebView on its view’s entire bounds. Content inset of WKWebView scrollview is set to UIEdgeInsetsMake(200,0,0,0) to accommodate a header view.WKWebView is loaded with a webpage that contains single content editable div tag.Eg.<html><head><body><div contentEditible=‘true’></div></body></head></html>When I type some text in the editable area and start selecting the text by double tap and selection handle drag WKWebView’s scroll view starts to wiggle(moves up and down continuously).Is it okay to change content inset of WKWebView's scroll view ? If so, can someone please help here, am I missing something here ?I can share a sample project if required.Thanks