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 "Comment.h" | |
32 #include "DocumentFragment.h" | |
33 #include "DocumentType.h" | |
34 #include "Element.h" | |
35 #include "HTMLDocument.h" | 31 #include "HTMLDocument.h" |
36 #include "HTMLElementFactory.h" | 32 #include "HTMLElementFactory.h" |
37 #include "HTMLFormElement.h" | 33 #include "HTMLFormElement.h" |
38 #include "HTMLHtmlElement.h" | 34 #include "HTMLHtmlElement.h" |
39 #include "HTMLNames.h" | 35 #include "HTMLNames.h" |
40 #include "HTMLParserIdioms.h" | 36 #include "HTMLParserIdioms.h" |
41 #include "HTMLPlugInElement.h" | 37 #include "HTMLPlugInElement.h" |
42 #include "HTMLScriptElement.h" | 38 #include "HTMLScriptElement.h" |
43 #include "HTMLStackItem.h" | 39 #include "HTMLStackItem.h" |
44 #include "HTMLTemplateElement.h" | 40 #include "HTMLTemplateElement.h" |
45 #include "HTMLToken.h" | 41 #include "HTMLToken.h" |
46 #include "HTMLTokenizer.h" | 42 #include "HTMLTokenizer.h" |
47 #include "Text.h" | 43 #include "core/dom/Comment.h" |
| 44 #include "core/dom/DocumentFragment.h" |
| 45 #include "core/dom/DocumentType.h" |
| 46 #include "core/dom/Element.h" |
| 47 #include "core/dom/Text.h" |
48 #include "core/loader/FrameLoader.h" | 48 #include "core/loader/FrameLoader.h" |
49 #include "core/loader/FrameLoaderClient.h" | 49 #include "core/loader/FrameLoaderClient.h" |
50 #include "core/page/Frame.h" | 50 #include "core/page/Frame.h" |
51 #include "core/page/Settings.h" | 51 #include "core/page/Settings.h" |
52 #include "core/platform/LocalizedStrings.h" | 52 #include "core/platform/LocalizedStrings.h" |
53 #include "core/platform/NotImplemented.h" | 53 #include "core/platform/NotImplemented.h" |
54 #include <wtf/UnusedParam.h> | 54 #include <wtf/UnusedParam.h> |
55 | 55 |
56 namespace WebCore { | 56 namespace WebCore { |
57 | 57 |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 { | 648 { |
649 HTMLConstructionSiteTask task; | 649 HTMLConstructionSiteTask task; |
650 findFosterSite(task); | 650 findFosterSite(task); |
651 task.child = node; | 651 task.child = node; |
652 ASSERT(task.parent); | 652 ASSERT(task.parent); |
653 | 653 |
654 m_attachmentQueue.append(task); | 654 m_attachmentQueue.append(task); |
655 } | 655 } |
656 | 656 |
657 } | 657 } |
OLD | NEW |