| 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 18 matching lines...) Expand all Loading... |
| 29 | 29 |
| 30 #include "HTMLNames.h" | 30 #include "HTMLNames.h" |
| 31 #include "MathMLNames.h" | 31 #include "MathMLNames.h" |
| 32 #include "SVGNames.h" | 32 #include "SVGNames.h" |
| 33 #include "XLinkNames.h" | 33 #include "XLinkNames.h" |
| 34 #include "XMLNSNames.h" | 34 #include "XMLNSNames.h" |
| 35 #include "XMLNames.h" | 35 #include "XMLNames.h" |
| 36 #include "core/dom/DocumentFragment.h" | 36 #include "core/dom/DocumentFragment.h" |
| 37 #include "core/html/HTMLDocument.h" | 37 #include "core/html/HTMLDocument.h" |
| 38 #include "core/html/HTMLFormElement.h" | 38 #include "core/html/HTMLFormElement.h" |
| 39 #include "core/html/HTMLTemplateElement.h" | |
| 40 #include "core/html/parser/AtomicHTMLToken.h" | 39 #include "core/html/parser/AtomicHTMLToken.h" |
| 41 #include "core/html/parser/HTMLDocumentParser.h" | 40 #include "core/html/parser/HTMLDocumentParser.h" |
| 42 #include "core/html/parser/HTMLParserIdioms.h" | 41 #include "core/html/parser/HTMLParserIdioms.h" |
| 43 #include "core/html/parser/HTMLStackItem.h" | 42 #include "core/html/parser/HTMLStackItem.h" |
| 44 #include "core/html/parser/HTMLToken.h" | 43 #include "core/html/parser/HTMLToken.h" |
| 45 #include "core/html/parser/HTMLTokenizer.h" | 44 #include "core/html/parser/HTMLTokenizer.h" |
| 46 #include "core/platform/LocalizedStrings.h" | 45 #include "core/platform/LocalizedStrings.h" |
| 47 #include "core/platform/NotImplemented.h" | 46 #include "core/platform/NotImplemented.h" |
| 48 #include <wtf/MainThread.h> | 47 #include <wtf/MainThread.h> |
| 49 #include <wtf/unicode/CharacterNames.h> | 48 #include <wtf/unicode/CharacterNames.h> |
| (...skipping 2751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2801 ASSERT(m_isAttached); | 2800 ASSERT(m_isAttached); |
| 2802 // Warning, this may detach the parser. Do not do anything else after this. | 2801 // Warning, this may detach the parser. Do not do anything else after this. |
| 2803 m_tree.finishedParsing(); | 2802 m_tree.finishedParsing(); |
| 2804 } | 2803 } |
| 2805 | 2804 |
| 2806 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) | 2805 void HTMLTreeBuilder::parseError(AtomicHTMLToken*) |
| 2807 { | 2806 { |
| 2808 } | 2807 } |
| 2809 | 2808 |
| 2810 } | 2809 } |
| OLD | NEW |