onOpenURLFromTab
abstract fun onOpenURLFromTab(browser: CefBrowser, frame: CefFrame, target_url: String, user_gesture: Boolean): Boolean
Called on the UI thread before OnBeforeBrowse in certain limited cases where navigating a new or different browser might be desirable. This includes user-initiated navigation that might open in a special way (e.g. links clicked via middle-click or ctrl + left-click) and certain types of cross-origin navigation initiated from the renderer process (e.g. navigating the top-level frame to/from a file URL).
Return
True to cancel navigation or false to continue
Parameters
browser
The corresponding browser.
frame
The frame generating the event. Instance only valid within the scope of this method
user_gesture
True if the request was initiated by a user gesture.