WebView Doesn't Respect Cursor Properties

I have a webview in an app extension I am building in Swift. No matter how I set the css cursor properties for various elements, the cursor in the app extension does not change. For example, if I set an element to have `cursor: pointer`, the cursor stays defaults.


How can I get webviews in Swift to respect the cursor properties of the CSS?

Could you show code, in its context, where you set cursoer ?

Thanks for the reply Claude.


It's just basic CSS code for setting cursors, for example:


.button {
     cursor: pointer;
}


Note that the CSS/HTML for the webview works fine outside of a WKWebView, the cursor changes as expected.


In general it seems like when working withwebviews there are no cursors changes, whatsoever no matter the css code or the default web behaviour (such as hovering an input field).

WebView Doesn't Respect Cursor Properties
 
 
Q