- 02 Nov, 2018 - 5 commits
-
-
Allan Sandfeld Jensen authored
Turns out has_precise_scrolling_deltas, doesn't mean what its name says, but instead is a macOS'ism indicating a system scroll gesture. Fixes: QTBUG-71378 Change-Id: I124ba8f64495671e8a8ad7a9c397fb506d7fedf9 Reviewed-by:
Peter Varga <pvarga@inf.u-szeged.hu>
-
Jüri Valdmann authored
Don't call SynchronizeVisualProperties from updatePaintNode Fixes: QTBUG-71430 Change-Id: I6bd231b22c0473f9fd47ca3cdbcb8262f314bd5b Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
Jüri Valdmann authored
Fixes: QTBUG-71513 Change-Id: If3dfa048cfce57a1f10fa7bde3e7892e00fc8fa9 Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
Michal Klocek authored
This fallback was added in 5.11, however fell out somehow during ozone change. Fixes: QTBUG-70696 Change-Id: I68d12842e2283a25db64035e57d5a19323b4e6c0 Reviewed-by:
Alexandru Croitor <alexandru.croitor@qt.io>
-
Michael Brüning authored
Includes build fix for MSVC which blocks 5.12 and 5.12.0 integrations. Change-Id: Iaef3942f8fc5cef1c3e14834bd73b056861d4e8d Fixes: QTBUG-71521 Reviewed-by:
Alexandru Croitor <alexandru.croitor@qt.io>
-
- 01 Nov, 2018 - 1 commit
-
-
Allan Sandfeld Jensen authored
Change-Id: Id54a452d04438147e541ff9978c59db27269f694
-
- 31 Oct, 2018 - 2 commits
-
-
Allan Sandfeld Jensen authored
Changes: d17576d3e8 [Backport] Fix for security issue 888678 c6e9629156 [Backport] Fix for security issue 875494 3eeb84af35 [Backport] Second fix for CVE-2018-12371 6d63f10a16 [Backport] Fix for security issue 874433 1c382237bc [Backport] Fix for security issue 880023 (1/2) e6c8000fcf [Backport] Fix for security issue 880023 (2/2) 4eda1a0881 FIXUP: Implement HTTPS state Task-number: QTBUG-71203 Change-Id: Ic46a71614eea9f281abe956c38ce71259b8cafab Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
Peter Varga authored
Change-Id: Icd89aea969921ee2a5e6949a4f045ae7439dd618 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
- 30 Oct, 2018 - 6 commits
-
-
Allan Sandfeld Jensen authored
Some first party requests has no site_for_cookies yet, and thus returns an empty string. The logic matches that of StaticCookiePolicy. Change-Id: I10caf978dc410639cd21fc2aa01eb2bf6dc67c1f Fixes: QTBUG-71393 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Peter Varga authored
The Chromium API has been changed: https://chromium-review.googlesource.com/c/chromium/src/+/959006/ Task-number: QTBUG-70289 Task-number: QTBUG-71453 Change-Id: Ib20a82bd826d8067aa3eb3bccccda7d8716e20ad Reviewed-by:
Alexandru Croitor <alexandru.croitor@qt.io>
-
Allan Sandfeld Jensen authored
Changes: 466052c4e7c0 BASELINE: Update Chromium to 69.0.3497.128 f45cda20b1e1 Merge remote-tracking branch 'origin/upstream-master' into 69-based a5f88126f6b7 [Backport][Blink/SPv175+] Change DCHECK(chunk clip escaped layer clip) to a DLOG 48bd6a61f95c Make scroll animation less "drunk" c980bd518441 [Backport] Fix for CVE-2018-17476 198aa4c82d53 [Backport] Fix for CVE-2018-5179 24e56256fed1 Fix selection paste on Linux Task-number: QTBUG-71203 Change-Id: I88e8cc250be7c4addc874df13bcf3a3ad193812c Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
Topi Reinio authored
The documentation module for Qt Quick Controls 2 is now named simply 'qtquickcontrols'. Remove the obsolete dependency, and leave out the dependency to the (now deprecated) Qt Quick Controls 1 docs. Task-number: QTBUG-70333 Change-Id: Iac3ffbbf72c216c815f2434af991dfb6fa7f7b84 Reviewed-by:
Venugopal Shivashankar <Venugopal.Shivashankar@qt.io>
-
Peter Varga authored
Change-Id: Icdf58c228fc2511508c997e733d881d53709dd21 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Michael Brüning authored
Change-Id: I319ea175f9d95a3ffea9cc3140696976348a5238
-
- 29 Oct, 2018 - 3 commits
-
-
Tony Sarajärvi authored
Task-number: QTBUG-71461 Change-Id: I837cf81c1685ad210a17a8d548c4f6e439e181d6 Reviewed-by:
Liang Qi <liang.qi@qt.io>
-
Peter Varga authored
For restoring history a new WebContents is needed to be created. Make it visible if the old WebContents was. Task-number: QTBUG-71400 Change-Id: Ica10545e11413eb4da553f4976f9bf0c20125846 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Jüri Valdmann authored
Chromium creates "speculative" frames (RenderFrameHost and company) for pending cross-process navigations (and maybe other navigations too). For example, a redirect from http://qt.io to https://qt.io will trigger this, as described in the bug report. These speculative frames are loading in the background and only shown once they are officially ready (as decided by the RenderFrameHostManager and signaled to WebContentsObserver::RenderViewHostChanged). At least, this is how it's supposed to work and how it works in Chrome. In WebEngine, however, we actually show these speculative frames as soon as they are created and before they are ready. This runs into the problem that the if the speculative frame is dropped (instead of committed), then Chromium will not ask us to re-show the old frame (since it hasn't actually asked to us to show the new frame, it naturally assumes we are still showing the old one). Fixes: QTBUG-68727 Change-Id: I9d53035ce60e3a002d5412d4473d940a32644b5d Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
- 28 Oct, 2018 - 1 commit
-
-
Allan Sandfeld Jensen authored
With content/browser and content/browser limited in GN, we can drop disabling them here and try increasing the jumbo-width a little. Change-Id: I0f84e44881c8a71ee57a4bba2230c5f110595616 Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
- 25 Oct, 2018 - 1 commit
-
-
Allan Sandfeld Jensen authored
Changes: 10e146a7ff Silence most of the GCC warnings 60a2f0b294 Fix crash on exit 0286bb49ed Fix wake-lock with ozone 45c95ab284 [Backport] Fix for CVE-2018-17462 b0cdfa2d9f [Backport] Fix for CVE-2018-17463 fae700f087 [Backport] Update LCMS d30b56c22d [Backport] Fix for CVE-2018-17466 50221801bd [Backport] Fix for CVE-2018-17467 329c1780d9 [Backport] Fix for CVE-2018-17468 7a3ca41e45 [Backport] Fix for CVE-2018-17469 ddd00566a5 [Backport] Fix for CVE-2018-17470 e7b84680c6 [Backport] Fix for CVE-2018-17471 e6a46f1a01 [Backport] Fix for CVE-2018-17473 bf8e8093a5 [Backport] Fix for CVE-2018-17474 100d756a6d Fix Chromium build without x11 Task-number: QTBUG-71203 Change-Id: I9241612859badb4e58e00d09014e291291ca54a5 Reviewed-by:
Michal Klocek <michal.klocek@qt.io>
-
- 23 Oct, 2018 - 10 commits
-
-
Szabolcs David authored
On the Quick side, navigation actions were dependent on the context menu. They were only updated when requesting a new context menu and this is obviously wrong if an action is tied to a button or another type of UI element. Change-Id: I5f14b019b66215f16d027fb57d76f052b1604365 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Allan Sandfeld Jensen authored
Move to a separate file and cleanup the code. Change-Id: I33d9536c7e40315b6bf271e33bdc3f838ab4b671 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Allan Sandfeld Jensen authored
The tabs view still trying to fill the entire view even when the bottom was taken by the devtools view. Change-Id: Ia1c4fc7aa9648bf19d5f79dd7ac95ec611318105 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Michael Brüning authored
This reads the hw.model string through sysctlbyname and sets the environment variable QT_MAC_PRO_WEBENGINE_WORKAROUND to tell the Cocoa platform plugin to not enable offline renderers upon creation of the platform OpenGL context. Task-number: QTBUG-70062 Change-Id: I986d9d76a80f96a215f3fcd08b3d47e546682e35 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Allan Sandfeld Jensen authored
We can't not build with older than Qt 5.9 anyway due to QSG and qmake changes. Change-Id: Iff0247e70d9ffc1e045e2c571f0089d68df9a589 Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
Allan Sandfeld Jensen authored
Change-Id: If4888c1b170568735953ac715c4a7c40de614dd8 Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
Michal Klocek authored
In case of cross compilation for targets with x11, check also for dependencies. Change-Id: I32df962a61e5a13ee1290ab2c256f0f222dafbd3 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Allan Sandfeld Jensen authored
Change-Id: I1e1d36c656e465ca718985896aca96b27754aa84 Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
Allan Sandfeld Jensen authored
Add a test that we can have larger world ids. Change-Id: Ibc8a0eb5e6f56aa41183adb3726b2c3141197c84 Reviewed-by:
Michael Brüning <michael.bruning@qt.io>
-
Allan Sandfeld Jensen authored
We don't use OpenSSL, but only depended on it because QtNetwork didn't define QSslCertificate without an SSL backend. I changed that in QtNetwork 5.12, so we only rely on a QtNetwork SSL backend with older Qt versions. Task-number: QTBUG-54877 Change-Id: I16f3077235f5c48610597868608ef2e5ca2efa99 Reviewed-by:
Alexandru Croitor <alexandru.croitor@qt.io>
-
- 22 Oct, 2018 - 2 commits
-
-
Allan Sandfeld Jensen authored
-
Allan Sandfeld Jensen authored
Conflicts: configure.json src/3rdparty src/core/content_browser_client_qt.cpp src/core/content_browser_client_qt.h src/core/login_delegate_qt.cpp src/core/login_delegate_qt.h src/core/net/url_request_context_getter_qt.cpp src/core/net/url_request_context_getter_qt.h src/core/qtwebengine.gni 3rdparty changes: 616a7f558c7e This is expected for us, so don't report it as an error. c30febceaa1b Do not write <protocol>.json to source directory 9e68e4f2d92c Remove incomplete logic to detect AMD K2 CPU's e0ed41c8e90a FIXUP: This is expected for us, so don't report it as an error. f9fd9109b4b7 Fix --single-process --disable-gpu combination not to hit asserts f305d65cc27e Reduce severity level of messages when kDisableGpu switch is used 5e3e5074bb78 Work around MSVC2017 optimizer bug when printing a page usind Pdfium 34f52ec3bae8 Bump maximum number of custom isolated world ids f7a2f8153c82 Fix hunspell::NodeReader::affix_id_for_leaf bounds check 1e80090f7044 Fix resolve_proxy service permissions 2e498629651d Add proxy_resolver_manifest Change-Id: I2b176c80aa315a0ae0a22b5707694fdcd407407b
-
- 21 Oct, 2018 - 1 commit
-
-
Allan Sandfeld Jensen authored
It had too many headers, and many files depending on its over inclusion. Change-Id: I5add1c4e07a14e017ac60db75efab5fc11e4166f Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io>
-
- 20 Oct, 2018 - 1 commit
-
-
Peter Varga authored
Change-Id: I3ffc92eacf30265ecb80061870d213e521e4f838 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
- 18 Oct, 2018 - 6 commits
-
-
Michal Klocek authored
Task-number: QTBUG-71128 Task-number: QTBUG-69281 Task-number: QTBUG-71229 Change-Id: If6b839ce12efb3ccd69c270d99b10b3756014bb2 Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
Kai Koehne authored
Task-number: QTBUG-69365 Change-Id: Ifa11a5fa1fa9be89699497650158536c3271e265 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Michael Brüning authored
A change in Chromium 69 pulled a mojom header into the public content browser API without, assuming the dependencies would always be fulfilled via building the extension system. Add the dependency explicitly to fix this. Change-Id: I005aa0970c7ecdbdce90d8c1db78c38f2274d324 Fixes: QTBUG-70914 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Jüri Valdmann authored
Add test for cross origin XMLHttpRequests from/to custom schemes. By default, this is not allowed, but can be changed by adding an origin access whitelist entry to blink::WebSecurityPolicy in the renderer. Do this for the qrc scheme. As a result SecurityOrigin("qrc").CanRequest("file") will return true, which makes DocumentThreadableLoader::Start disable CORS for the request. Otherwise, CORS would be used, which only works with CORS enabled schemes. Fixes: QTBUG-70228 Change-Id: I2da60fddbbfb490c6d2f03329be286dbc28e1f12 Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Michal Klocek authored
This adds proxy resolver service as a part of content utility process and pulls in the corresponding change in Chromium. Fixes: QTBUG-69281 Change-Id: Icb2b67e1e506a5b511531322a8c13d7df0e11f9f Reviewed-by:
Allan Sandfeld Jensen <allan.jensen@qt.io>
-
Michal Klocek authored
Do no access m_request from ui thread. The auth request can get cancelled, this can happen for example when a new navigation interrupts the current one. Fixes: QTBUG-71128 Change-Id: I140b1a164294342bad13a76342c1f642ba0960c8 Reviewed-by:
Kai Koehne <kai.koehne@qt.io>
-
- 17 Oct, 2018 - 1 commit
-
-
Peter Varga authored
The page need to be visible to use desktop capture. Task-number: QTBUG-71005 Change-Id: Icf19b68fb9132e528d206ac45245121beb31a1ac Reviewed-by:
Jüri Valdmann <juri.valdmann@qt.io> Reviewed-by:
Alexandru Croitor <alexandru.croitor@qt.io>
-