What the hell is the web browser encapsulated in QT? why do I write a lot of CSS attributes that are not supported?

as a pc client, the QT5, client comes with a web browser and asks them that it comes with QT, but when I do front-end development on this browser, some of the CSS attributes are incompatible, such as this: cursor: pointer;, it seems to be unknown, and how can this thing open the console, just like Google browser? use developer tools.

Mar.16,2021

Webkit , check it out. For
debugging, the early version of Qt4 does not have a console, but there is a debugging class that you can try using QWebInspector and embed it into a QDialog, like this:

QDialog dlg;

QWebInspector *i = new QWebInspector(this);
dlg.setLayout(new QVBoxLayout());
dlg.layout()->addWidget(i);
dlg.setModal(false);
dlg.show();
dlg.raise();
dlg.activateWindow();
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3c19d-40873.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3c19d-40873.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?