Sandboxes
Setting used to restrict the abilities that potentially
untrusted resources have.
using System;
namespace AngleSharp.Dom
{
[Flags]
public enum Sandboxes : ushort
{
None = 0,
Navigation = 1,
AuxiliaryNavigation = 2,
TopLevelNavigation = 4,
Plugins = 8,
Origin = 16,
Forms = 32,
PointerLock = 64,
Scripts = 128,
AutomaticFeatures = 256,
Fullscreen = 512,
DocumentDomain = 1024
}
}