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 20 matching lines...) Expand all Loading... |
31 #include "DocumentFragment.h" | 31 #include "DocumentFragment.h" |
32 #include "HTMLDocument.h" | 32 #include "HTMLDocument.h" |
33 #include "HTMLDocumentParser.h" | 33 #include "HTMLDocumentParser.h" |
34 #include "HTMLFormElement.h" | 34 #include "HTMLFormElement.h" |
35 #include "HTMLNames.h" | 35 #include "HTMLNames.h" |
36 #include "HTMLParserIdioms.h" | 36 #include "HTMLParserIdioms.h" |
37 #include "HTMLStackItem.h" | 37 #include "HTMLStackItem.h" |
38 #include "HTMLTemplateElement.h" | 38 #include "HTMLTemplateElement.h" |
39 #include "HTMLToken.h" | 39 #include "HTMLToken.h" |
40 #include "HTMLTokenizer.h" | 40 #include "HTMLTokenizer.h" |
41 #include "LocalizedStrings.h" | |
42 #include "MathMLNames.h" | 41 #include "MathMLNames.h" |
43 #include "NotImplemented.h" | |
44 #include "SVGNames.h" | 42 #include "SVGNames.h" |
45 #include "XLinkNames.h" | 43 #include "XLinkNames.h" |
46 #include "XMLNSNames.h" | 44 #include "XMLNSNames.h" |
47 #include "XMLNames.h" | 45 #include "XMLNames.h" |
| 46 #include "core/platform/LocalizedStrings.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 { |
56 | 56 |
57 inline bool isHTMLSpaceOrReplacementCharacter(UChar character) | 57 inline bool isHTMLSpaceOrReplacementCharacter(UChar character) |
(...skipping 2770 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 |