Ejemplo n.º 1
0
 public Deleted() : base("del")
 {
     NestedElements = new List <HTMLElement>();
     Cite           = new HTMLFieldAttribute("cite");
     DateTime       = new HTMLFieldAttribute("datetime");
     InitAttributes();
 }
Ejemplo n.º 2
0
 public Canvas() : base("canvas")
 {
     this.NestedElements = new List <HTMLElement>();
     this.Width          = new HTMLFieldAttribute("width");
     this.Height         = new HTMLFieldAttribute("height");
     this.InitAttributes();
 }
Ejemplo n.º 3
0
 public OptionGroup() : base("optgroup")
 {
     Disabled       = new HTMLBooleanAttribute("disabled");
     Label          = new HTMLFieldAttribute("label");
     NestedElements = new List <HTMLElement>();
     InitAttributes();
 }
Ejemplo n.º 4
0
        public Param() : base("param")
        {
            Name  = new HTMLFieldAttribute("name");
            Value = new HTMLFieldAttribute("value");

            this.InitAttributes();
        }
Ejemplo n.º 5
0
 public Label() : base("label")
 {
     For            = new HTMLFieldAttribute("for");
     Form           = new HTMLFieldAttribute("form");
     NestedElements = new List <HTMLElement>();
     InitAttributes();
 }
Ejemplo n.º 6
0
        public Base() : base("base")
        {
            HREF   = new HTMLFieldAttribute("href");
            Target = new HTMLFieldAttribute("target");

            this.InitAttributes();
        }
Ejemplo n.º 7
0
 public FieldSet() : base("fieldset")
 {
     Disabled       = new HTMLBooleanAttribute("disabled");
     Form           = new HTMLFieldAttribute("form");
     Name           = new HTMLFieldAttribute("name");
     NestedElements = new List <HTMLElement>();
     InitAttributes();
 }
Ejemplo n.º 8
0
 public Output() : base("output")
 {
     For            = new HTMLFieldAttribute("for");
     Form           = new HTMLFieldAttribute("form");
     Name           = new HTMLFieldAttribute("name");
     NestedElements = new List <HTMLElement>();
     InitAttributes();
 }
Ejemplo n.º 9
0
        public Map() : base("map")
        {
            Name = new HTMLFieldAttribute("name");

            NestedElements = new List <HTMLElement>();

            this.InitAttributes();
        }
Ejemplo n.º 10
0
 public Track() : base("track")
 {
     Default    = new HTMLBooleanAttribute("default");
     Kind       = new HTMLFieldAttribute("kind");
     Label      = new HTMLFieldAttribute("src");
     SourceLang = new HTMLFieldAttribute("srclang");
     this.InitAttributes();
 }
Ejemplo n.º 11
0
 public TableData() : base("td")
 {
     this.NestedElements = new List <HTMLElement>();
     this.ColumnSpan     = new HTMLFieldAttribute("colspan");
     this.Headers        = new HTMLFieldAttribute("headers");
     this.RowSpan        = new HTMLFieldAttribute("rowspan");
     this.InitAttributes();
 }
Ejemplo n.º 12
0
        public Progress() : base("progress")
        {
            NestedElements = new List <HTMLElement>();
            Max            = new HTMLFieldAttribute("max");
            Value          = new HTMLFieldAttribute("value");

            InitAttributes();
        }
Ejemplo n.º 13
0
        public Meta() : base("meta")
        {
            CharSet   = new HTMLFieldAttribute("charset");
            Content   = new HTMLFieldAttribute("content");
            HTTPEquiv = new HTMLFieldAttribute("httpequiv");
            Name      = new HTMLFieldAttribute("name");

            this.InitAttributes();
        }
Ejemplo n.º 14
0
        public Embed() : base("embed")
        {
            Height = new HTMLFieldAttribute("height");
            Width  = new HTMLFieldAttribute("width");
            Type   = new HTMLFieldAttribute("type");
            Source = new HTMLFieldAttribute("src");

            this.InitAttributes();
        }
Ejemplo n.º 15
0
 public MediaSource() : base("source")
 {
     Media     = new HTMLFieldAttribute("media");
     Sizes     = new HTMLFieldAttribute("sizes");
     Source    = new HTMLFieldAttribute("src");
     SourceSet = new HTMLFieldAttribute("srcset");
     Type      = new HTMLFieldAttribute("type");
     this.InitAttributes();
 }
Ejemplo n.º 16
0
        public Style() : base("style")
        {
            Type  = new HTMLFieldAttribute("type");
            Media = new HTMLFieldAttribute("media");

            NestedElements = new List <HTMLElement>();

            InitAttributes();
        }
Ejemplo n.º 17
0
        public Option() : base("option")
        {
            Disabled       = new HTMLBooleanAttribute("disabled");
            Label          = new HTMLFieldAttribute("label");
            Selected       = new HTMLBooleanAttribute("selected");
            Value          = new HTMLFieldAttribute("value");
            NestedElements = new List <HTMLElement>();

            InitAttributes();
        }
Ejemplo n.º 18
0
 public Meter() : base("meter")
 {
     Form           = new HTMLFieldAttribute("form");
     High           = new HTMLFieldAttribute("high");
     Low            = new HTMLFieldAttribute("low");
     Max            = new HTMLFieldAttribute("max");
     Min            = new HTMLFieldAttribute("min");
     Optimum        = new HTMLFieldAttribute("optimum");
     Value          = new HTMLFieldAttribute("value");
     NestedElements = new List <HTMLElement>();
     InitAttributes();
 }
Ejemplo n.º 19
0
        public TableHeader() : base("th")
        {
            this.NestedElements = new List <HTMLElement>();

            this.Abbreviation = new HTMLFieldAttribute("abbr");
            this.ColumnSpan   = new HTMLFieldAttribute("colspan");
            this.Headers      = new HTMLFieldAttribute("headers");
            this.RowSpan      = new HTMLFieldAttribute("rowspan");
            this.Scope        = new HTMLFieldAttribute("scope");

            this.InitAttributes();
        }
Ejemplo n.º 20
0
        public Script() : base("script")
        {
            Async   = new HTMLFieldAttribute("async");
            CharSet = new HTMLFieldAttribute("charset");
            Defer   = new HTMLFieldAttribute("defer");
            Source  = new HTMLFieldAttribute("src");
            Type    = new HTMLFieldAttribute("type");

            NestedElements = new List <HTMLElement>();

            InitAttributes();
        }
Ejemplo n.º 21
0
        public Link() : base("link")
        {
            CrossOrigin    = new HTMLFieldAttribute("crossorigin");
            HREF           = new HTMLFieldAttribute("href");
            HREFLang       = new HTMLFieldAttribute("hreflang");
            Media          = new HTMLFieldAttribute("media");
            ReferrerPolicy = new HTMLFieldAttribute("referrerpolicy");
            Rel            = new HTMLFieldAttribute("rel");
            Sizes          = new HTMLFieldAttribute("sizes");
            Type           = new HTMLFieldAttribute("type");

            InitAttributes();
        }
Ejemplo n.º 22
0
        public Audio() : base("audio")
        {
            NestedElements = new List <HTMLElement>();

            AutoPlay = new HTMLBooleanAttribute("autoplay");
            Loop     = new HTMLBooleanAttribute("loop");
            Controls = new HTMLBooleanAttribute("controls");
            Muted    = new HTMLBooleanAttribute("muted");

            PreLoad = new HTMLFieldAttribute("preload");
            Source  = new HTMLFieldAttribute("src");

            this.InitAttributes();
        }
Ejemplo n.º 23
0
        public Select() : base("select")
        {
            AutoFocus = new HTMLBooleanAttribute("autofocus");
            Disabled  = new HTMLBooleanAttribute("disabled");
            Form      = new HTMLFieldAttribute("form");
            Multiple  = new HTMLBooleanAttribute("multiple");
            Name      = new HTMLFieldAttribute("name");
            Required  = new HTMLBooleanAttribute("required");
            Size      = new HTMLFieldAttribute("size");

            NestedElements = new List <HTMLElement>();

            InitAttributes();
        }
Ejemplo n.º 24
0
        public Area() : base("area")
        {
            Alt      = new HTMLFieldAttribute("alt");
            Coords   = new HTMLFieldAttribute("coords");
            Download = new HTMLFieldAttribute("download");
            HREF     = new HTMLFieldAttribute("href");
            HREFLang = new HTMLFieldAttribute("hreflang");
            Media    = new HTMLFieldAttribute("media");
            Rel      = new HTMLFieldAttribute("rel");
            Shape    = new HTMLFieldAttribute("shape");
            Target   = new HTMLFieldAttribute("target");
            Type     = new HTMLFieldAttribute("type");

            this.InitAttributes();
        }
Ejemplo n.º 25
0
        public Object() : base("object")
        {
            Data          = new HTMLFieldAttribute("data");
            Form          = new HTMLFieldAttribute("form");
            Name          = new HTMLFieldAttribute("name");
            Height        = new HTMLFieldAttribute("height");
            Width         = new HTMLFieldAttribute("width");
            Type          = new HTMLFieldAttribute("type");
            TypeMustMatch = new HTMLFieldAttribute("typemustmatch");
            UseMap        = new HTMLFieldAttribute("usemap");

            NestedElements = new List <HTMLElement>();

            this.InitAttributes();
        }
Ejemplo n.º 26
0
        public InlineFrame() : base("iframe")
        {
            NestedElements      = new List <HTMLElement>();
            Allow               = new HTMLFieldAttribute("allow");
            AllowFullscreen     = new HTMLFieldAttribute("allowfullscreen");
            AllowPaymentRequest = new HTMLFieldAttribute("allowpaymentrequest");
            Height              = new HTMLFieldAttribute("height");
            Width               = new HTMLFieldAttribute("width");
            Name           = new HTMLFieldAttribute("name");
            ReferrerPolicy = new HTMLFieldAttribute("referrerpolicy");
            Sandbox        = new HTMLFieldAttribute("sandbox");
            Source         = new HTMLFieldAttribute("src");
            SourceDoc      = new HTMLFieldAttribute("srcdoc");

            this.InitAttributes();
        }
Ejemplo n.º 27
0
        public HyperLink() : base("a")
        {
            NestedElements = new List <HTMLElement>();

            Download       = new HTMLFieldAttribute("download");
            HREF           = new HTMLFieldAttribute("href");
            HREFLang       = new HTMLFieldAttribute("hreflang");
            Media          = new HTMLFieldAttribute("media");
            Ping           = new HTMLFieldAttribute("ping");
            ReferrerPolicy = new HTMLFieldAttribute("referrerpolicy");
            Rel            = new HTMLFieldAttribute("rel");
            Target         = new HTMLFieldAttribute("target");
            Type           = new HTMLFieldAttribute("type");

            InitAttributes();
        }
Ejemplo n.º 28
0
        public Form() : base("form")
        {
            this.AcceptCharset = new HTMLFieldAttribute("accept-charset");
            this.Action        = new HTMLFieldAttribute("action");
            this.AutoComplete  = new HTMLFieldAttribute("autocomplete");
            this.EncType       = new HTMLFieldAttribute("enctype");
            this.Method        = new HTMLFieldAttribute("method");
            this.Name          = new HTMLFieldAttribute("name");
            this.NoValidate    = new HTMLFieldAttribute("novalidate");
            this.Rel           = new HTMLFieldAttribute("rel");
            this.Target        = new HTMLFieldAttribute("target");

            this.NestedElements = new List <HTMLElement>();

            this.InitAttributes();
        }
Ejemplo n.º 29
0
        public Video() : base("video")
        {
            NestedElements = new List <HTMLElement>();

            AutoPlay = new HTMLBooleanAttribute("autoplay");
            Controls = new HTMLBooleanAttribute("controls");
            Loop     = new HTMLBooleanAttribute("loop");
            Muted    = new HTMLBooleanAttribute("muted");

            Height  = new HTMLFieldAttribute("height");
            Width   = new HTMLFieldAttribute("width");
            Source  = new HTMLFieldAttribute("src");
            Preload = new HTMLFieldAttribute("preload");
            Poster  = new HTMLFieldAttribute("poster");

            this.InitAttributes();
        }
Ejemplo n.º 30
0
        public Image() : base("img")
        {
            Alt             = new HTMLFieldAttribute("alt");
            CrossOrigin     = new HTMLFieldAttribute("crossorigin");
            Height          = new HTMLFieldAttribute("height");
            Width           = new HTMLFieldAttribute("width");
            LongDescription = new HTMLFieldAttribute("longdesc");
            ReferrerPolicy  = new HTMLFieldAttribute("referrerpolicy");
            Sizes           = new HTMLFieldAttribute("sizes");
            Source          = new HTMLFieldAttribute("src");
            SourceSet       = new HTMLFieldAttribute("srcset");
            UseMap          = new HTMLFieldAttribute("usemap");

            IsMap = new HTMLBooleanAttribute("ismap");

            this.InitAttributes();
        }