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 29 matching lines...) Expand all Loading... |
40 #include "core/html/HTMLHtmlElement.h" | 40 #include "core/html/HTMLHtmlElement.h" |
41 #include "core/html/HTMLOptGroupElement.h" | 41 #include "core/html/HTMLOptGroupElement.h" |
42 #include "core/html/HTMLTableElement.h" | 42 #include "core/html/HTMLTableElement.h" |
43 #include "core/html/parser/AtomicHTMLToken.h" | 43 #include "core/html/parser/AtomicHTMLToken.h" |
44 #include "core/html/parser/HTMLDocumentParser.h" | 44 #include "core/html/parser/HTMLDocumentParser.h" |
45 #include "core/html/parser/HTMLParserIdioms.h" | 45 #include "core/html/parser/HTMLParserIdioms.h" |
46 #include "core/html/parser/HTMLStackItem.h" | 46 #include "core/html/parser/HTMLStackItem.h" |
47 #include "core/html/parser/HTMLToken.h" | 47 #include "core/html/parser/HTMLToken.h" |
48 #include "core/html/parser/HTMLTokenizer.h" | 48 #include "core/html/parser/HTMLTokenizer.h" |
49 #include "core/platform/LocalizedStrings.h" | 49 #include "core/platform/LocalizedStrings.h" |
50 #include "core/platform/NotImplemented.h" | 50 #include "platform/NotImplemented.h" |
51 #include "wtf/MainThread.h" | 51 #include "wtf/MainThread.h" |
52 #include "wtf/unicode/CharacterNames.h" | 52 #include "wtf/unicode/CharacterNames.h" |
53 | 53 |
54 namespace WebCore { | 54 namespace WebCore { |
55 | 55 |
56 using namespace HTMLNames; | 56 using namespace HTMLNames; |
57 | 57 |
58 namespace { | 58 namespace { |
59 | 59 |
60 inline bool isHTMLSpaceOrReplacementCharacter(UChar character) | 60 inline bool isHTMLSpaceOrReplacementCharacter(UChar character) |
(...skipping 2750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2811 ASSERT(m_isAttached); | 2811 ASSERT(m_isAttached); |
2812 // Warning, this may detach the parser. Do not do anything else after this. | 2812 // Warning, this may detach the parser. Do not do anything else after this. |
2813 m_tree.finishedParsing(); | 2813 m_tree.finishedParsing(); |
2814 } | 2814 } |
2815 | 2815 |
2816 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) | 2816 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) |
2817 { | 2817 { |
2818 } | 2818 } |
2819 | 2819 |
2820 } | 2820 } |
OLD | NEW |