We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fda692 commit 21d4415Copy full SHA for 21d4415
CefSharp.Core.Runtime/CefSettingsBase.h
@@ -49,6 +49,11 @@ namespace CefSharp
49
_cefCustomSchemes = gcnew List<CefCustomScheme^>();
50
_cefCommandLineArgs = gcnew CommandLineArgDictionary();
51
52
+ //Disable site isolation trials as this causes problems with frames
53
+ //being hosted in different render processes.
54
+ //https://github.com/cefsharp/CefSharp/issues/2967
55
+ _cefCommandLineArgs->Add("disable-site-isolation-trials");
56
+
57
//Disable Windows Spellchecker as CEF doesn't support yet
58
//https://bitbucket.org/chromiumembedded/cef/issues/3055/windows-spell-checker-not-working-add
59
_cefCommandLineArgs->Add("disable-features", "CalculateNativeWinOcclusion,WinUseBrowserSpellChecker");
0 commit comments