Module: wine Branch: master Commit: 269f636da74405d1b29081dd5b88eb3319e2c66f URL: https://source.winehq.org/git/wine.git/?a=commit;h=269f636da74405d1b29081dd5...
Author: Arkadiusz Hiler ahiler@codeweavers.com Date: Thu Jun 23 21:24:37 2022 +0300
mshtml: Enable CSS grid layout.
Final Fantasy XIV launcher uses it to show login form next to the news.
Signed-off-by: Arkadiusz Hiler ahiler@codeweavers.com
---
dlls/mshtml/nsembed.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/mshtml/nsembed.c b/dlls/mshtml/nsembed.c index e34861b13fa..8f456b40ef2 100644 --- a/dlls/mshtml/nsembed.c +++ b/dlls/mshtml/nsembed.c @@ -540,6 +540,7 @@ static void set_preferences(void) set_lang(pref); set_bool_pref(pref, "security.warn_entering_secure", FALSE); set_bool_pref(pref, "security.warn_submit_insecure", FALSE); + set_bool_pref(pref, "layout.css.grid.enabled", TRUE); set_int_pref(pref, "layout.spellcheckDefault", 0);
nsIPrefBranch_Release(pref);