panda.doc.html.HTMLElement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
package panda.doc.html;
/**
* Enum of HTML tags.
*/
public enum HTMLElement {
// http://www.w3.org/TR/html4/index/elements.html
a,
abbr,
acronym,
address,
applet,
area,
b,
base,
basefont,
bdo,
big,
blockquote,
body,
br,
button,
caption,
center,
cite,
code,
col,
colgroup,
dd,
del,
dfn,
dir,
div,
dl,
dt,
em,
fieldset,
font,
form,
frame,
frameset,
h1,
h2,
h3,
h4,
h5,
h6,
head,
hr,
html,
i,
iframe,
img,
input,
ins,
isindex,
kbd,
label,
legend,
li,
link,
map,
menu,
meta,
noframes,
noscript,
object,
ol,
optgroup,
option,
p,
param,
pre,
q,
s,
samp,
script,
select,
small,
span,
strike,
strong,
style,
sub,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
title,
tr,
tt,
u,
ul,
var,
// http://dev.w3.org/html5/markup/elements.html
article,
aside,
audio,
bdi,
canvas,
command,
datalist,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
keygen,
mark,
meter,
nav,
output,
progress,
rp,
rt,
ruby,
section,
source,
summary,
time,
track,
video,
wbr,
// netscape
blink,
nobr,
// ie
marquee
}