Wizzi schema js

Element Tag Super Flags
module module
Description
The root element of the js schema.  
Attributes
Name Tag Type Default Inherited Flags Description
kind kind string jsfile
restrict
jsfile
jsfile nodejs
nodejs react
react es6
ecma ecma string es5
restrict
es5
es5 es6
no_strict no_strict boolean false
Relations
Name Role Cardinality Inherited Flags Description
resource resources one-to-many
statement statements one-to-many
Methods
Signature Statements
wzinitialize
if this.kind === 'react' || this.kind === 'es6';
set this.wzModelState = ctx.modelState || {};
Element Tag Super Flags
resource resource
Description
A known resource (a javascript source), stored in a repository,   that must be included in the generated artifact.  
Element Tag Super Flags
statement +
Description
A generic code statement; the node wzName will be emitted as is.   The indentation will depend to the node depth.   Inside an html tag means a text node without line feed  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many
Element Tag Super Flags
statementmultiline ++ statement
Description
Inside an html tag means a text node preceded by a line feed  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
comment # statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
commentmultiline ## statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xvar var statement
Description
ittf:   var i   var i = 0   var f_alpha   function   param p   var obj_beta   { |   @ name stefi   js:   var i;   var i = 0;   var alpha = function(p) {   ...   };   var obj_beta = { name: 'stefi' };  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
decl decl statement
Description
ittf:   var i   decl x = 0   decl a   {   js:   var i, x = 0, a = {};  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xconst const statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xlet let statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
jsObject { statement
Description
ittf:   {   @ name 'stefi'   @ birth 1957   @ friends   [   {   @ name 'mario'   @ birth 1957   {   @ name 'arturo'   @ birth 1955   @ age   function   return new Date().year() - birth    
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
jsArray [ statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
jsPropertyOrValue @ statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
jsonStatementTree jst statement
Description
The wzName contains a stringified node tree of statements  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
require require statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
ximport import statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xexport export statement
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many
statement statements one-to-many statement
Methods
Signature Statements
getParams
var ret = [];
foreach item in this.params;
return ret;
wzInitialize
log 'wzInitialize', this.wzName;
var tokens = this.wzName.split(' ');
if tokens.length > 1;
if this.__function;
Element Tag Super Flags
block block statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
set set statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xdelete delete statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xif if statement
Description
ittf:   if a === b   elif a === c   else   js:   if ( a === b ) {   }   else if ( a === c ) {   }   else {   }  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
elif elif statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xelse else statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xfor for statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
foreach foreach statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
backeach backeach statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xbreak break statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xcontinue continue statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
label label statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xwhile while statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xdo do statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xswitch switch statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xcase case statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xdefault default statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xtry try statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xcatch catch statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xfinally finally statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xthrow throw statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xfunction function statement
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many
statement statements one-to-many statement
Methods
Signature Statements
getParams
var ret = [];
foreach item in this.params;
return ret;
Element Tag Super Flags
arrowfunction => xfunction
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many xfunction
statement statements one-to-many statement
Element Tag Super Flags
xreturn return statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xclass class statement
Description
A javascript class  
Attributes
Name Tag Type Default Inherited Flags Description
super super string
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Methods
Signature Statements
findCtor
return _.find(this.statements, function(item) { return item.wzElement === 'ctor' });
wzInitialize
set ctx.modelState = ctx.modelState || {};
set ctx.modelState.hasClasses = true;
var tokens = this.wzName.split(':');
if tokens.length == 2;
Element Tag Super Flags
ctor ctor xfunction
Relations
Name Role Cardinality Inherited Flags Description
base bases one-to-many
param params one-to-many xfunction
statement statements one-to-many statement
Methods
Signature Statements
getBaseArgs
var ret = [];
foreach item in this.bases;
return ret;
Element Tag Super Flags
base base xfunction
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many xfunction
statement statements one-to-many statement
Element Tag Super Flags
method m xfunction
Attributes
Name Tag Type Default Inherited Flags Description
static static boolean false
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many xfunction
statement statements one-to-many statement
Element Tag Super Flags
property property xfunction
Attributes
Name Tag Type Default Inherited Flags Description
static static boolean false
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many xfunction
statement statements one-to-many statement
Element Tag Super Flags
iife iife xfunction
Attributes
Name Tag Type Default Inherited Flags Description
unary_prefix unary-prefix string
Relations
Name Role Cardinality Inherited Flags Description
arg args one-to-many
param params one-to-many xfunction
statement statements one-to-many statement
Methods
Signature Statements
getArgs
var ret = [];
foreach item in this.args;
return ret;
Element Tag Super Flags
xnew new statement
Description
ittf:   var h   new Hello   var j   new Hello   function   param p   + ...   js:   var h = new Hello();   var j = new Hello(function(p) { ... });  
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many
statement statements one-to-many statement
Element Tag Super Flags
type type statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
param param
Element Tag Super Flags
arg arg
Element Tag Super Flags
call _ statement
Description
A function call.   ittf:   _ sayHello('stefi', 10)   _ init   {   @ key 0   function   param value   return calc(value)  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
memberCall ._ statement
Description
ittf:   set value   _ init   ._calc   js:   value = init().calc()  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
decoratorCall @_ statement
Description
ittf:   @_ alpha   @ 200   function   return 'a';   js:   @alpha(200, function() { return 'a'; })  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
callOnValue ( statement
Description
ittf:   _ getFunction()   (   @ 'stefi'   js:   getFunction()('stefi')  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
memberAccess . statement
Description
ittf:   set name = obj   . name   js:   name = obj.name  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
memberAccessComputed .[ statement
Description
ittf:   set name = obj   .[ name   js:   name = obj[name]  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
iif iif statement
Description
ittf:   iif a === b   then 0   else 1   js:   ( a === b ) ? 0 : 1  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
test test statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
then then statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
or || statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
and && statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_eq_strict op=== statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_noteq_strict op!== statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_eq op== statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_noteq op!= statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_or op|| statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_and op&& statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_minus op- statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_plus op+ statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_times op* statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_div op/ statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_power op^ statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_mod op% statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_xor op| statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_xand op& statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_gt op> statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_ge op>= statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_lt op< statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
op_le op<= statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
wzIife wz-iife iife
Attributes
Name Tag Type Default Inherited Flags Description
unary_prefix unary-prefix string iife
Relations
Name Role Cardinality Inherited Flags Description
arg args one-to-many iife
param params one-to-many xfunction
statement statements one-to-many statement
Element Tag Super Flags
wzRequire wz-require statement
Attributes
Name Tag Type Default Inherited Flags Description
from from string
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
wzVar wz-var xvar
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
wzFunction wz-function xfunction
Relations
Name Role Cardinality Inherited Flags Description
param params one-to-many xfunction
statement statements one-to-many statement
Element Tag Super Flags
wzClass wz-class xclass
Attributes
Name Tag Type Default Inherited Flags Description
super super string xclass
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
component § statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
reactComponent react component
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
htmlelement < statement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string
autoCorrect autoCorrect string
property property string
itemProp itemProp string
itemScope itemScope string
itemType itemType string
itemRef itemRef string
itemID itemID string
unselectable unselectable string
results results string
autoSave autoSave string
class class string
aria__ aria-* string
data__ data-* string
accept accept string
acceptCharset acceptCharset string
accessKey accessKey string
action action string
allowFullScreen allowFullScreen string
allowTransparency allowTransparency string
alt alt string
async async string
autoComplete autoComplete string
autoFocus autoFocus string
autoPlay autoPlay string
capture capture string
cellPadding cellPadding string
cellSpacing cellSpacing string
charSet charSet string
challenge challenge string
checked checked string
classID classID string
className className string
cols cols string
colSpan colSpan string
content content string
contentEditable contentEditable string
contextMenu contextMenu string
controls controls string
coords coords string
crossOrigin crossOrigin string
data data string
dateTime dateTime string
defer defer string
dir dir string
disabled disabled string
download download string
draggable draggable string
encType encType string
form form string
formAction formAction string
formEncType formEncType string
formMethod formMethod string
formNoValidate formNoValidate string
formTarget formTarget string
frameBorder frameBorder string
headers headers string
height height string
hidden hidden string
high high string
href href string
hrefLang hrefLang string
htmlFor htmlFor string
httpEquiv httpEquiv string
icon icon string
id id string
inputMode inputMode string
keyParams keyParams string
keyType keyType string
_label @label string
lang lang string
list list string
loop loop string
low low string
manifest manifest string
marginHeight marginHeight string
marginWidth marginWidth string
max max string
maxLength maxLength string
media media string
mediaGroup mediaGroup string
method method string
min min string
minLength minLength string
multiple multiple string
muted muted string
name name string
noValidate noValidate string
open open string
optimum optimum string
pattern pattern string
placeholder placeholder string
poster poster string
preload preload string
radioGroup radioGroup string
readOnly readOnly string
rel rel string
required required string
role role string
rows rows string
rowSpan rowSpan string
sandbox sandbox string
scope scope string
scoped scoped string
scrolling scrolling string
seamless seamless string
selected selected string
shape shape string
size size string
sizes sizes string
_span @span string
spellCheck spellCheck string
src src string
srcDoc srcDoc string
srcSet srcSet string
start start string
step step string
style style string
_summary @summary string
tabIndex tabIndex string
target target string
title title string
type type string
useMap useMap string
value value string
width width string
wmode wmode string
wrap wrap string
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
doctype doctype htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
a a htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
abbr abbr htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
address address htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
area area htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
article article htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
aside aside htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
audio audio htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
b b htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
base base htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
bdi bdi htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
bdo bdo htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
big big htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
blockquote blockquote htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
body body htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
br br htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
button button htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
canvas canvas htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
caption caption htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
cite cite htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
code code htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
col col htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
colgroup colgroup htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
data data htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
datalist datalist htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
dd dd htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
del del htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
details details htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
dfn dfn htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
dialog dialog htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
div div htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
dl dl htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
dt dt htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
em em htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
embed embed htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
fieldset fieldset htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
figcaption figcaption htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
figure figure htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
form form htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
h1 h1 htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
h2 h2 htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
h3 h3 htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
h4 h4 htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
h5 h5 htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
h6 h6 htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
head head htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
header header htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
hr hr htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
html html htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
i i htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
iframe iframe htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
img img htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
input input htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
ins ins htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
kbd kbd htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
keygen keygen htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
label label htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
legend legend htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
li li htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
main main htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
map map htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
mark mark htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
menu menu htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
menuitem menuitem htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
meta meta htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
meter meter htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
nav nav htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
noscript noscript htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
object object htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
ol ol htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
optgroup optgroup htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
option option htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
output output htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
p p htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
param param htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
picture picture htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
pre pre htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
progress progress htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
q q htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
rp rp htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
rt rt htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
ruby ruby htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
s s htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
samp samp htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
script script htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
section section htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
select select htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
small small htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
source source htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
span span htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
strong strong htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
_style @style htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
sub sub htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
summary summary htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
sup sup htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
table table htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
tbody tbody htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
td td htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
textarea textarea htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
tfoot tfoot htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
th th htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
thead thead htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
time time htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
title title htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
tr tr htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
track track htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
u u htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
ul ul htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
xvar var htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
video video htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
wbr wbr htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
js js htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
css css htmlelement
Attributes
Name Tag Type Default Inherited Flags Description
autoCapitalize autoCapitalize string htmlelement
autoCorrect autoCorrect string htmlelement
property property string htmlelement
itemProp itemProp string htmlelement
itemScope itemScope string htmlelement
itemType itemType string htmlelement
itemRef itemRef string htmlelement
itemID itemID string htmlelement
unselectable unselectable string htmlelement
results results string htmlelement
autoSave autoSave string htmlelement
class class string htmlelement
aria__ aria-* string htmlelement
data__ data-* string htmlelement
accept accept string htmlelement
acceptCharset acceptCharset string htmlelement
accessKey accessKey string htmlelement
action action string htmlelement
allowFullScreen allowFullScreen string htmlelement
allowTransparency allowTransparency string htmlelement
alt alt string htmlelement
async async string htmlelement
autoComplete autoComplete string htmlelement
autoFocus autoFocus string htmlelement
autoPlay autoPlay string htmlelement
capture capture string htmlelement
cellPadding cellPadding string htmlelement
cellSpacing cellSpacing string htmlelement
charSet charSet string htmlelement
challenge challenge string htmlelement
checked checked string htmlelement
classID classID string htmlelement
className className string htmlelement
cols cols string htmlelement
colSpan colSpan string htmlelement
content content string htmlelement
contentEditable contentEditable string htmlelement
contextMenu contextMenu string htmlelement
controls controls string htmlelement
coords coords string htmlelement
crossOrigin crossOrigin string htmlelement
data data string htmlelement
dateTime dateTime string htmlelement
defer defer string htmlelement
dir dir string htmlelement
disabled disabled string htmlelement
download download string htmlelement
draggable draggable string htmlelement
encType encType string htmlelement
form form string htmlelement
formAction formAction string htmlelement
formEncType formEncType string htmlelement
formMethod formMethod string htmlelement
formNoValidate formNoValidate string htmlelement
formTarget formTarget string htmlelement
frameBorder frameBorder string htmlelement
headers headers string htmlelement
height height string htmlelement
hidden hidden string htmlelement
high high string htmlelement
href href string htmlelement
hrefLang hrefLang string htmlelement
htmlFor htmlFor string htmlelement
httpEquiv httpEquiv string htmlelement
icon icon string htmlelement
id id string htmlelement
inputMode inputMode string htmlelement
keyParams keyParams string htmlelement
keyType keyType string htmlelement
_label @label string htmlelement
lang lang string htmlelement
list list string htmlelement
loop loop string htmlelement
low low string htmlelement
manifest manifest string htmlelement
marginHeight marginHeight string htmlelement
marginWidth marginWidth string htmlelement
max max string htmlelement
maxLength maxLength string htmlelement
media media string htmlelement
mediaGroup mediaGroup string htmlelement
method method string htmlelement
min min string htmlelement
minLength minLength string htmlelement
multiple multiple string htmlelement
muted muted string htmlelement
name name string htmlelement
noValidate noValidate string htmlelement
open open string htmlelement
optimum optimum string htmlelement
pattern pattern string htmlelement
placeholder placeholder string htmlelement
poster poster string htmlelement
preload preload string htmlelement
radioGroup radioGroup string htmlelement
readOnly readOnly string htmlelement
rel rel string htmlelement
required required string htmlelement
role role string htmlelement
rows rows string htmlelement
rowSpan rowSpan string htmlelement
sandbox sandbox string htmlelement
scope scope string htmlelement
scoped scoped string htmlelement
scrolling scrolling string htmlelement
seamless seamless string htmlelement
selected selected string htmlelement
shape shape string htmlelement
size size string htmlelement
sizes sizes string htmlelement
_span @span string htmlelement
spellCheck spellCheck string htmlelement
src src string htmlelement
srcDoc srcDoc string htmlelement
srcSet srcSet string htmlelement
start start string htmlelement
step step string htmlelement
style style string htmlelement
_summary @summary string htmlelement
tabIndex tabIndex string htmlelement
target target string htmlelement
title title string htmlelement
type type string htmlelement
useMap useMap string htmlelement
value value string htmlelement
width width string htmlelement
wmode wmode string htmlelement
wrap wrap string htmlelement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
ready ready statement
Attributes
Name Tag Type Default Inherited Flags Description
kind kind string jquery
restrict
jquery
jquery window
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
tohtml tohtml statement
Attributes
Name Tag Type Default Inherited Flags Description
kind kind string wizzi
restrict
wizzi
wizzi ng create a function   that returns am html string preserving {{ }}, for interpolation use [[ ]]  
that returns am html string preserving {{ }}, for interpolation use [[ ]] dom that returns am html dom tree using jQuery  
that returns am html dom tree using jQuery hb that returns a compiled handlebar template  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
html_f html_f statement
Description
create a function   that returns am html string  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
html_ng html_ng statement
Description
create a function   that returns am html string preserving {{ }}, for interpolation use [[ ]]  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
html_dom html_dom statement
Description
create a function   that returns am html dom tree using jQuery  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
html_hb html_hb statement
Description
create a function   that returns a compiled handlebar template  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
debug debug statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Methods
Signature Statements
_require
_ ctx.require('debug');;
Element Tag Super Flags
assert !! statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
assert_equal !!= statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
chalk chalk statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
log log statement
Description
ittf:   log 'xxx', yyy   js:   console.log( 'xxx', yyy );    
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Methods
Signature Statements
_toJs
_ ctx.w('console.log(' + this.WmtName + ');');
Element Tag Super Flags
warn warn statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
error error statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
inspect log? statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
log_info log-info statement
Description
log.info(...)  
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Methods
Signature Statements
_require
_ ctx.require('log');;
Element Tag Super Flags
describe describe statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
it it statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
itAsync it-async statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
before before statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
beforeAsync before-async statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
beforeEach before-each statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
after after statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
afterAsync after-async statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
afterEach after-each statement
Relations
Name Role Cardinality Inherited Flags Description
statement statements one-to-many statement
Element Tag Super Flags
superagent superagent statement
Relations
Name Role Cardinality Inherited Flags Description
get gets one-to-many
post posts one-to-many
put puts one-to-many
end ends one-to-many
statement statements one-to-many statement
Element Tag Super Flags
get get
Element Tag Super Flags
post post
Element Tag Super Flags
put put
Element Tag Super Flags
end end