// Copyright © 2022 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp.WinForms.Handler
{
///
/// Popup Creation options
///
public enum PopupCreation
{
///
/// Popup creation is cancled, no further action will occur
///
Cancel = 0,
///
/// Popup creation will continue as per normal.
///
Continue,
///
/// Popup creation will continue with javascript disabled.
///
ContinueWithJavascriptDisabled
}
}