New test.
[mono.git] / mcs / class / System.Web / System.Web.UI / HtmlTextWriterTag.cs
1 // 
2 // System.Web.UI.HtmlTextWriterTag
3 //
4 // Author:
5 //        Ben Maurer <bmaurer@novell.com>
6 //
7 // (c) 2005 Novell
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 namespace System.Web.UI {
30 #if !NET_2_0
31         [Serializable]
32 #endif
33         public enum HtmlTextWriterTag {
34                 Unknown,
35                 A,
36                 Acronym,
37                 Address,
38                 Area,
39                 B,
40                 Base,
41                 Basefont,
42                 Bdo,
43                 Bgsound,
44                 Big,
45                 Blockquote,
46                 Body,
47                 Br,
48                 Button,
49                 Caption,
50                 Center,
51                 Cite,
52                 Code,
53                 Col,
54                 Colgroup,
55                 Dd,
56                 Del,
57                 Dfn,
58                 Dir,
59                 Div,
60                 Dl,
61                 Dt,
62                 Em,
63                 Embed,
64                 Fieldset,
65                 Font,
66                 Form,
67                 Frame,
68                 Frameset,
69                 H1,
70                 H2,
71                 H3,
72                 H4,
73                 H5,
74                 H6,
75                 Head,
76                 Hr,
77                 Html,
78                 I,
79                 Iframe,
80                 Img,
81                 Input,
82                 Ins,
83                 Isindex,
84                 Kbd,
85                 Label,
86                 Legend,
87                 Li,
88                 Link,
89                 Map,
90                 Marquee,
91                 Menu,
92                 Meta,
93                 Nobr,
94                 Noframes,
95                 Noscript,
96                 Object,
97                 Ol,
98                 Option,
99                 P,
100                 Param,
101                 Pre,
102                 Q,
103                 Rt,
104                 Ruby,
105                 S,
106                 Samp,
107                 Script,
108                 Select,
109                 Small,
110                 Span,
111                 Strike,
112                 Strong,
113                 Style,
114                 Sub,
115                 Sup,
116                 Table,
117                 Tbody,
118                 Td,
119                 Textarea,
120                 Tfoot,
121                 Th,
122                 Thead,
123                 Title,
124                 Tr,
125                 Tt,
126                 U,
127                 Ul,
128                 Var,
129                 Wbr,
130                 Xml
131         }
132 }