1/*
2 * Copyright (C) 2004-2006 Apple Inc.  All rights reserved.
3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
18 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#import <WebCore/DOMCore.h>
28
29#import <WebCore/DOMBlob.h>
30#import <WebCore/DOMFile.h>
31#import <WebCore/DOMFileList.h>
32#import <WebCore/DOMHTMLAnchorElement.h>
33#import <WebCore/DOMHTMLAppletElement.h>
34#import <WebCore/DOMHTMLAreaElement.h>
35#import <WebCore/DOMHTMLBRElement.h>
36#import <WebCore/DOMHTMLBaseElement.h>
37#import <WebCore/DOMHTMLBaseFontElement.h>
38#import <WebCore/DOMHTMLBodyElement.h>
39#import <WebCore/DOMHTMLButtonElement.h>
40#import <WebCore/DOMHTMLCollection.h>
41#import <WebCore/DOMHTMLDListElement.h>
42#import <WebCore/DOMHTMLDirectoryElement.h>
43#import <WebCore/DOMHTMLDivElement.h>
44#import <WebCore/DOMHTMLDocument.h>
45#import <WebCore/DOMHTMLElement.h>
46#import <WebCore/DOMHTMLEmbedElement.h>
47#import <WebCore/DOMHTMLFieldSetElement.h>
48#import <WebCore/DOMHTMLFontElement.h>
49#import <WebCore/DOMHTMLFormElement.h>
50#import <WebCore/DOMHTMLFrameElement.h>
51#import <WebCore/DOMHTMLFrameSetElement.h>
52#import <WebCore/DOMHTMLHRElement.h>
53#import <WebCore/DOMHTMLHeadElement.h>
54#import <WebCore/DOMHTMLHeadingElement.h>
55#import <WebCore/DOMHTMLHtmlElement.h>
56#import <WebCore/DOMHTMLIFrameElement.h>
57#import <WebCore/DOMHTMLImageElement.h>
58#import <WebCore/DOMHTMLInputElement.h>
59#import <WebCore/DOMHTMLLIElement.h>
60#import <WebCore/DOMHTMLLabelElement.h>
61#import <WebCore/DOMHTMLLegendElement.h>
62#import <WebCore/DOMHTMLLinkElement.h>
63#import <WebCore/DOMHTMLMapElement.h>
64#import <WebCore/DOMHTMLMarqueeElement.h>
65#import <WebCore/DOMHTMLMenuElement.h>
66#import <WebCore/DOMHTMLMetaElement.h>
67#import <WebCore/DOMHTMLModElement.h>
68#import <WebCore/DOMHTMLOListElement.h>
69#import <WebCore/DOMHTMLObjectElement.h>
70#import <WebCore/DOMHTMLOptGroupElement.h>
71#import <WebCore/DOMHTMLOptionElement.h>
72#import <WebCore/DOMHTMLOptionsCollection.h>
73#import <WebCore/DOMHTMLParagraphElement.h>
74#import <WebCore/DOMHTMLParamElement.h>
75#import <WebCore/DOMHTMLPreElement.h>
76#import <WebCore/DOMHTMLQuoteElement.h>
77#import <WebCore/DOMHTMLScriptElement.h>
78#import <WebCore/DOMHTMLSelectElement.h>
79#import <WebCore/DOMHTMLStyleElement.h>
80#import <WebCore/DOMHTMLTableCaptionElement.h>
81#import <WebCore/DOMHTMLTableCellElement.h>
82#import <WebCore/DOMHTMLTableColElement.h>
83#import <WebCore/DOMHTMLTableElement.h>
84#import <WebCore/DOMHTMLTableRowElement.h>
85#import <WebCore/DOMHTMLTableSectionElement.h>
86#import <WebCore/DOMHTMLTextAreaElement.h>
87#import <WebCore/DOMHTMLTitleElement.h>
88#import <WebCore/DOMHTMLUListElement.h>
89