Changeset 246032 in webkit
- Timestamp:
- Jun 3, 2019, 2:43:41 AM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
WebProcess/WebPage/WebPage.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r246030 r246032 1 2019-06-03 Fujii Hironori <Hironori.Fujii@sony.com> 2 3 REGRESSION(r240862) [WinCairo][WK2] position:fixed elements don't show 4 https://bugs.webkit.org/show_bug.cgi?id=198478 5 6 Reviewed by Carlos Garcia Campos. 7 8 All position:fixed elements didn't show in WinCairo WebKit2 since 9 r240862 which turns acceleratedCompositingEnabled on for WebKit2. 10 WinCairo WebKit2 doesn't have accelerated compositing support yet. 11 Let's do the same with GTK port. 12 13 * WebProcess/WebPage/WebPage.cpp: 14 (WebKit::WebPage::updatePreferences): Conditioned out the code 15 enabling acceleratedCompositingEnabled for PLATFORM(WIN). 16 1 17 2019-06-03 Carlos Garcia Campos <cgarcia@igalia.com> 2 18 -
trunk/Source/WebKit/WebProcess/WebPage/WebPage.cpp
r245902 r246032 3520 3520 Settings& settings = m_page->settings(); 3521 3521 3522 #if !PLATFORM(GTK) 3522 #if !PLATFORM(GTK) && !PLATFORM(WIN) 3523 3523 if (!settings.acceleratedCompositingEnabled()) { 3524 3524 RELEASE_LOG_IF_ALLOWED("%p - WebPage - acceleratedCompositingEnabled setting was false. WebKit cannot function in this mode; changing setting to true", this);
Note:
See TracChangeset
for help on using the changeset viewer.