OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. | 2 * Copyright (C) 2010 Google, Inc. All Rights Reserved. |
3 * Copyright (C) 2011 Apple Inc. All rights reserved. | 3 * Copyright (C) 2011 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 10 matching lines...) Expand all Loading... |
21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 21 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 22 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 24 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
25 */ | 25 */ |
26 | 26 |
27 #include "config.h" | 27 #include "config.h" |
28 #include "HTMLTreeBuilder.h" | 28 #include "HTMLTreeBuilder.h" |
29 | 29 |
30 #include "AtomicHTMLToken.h" | 30 #include "AtomicHTMLToken.h" |
31 #include "DocumentFragment.h" | |
32 #include "HTMLDocument.h" | 31 #include "HTMLDocument.h" |
33 #include "HTMLDocumentParser.h" | 32 #include "HTMLDocumentParser.h" |
34 #include "HTMLFormElement.h" | 33 #include "HTMLFormElement.h" |
35 #include "HTMLNames.h" | 34 #include "HTMLNames.h" |
36 #include "HTMLParserIdioms.h" | 35 #include "HTMLParserIdioms.h" |
37 #include "HTMLStackItem.h" | 36 #include "HTMLStackItem.h" |
38 #include "HTMLTemplateElement.h" | 37 #include "HTMLTemplateElement.h" |
39 #include "HTMLToken.h" | 38 #include "HTMLToken.h" |
40 #include "HTMLTokenizer.h" | 39 #include "HTMLTokenizer.h" |
41 #include "MathMLNames.h" | 40 #include "MathMLNames.h" |
42 #include "SVGNames.h" | 41 #include "SVGNames.h" |
43 #include "XLinkNames.h" | 42 #include "XLinkNames.h" |
44 #include "XMLNSNames.h" | 43 #include "XMLNSNames.h" |
45 #include "XMLNames.h" | 44 #include "XMLNames.h" |
| 45 #include "core/dom/DocumentFragment.h" |
46 #include "core/platform/LocalizedStrings.h" | 46 #include "core/platform/LocalizedStrings.h" |
47 #include "core/platform/NotImplemented.h" | 47 #include "core/platform/NotImplemented.h" |
48 #include <wtf/MainThread.h> | 48 #include <wtf/MainThread.h> |
49 #include <wtf/unicode/CharacterNames.h> | 49 #include <wtf/unicode/CharacterNames.h> |
50 | 50 |
51 namespace WebCore { | 51 namespace WebCore { |
52 | 52 |
53 using namespace HTMLNames; | 53 using namespace HTMLNames; |
54 | 54 |
55 namespace { | 55 namespace { |
(...skipping 2772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2828 ASSERT(m_isAttached); | 2828 ASSERT(m_isAttached); |
2829 // Warning, this may detach the parser. Do not do anything else after this. | 2829 // Warning, this may detach the parser. Do not do anything else after this. |
2830 m_tree.finishedParsing(); | 2830 m_tree.finishedParsing(); |
2831 } | 2831 } |
2832 | 2832 |
2833 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) | 2833 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) |
2834 { | 2834 { |
2835 } | 2835 } |
2836 | 2836 |
2837 } | 2837 } |
OLD | NEW |