HTMLFrameOwnerElement
Represents the base class for frame owned elements.
namespace AngleSharp.DOM.Html
{
public abstract class HTMLFrameOwnerElement : HTMLElement
{
public bool CanContainRangeEndpoint { get; set; }
public string Location { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public int MarginWidth { get; set; }
public int MarginHeight { get; set; }
internal HTMLFrameOwnerElement()
{
}
}
}