1#
2# AFL dictionary for HTML parsers (tags only)
3# -------------------------------------------
4#
5# A basic collection of HTML tags likely to matter to HTML parsers. Does *not*
6# include any attributes or attribute values.
7#
8# Created by Michal Zalewski <lcamtuf@google.com>
9#
10
11tag_a="<a>"
12tag_abbr="<abbr>"
13tag_acronym="<acronym>"
14tag_address="<address>"
15tag_annotation_xml="<annotation-xml>"
16tag_applet="<applet>"
17tag_area="<area>"
18tag_article="<article>"
19tag_aside="<aside>"
20tag_audio="<audio>"
21tag_b="<b>"
22tag_base="<base>"
23tag_basefont="<basefont>"
24tag_bdi="<bdi>"
25tag_bdo="<bdo>"
26tag_bgsound="<bgsound>"
27tag_big="<big>"
28tag_blink="<blink>"
29tag_blockquote="<blockquote>"
30tag_body="<body>"
31tag_br="<br>"
32tag_button="<button>"
33tag_canvas="<canvas>"
34tag_caption="<caption>"
35tag_center="<center>"
36tag_cite="<cite>"
37tag_code="<code>"
38tag_col="<col>"
39tag_colgroup="<colgroup>"
40tag_data="<data>"
41tag_datalist="<datalist>"
42tag_dd="<dd>"
43tag_del="<del>"
44tag_desc="<desc>"
45tag_details="<details>"
46tag_dfn="<dfn>"
47tag_dir="<dir>"
48tag_div="<div>"
49tag_dl="<dl>"
50tag_dt="<dt>"
51tag_em="<em>"
52tag_embed="<embed>"
53tag_fieldset="<fieldset>"
54tag_figcaption="<figcaption>"
55tag_figure="<figure>"
56tag_font="<font>"
57tag_footer="<footer>"
58tag_foreignobject="<foreignobject>"
59tag_form="<form>"
60tag_frame="<frame>"
61tag_frameset="<frameset>"
62tag_h1="<h1>"
63tag_h2="<h2>"
64tag_h3="<h3>"
65tag_h4="<h4>"
66tag_h5="<h5>"
67tag_h6="<h6>"
68tag_head="<head>"
69tag_header="<header>"
70tag_hgroup="<hgroup>"
71tag_hr="<hr>"
72tag_html="<html>"
73tag_i="<i>"
74tag_iframe="<iframe>"
75tag_image="<image>"
76tag_img="<img>"
77tag_input="<input>"
78tag_ins="<ins>"
79tag_isindex="<isindex>"
80tag_kbd="<kbd>"
81tag_keygen="<keygen>"
82tag_label="<label>"
83tag_legend="<legend>"
84tag_li="<li>"
85tag_link="<link>"
86tag_listing="<listing>"
87tag_main="<main>"
88tag_malignmark="<malignmark>"
89tag_map="<map>"
90tag_mark="<mark>"
91tag_marquee="<marquee>"
92tag_math="<math>"
93tag_menu="<menu>"
94tag_menuitem="<menuitem>"
95tag_meta="<meta>"
96tag_meter="<meter>"
97tag_mglyph="<mglyph>"
98tag_mi="<mi>"
99tag_mn="<mn>"
100tag_mo="<mo>"
101tag_ms="<ms>"
102tag_mtext="<mtext>"
103tag_multicol="<multicol>"
104tag_nav="<nav>"
105tag_nextid="<nextid>"
106tag_nobr="<nobr>"
107tag_noembed="<noembed>"
108tag_noframes="<noframes>"
109tag_noscript="<noscript>"
110tag_object="<object>"
111tag_ol="<ol>"
112tag_optgroup="<optgroup>"
113tag_option="<option>"
114tag_output="<output>"
115tag_p="<p>"
116tag_param="<param>"
117tag_plaintext="<plaintext>"
118tag_pre="<pre>"
119tag_progress="<progress>"
120tag_q="<q>"
121tag_rb="<rb>"
122tag_rp="<rp>"
123tag_rt="<rt>"
124tag_rtc="<rtc>"
125tag_ruby="<ruby>"
126tag_s="<s>"
127tag_samp="<samp>"
128tag_script="<script>"
129tag_section="<section>"
130tag_select="<select>"
131tag_small="<small>"
132tag_source="<source>"
133tag_spacer="<spacer>"
134tag_span="<span>"
135tag_strike="<strike>"
136tag_strong="<strong>"
137tag_style="<style>"
138tag_sub="<sub>"
139tag_summary="<summary>"
140tag_sup="<sup>"
141tag_svg="<svg>"
142tag_table="<table>"
143tag_tbody="<tbody>"
144tag_td="<td>"
145tag_template="<template>"
146tag_textarea="<textarea>"
147tag_tfoot="<tfoot>"
148tag_th="<th>"
149tag_thead="<thead>"
150tag_time="<time>"
151tag_title="<title>"
152tag_tr="<tr>"
153tag_track="<track>"
154tag_tt="<tt>"
155tag_u="<u>"
156tag_ul="<ul>"
157tag_var="<var>"
158tag_video="<video>"
159tag_wbr="<wbr>"
160tag_xmp="<xmp>"
161