Details
-
Bug
-
Resolution: Duplicate
-
Not Evaluated
-
6.5.1
-
None
-
The bug occurred under Qt 6.5.1 on macOS Ventura 13.4.1 (22F82) on an Intel MacBook Pro (13-inch, 2018, Four Thunderbolt 3 Ports). I have not tested any other machines or operating systems. On the same machine, the bug does not occur with Qt 6.4.3
Description
The following code invariably causes the entire application to crash when clicking on "Crash", but not when clicking on "No crash":
#include <QApplication> #include <QtWebEngineWidgets/QWebEngineView> int main(int argc, char *argv[]) { QApplication a(argc, argv); QWebEngineView w; w.page()->setHtml("No crash<ul><li>Crash</li></ul>"); w.show(); return a.exec(); }
- The crash also occurs for both local and remote URLs set using setUrl.
- The crash also occurs for the simplebrowser example. To reproduce, load https://en.wikipedia.org/wiki/Wikipedia:Contents and click on the "Vital Articles" link (see attached screen recording).
- For real-world Internet web pages, not all list items always cause a crash. However, the examples above (the inline HTML example and the "Vital links" on Wikipedia Contents) always cause a crash.
- The bug occurs both in Debug and Release mode. Nothing is output by the MRE (the code snippet above).
The attachments include:
- A recording of simplebrowser crashing;
- a dump of simplebrowser after crashing;
- A minimum reproducible example (not simplebrowser), essentially the code snippet above with an accompanying .pro file.
Attachments
Issue Links
- duplicates
-
QTBUG-113859 [REG 6.4->6.5] Accessibility crash when clicking on a link in a list on macOS
- Closed