module deepmagic.dom.elements.embedded.iframe_element; import deepmagic.dom; class IframeElement : Html5Element!("iframe"){ mixin(ElementConstructorTemplate!()); mixin(AttributeTemplate!(typeof(this), "Src", "src")); mixin(AttributeTemplate!(typeof(this), "SrcDoc", "srcdoc")); mixin(AttributeTemplate!(typeof(this), "Name", "name")); mixin(AttributeTemplate!(typeof(this), "SandBox", "sandbox")); mixin(AttributeTemplate!(typeof(this), "Width", "width")); mixin(AttributeTemplate!(typeof(this), "Height", "height")); }