- Sep 06, 2018
-
-
Kai Koehne authored
Declare scheme name and about URL in one place. Change-Id: Id8eb69f2a8516dd21e6abedc2adda828a5a9e18c Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Thiago Macieira authored
It'll never pass unless the code is valid C++. Change-Id: I8b4ab98c34b94afd94b6fffd15516ec82d79bf17 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
- Sep 05, 2018
-
-
Jüri Valdmann authored
This pulls in the following changes: * 79e2dad9 [Backport] Skip deleted object files in POSIX base::debug::StackTrace * 3779b31a Fix hunspell::NodeReader::affix_id_for_leaf bounds check Change-Id: Ib8e9925e66c9730016141c09c32453b6aaaa5186 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Allan Sandfeld Jensen authored
Also fixes potential double delete if you do delete a view's implied page. Change-Id: Ib74128c0801f992694f4a5d8c148974039a6c7b2 Reviewed-by:
Michal Klocek <michal.klocek@qt.io> Reviewed-by:
Zakor Tamas <ztamas@inf.u-szeged.hu>
-
Thiago Macieira authored
Commit 83e790da removed the test, but not the configure.json files, so the test always failed because the test failed to compile. Change-Id: I8b4ab98c34b94afd94b6fffd15516f06ec21c791 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Allan Sandfeld Jensen authored
Latin-1 is a standard fallback for HTTP headers, but no one that HTTPContentDisposition::Parse considers by default. Task-number: QTBUG-70288 Change-Id: Ife36fffe31da5492cde49a4d447cfc42b3f64b95 Reviewed-by:
Zakor Tamas <ztamas@inf.u-szeged.hu> Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
- Sep 04, 2018
-
-
Jüri Valdmann authored
Task-number: QTBUG-70247 Change-Id: Ic0898966d9a88a0bbcdf749c6ea7e80e054d68a3 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
- Aug 30, 2018
-
-
Kai Koehne authored
By running qmlplugindump -defaultplatform -dependencies dependencies.json -nonrelocatable QtWebEngine 1.8 >plugins.qmltypes Change-Id: I0d3bce858594bd6f6958b329c9c3a939462329bd Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Leena Miettinen authored
Task-number: QTBUG-70246 Change-Id: I8f56c6ee63fb9b0660558a91c4583961ca0d6946 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
- Aug 29, 2018
-
-
Kai Koehne authored
Change-Id: I694749ec57caa70ee5a6196684b196e84421ff6e Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@qt.io>
-
Erwin Kandler authored
WebEngineView supports getting the http status code (error code) for failed loading requests only. This patch lets the user access the status code for successfully loaded pages as well. Change-Id: Ib8dbdfe94eed4d62e731c736c13f60ebd62a23fa Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Jüri Valdmann authored
WebRTC requires a newer, unreleased, version of libvpx. The config test should detect it once it has been released. Until then the bundled version must be used. Task-number: QTBUG-70183 Change-Id: Ie97319d3f9560e44ebc823fc07a481696a82648e Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
- Aug 28, 2018
-
-
Michal Klocek authored
There is no qt.io. Use www.qt.io. Use https. Change-Id: I1bf44a3c99cbb50b93875d88881cbdfb083f27c5 Reviewed-by:
Peter Varga <pvarga@inf.u-szeged.hu> Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Kai Koehne authored
Amends c4cded3f . Change-Id: Ie0e01440e071ca01c6677a793ce0cc5f3f640ec7 Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
- Aug 27, 2018
-
-
Jüri Valdmann authored
Fixes missing dom_key issue when ControlModifier is used on Linux and macOS. Task-number: QTBUG-69442 Change-Id: Icd644d019494fd3c95269b42c71efd747507a3ea Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Jüri Valdmann authored
Usually this field should be computed from the native scan code, but sometimes we do not have a native scan code (in tests, for example). Add a fallback case to compute this field from windows_key_code, with test. Task-number: QTBUG-69442 Change-Id: I046094032576f4215cc8b3a6ced699a86ea148a9 Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Jüri Valdmann authored
Currently this field is always computed from QKeyEvent::nativeScanCode, but this is not correct on macOS where nativeVirtualKey should be used instead (there is no nativeScanCode on macOS). Fix by using native_key_code which already takes this into account. Task-number: QTBUG-69442 Change-Id: I7c99d7d147ab68bac7ab91101de173eb04fa5c03 Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Jüri Valdmann authored
Currently this field is filled from QKeyEvent::nativeVirtualKey, but this is correct only on macOS (cocoa). Other platforms should use nativeScanCode. Task-number: QTBUG-69442 Change-Id: I097ec4c726a9d249c0adfbc620d2585983f6246c Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Jüri Valdmann authored
Make sure that the platform specific code paths are only taken when the relevant QPA plugin is actually used. Also detect if eglfs plugin is using Xkb key codes. Task-number: QTBUG-69442 Change-Id: I9546b61ad8d9f15020a96f8c0006d056aa157fcc Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Jüri Valdmann authored
Move swapping logic to separate helper functions and use them also for filling out windows_key_code and dom_key. Task-number: QTBUG-69442 Change-Id: Id3b883b28b877d54315c5e2fb0d77bad250f2462 Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Jüri Valdmann authored
Task-number: QTBUG-70034 Change-Id: Ia1c18845f480225e3f50cf7199cdf85a3fb4f158 Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
- Aug 25, 2018
-
-
Michal Klocek authored
Do lazy initialization for WebEngineProfile on WebEngineView. Fix unnecessary creation on default profile on destruction. Task-number: QTBUG-66068 Change-Id: I9a5889387ac64f0dc718a9e105c8d498aed47a43 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
- Aug 24, 2018
-
-
Tamas Zakor authored
Change-Id: I327c2459e803602dae107defec8d03d75f363cd7 Reviewed-by:
Peter Varga <pvarga@inf.u-szeged.hu>
-
- Aug 23, 2018
-
-
Jüri Valdmann authored
QTimer::singleShot wants to copy the lambda but LoadURLParams is not copyable. Change-Id: I300b70eef0041294080a15166a50321bb4292cfd Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Jüri Valdmann authored
Change-Id: I9a6b4e7625700c1ff2621f4e2a2125727c34d3a1 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Tamas Zakor authored
Change-Id: Icf0508baf0884afe7591b35e13733b17c9fdfe90 Reviewed-by:
Peter Varga <pvarga@inf.u-szeged.hu> Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Jüri Valdmann authored
Example of using QWebEngineUrlScheme and QWebEngineUrlSchemeHandler. Change-Id: I1316831600e7c9b8f7ca7b205ecb3c29bfcdcd84 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io> Reviewed-by:
Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
Jüri Valdmann authored
Change-Id: I5ab52de1eb6bd7a25e8b680f4779a505e3f1fcf0 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
- Aug 22, 2018
-
-
Allan Sandfeld Jensen authored
-
- Aug 21, 2018
-
-
Michael Brüning authored
Conflicts: .qmake.conf configure.json examples/webenginewidgets/markdowneditor/resources/3rdparty/marked.js examples/webenginewidgets/markdowneditor/resources/3rdparty/qt_attribution.json examples/webenginewidgets/markdowneditor/resources/markdowneditor.qrc mkspecs/features/platform.prf src/3rdparty src/core/media_capture_devices_dispatcher.cpp src/core/net/url_request_context_getter_qt.cpp src/core/net/url_request_context_getter_qt.h src/core/web_contents_adapter.cpp Change-Id: I467133ba455b1f85f6bb61793794c31cb1094541
-
Jüri Valdmann authored
Change-Id: I86dc2f050644a354553aab82a221d986e95c81aa Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
- Aug 16, 2018
-
-
Michael Brüning authored
This pulls in the following changes : * 827405 [Backport] Security fix for Chromium bug 854887 * e79b92 [Backport] Security fix for Chromium bug 861571 * d845af [Backport] CVE-2018-6161 * 3cdf31 [Backport] CVE-2018-6159 * 625870 [Backport] CVE-2018-6162 * 2b111a [Backport] CVE-2018-6164 * eb5360 [Backport] blink: disable XML catalogs at runtime * 273272 Bump maximum number of custom isolated world ids * 8f53e0 [Backport] CVE-2018-6167 * 07c34e [Backport] CVE-2018-6172 CVE-2018-6163 * 5d8596 [Backport] CVE-2018-6165 * e8b9ae [Backport] CVE-2018-6177 CVE-2018-6168 * 0cce34 [Backport] CVE-2018-4117 Task-number: QTBUG-69663 Change-Id: Ied119f9d0b28ccba4954c087ab7bcf129969d52a Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Michael Brüning authored
Although the test should have been fixed by the change and did succeed during local tests and CI runs, it still fails on the CI. This prevents a merge to dev. Partially reverts commit: d62cb919 Task-number: QTBUG-66527 Change-Id: I1571c918034d84bd969ca0d401d4cfb17a10fd68 Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Kai Koehne authored
--enable-webgl-software-rendering is supposed to be used together with mesa llvmpipe / opengl32sw.dll. However, Chromium did still use the built-in GPU blacklist to disable features based on the hardware GPU driver. Avoid this by always passing --ignore-gpu-blacklist for this mode. Task-number: QTBUG-69236 Change-Id: I430d101f6eac64478585de54f705e76859c80597 Reviewed-by:
Alexandru Croitor <alexandru.croitor@qt.io>
-
- Aug 15, 2018
-
-
Michal Klocek authored
This commit pulls in security patches: * CVE-2018-6150 * CVE-2018-6152 * CVE-2018-6175 * CVE-2018-6155 Task-number: QTBUG-69663 Change-Id: If70e7817f4f9aa1fa482559b734085e6cdff89ed Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
- Aug 14, 2018
-
-
Edward Welbourne authored
The feature has long been unused and support for it shall soon be dropped. Change-Id: Ia82082fa6cd2d83d461b6db40670dd541015e9f2 Reviewed-by:
Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
- Aug 10, 2018
-
-
Michal Klocek authored
Directly accessing IOProfileData's m_requestInterceptor from NetworkDelegateQt is not thread safe, unfriend the class. This change does not fix the issue of thread safety of accessing the requestinterceptor from NetworkDelegateQt, it is just a cleanup for following commit. Task-number: QTBUG-69844 Change-Id: I488f8968b38ad200178cea2cb0304e1c93aec711 Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
Jüri Valdmann authored
- Make private methods private. - Use DCHECK_CURRENTLY_ON instead of just DCHECK (better error message). - Use auto for iterators. - Remove duplicate queue.empty() checks. - Remove unused arguments for getDevicesForDesktopCapture. Change-Id: I929f5d5882a2c1924159f4e001fe477e69a5f1a1 Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
Jüri Valdmann authored
Never used for anything? Change-Id: Ib7facf264d3a286a8c2ea1d1584ab86f11f4ea33 Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
Jüri Valdmann authored
It's a std::unique_ptr<content::MediaStreamUI> that is always null. Change-Id: Id43be71b20dc3331692591af9fecbc73a8e521d6 Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-