| 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 28 matching lines...) Expand all Loading... |
| 39 #include "core/html/HTMLFormElement.h" | 39 #include "core/html/HTMLFormElement.h" |
| 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/text/PlatformLocale.h" | |
| 50 #include "platform/NotImplemented.h" | 49 #include "platform/NotImplemented.h" |
| 50 #include "platform/text/PlatformLocale.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 2758 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2819 ASSERT(m_isAttached); | 2819 ASSERT(m_isAttached); |
| 2820 // Warning, this may detach the parser. Do not do anything else after this. | 2820 // Warning, this may detach the parser. Do not do anything else after this. |
| 2821 m_tree.finishedParsing(); | 2821 m_tree.finishedParsing(); |
| 2822 } | 2822 } |
| 2823 | 2823 |
| 2824 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) | 2824 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) |
| 2825 { | 2825 { |
| 2826 } | 2826 } |
| 2827 | 2827 |
| 2828 } // namespace WebCore | 2828 } // namespace WebCore |
| OLD | NEW |