I'm trying to set external CSS for QWebView with:
ui->webView->settings()->setUserStyleSheetUrl( QUrl::fromLocalFile(":/default.css") );
Which contains only:
body { color: red; }
But it's not working on any page ( nothing is in red )
Also i double checked by:
ui->webView->page()->mainFrame()->toHtml();
But no CSS was applied.