Details
Description
CSS filese that are located in a QRC file are ignored.
See tst_QWebEnginePage::setHtmlWithStylesheetResource.
const char* htmlData = "<html>" "<head>" "<link rel='stylesheet' href='qrc:/style.css' type='text/css' />" "</head>" "<body>" "<p id='idP'>some text</p>" "</body>" "</html>";
The (adjusted) test passes with inline CSS:
const char* htmlData = "<html>" "<head><style>" "#idP {color: red !important}" "</style></head>" "<body>" "<p id='idP'>some text</p>" "</body>" "</html>";