Details
Description
Regression from 5.7.1 Clicking on the combobox control for a <select> tag causes the popup menu to display and then close again instantly. Minimal script to reproduce:
from PyQt5.Qt import ( QApplication, QWebEnginePage, QWebEngineProfile, QWebEngineView, QUrl, QTimer, QWebEngineFullScreenRequest ) app = QApplication([]) w = QWebEngineView() w.setHtml('''<body><select name="select"> <option value="value1">Value 1</option> <option value="value2" selected>Value 2</option> <option value="value3">Value 3</option> </select> ''') w.show() app.exec_()
Attachments
Issue Links
- is duplicated by
-
QTBUG-58581 Webengine does not open select box
- Closed
- relates to
-
QTBUG-51244 HTML Select controls open slowly / draws in wrong place
- Closed
-
QTBUG-68015 Dropdown list options are detached from dropdown list control
- Closed