Indeterminate HTML checkbox not displayed correctly in QWebView
-
I have the following HTML content
@<input type="checkbox" id="some-checkbox">@
@var checkbox = document.getElementById("some-checkbox");
checkbox.indeterminate = true;@It is correctly displayed in Chrome browser. However, inside a QWebView, the checkbox appears in a 'false' state.
Any advice will be thanked.