| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All r
ights reserved. |
| 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
| 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009, 2011, 2012 Google Inc. All rights reserved. |
| 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 9 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
| 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. | 10 * Copyright (C) Research In Motion Limited 2010-2011. All rights reserved. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * | 21 * |
| 22 * You should have received a copy of the GNU Library General Public License | 22 * You should have received a copy of the GNU Library General Public License |
| 23 * along with this library; see the file COPYING.LIB. If not, write to | 23 * along with this library; see the file COPYING.LIB. If not, write to |
| 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 24 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 25 * Boston, MA 02110-1301, USA. | 25 * Boston, MA 02110-1301, USA. |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "config.h" | 28 #include "config.h" |
| 29 #include "Document.h" | 29 #include "Document.h" |
| 30 | 30 |
| 31 #include "AnimationController.h" | |
| 32 #include "Attr.h" | 31 #include "Attr.h" |
| 33 #include "Attribute.h" | 32 #include "Attribute.h" |
| 34 #include "CDATASection.h" | 33 #include "CDATASection.h" |
| 35 #include "CSSParser.h" | 34 #include "CSSParser.h" |
| 36 #include "CSSStyleDeclaration.h" | 35 #include "CSSStyleDeclaration.h" |
| 37 #include "CSSStyleSheet.h" | 36 #include "CSSStyleSheet.h" |
| 38 #include "CSSValueKeywords.h" | 37 #include "CSSValueKeywords.h" |
| 39 #include "Chrome.h" | 38 #include "Chrome.h" |
| 40 #include "ChromeClient.h" | 39 #include "ChromeClient.h" |
| 41 #include "Comment.h" | 40 #include "Comment.h" |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 #include "RegisteredEventListener.h" | 116 #include "RegisteredEventListener.h" |
| 118 #include "RequestAnimationFrameCallback.h" | 117 #include "RequestAnimationFrameCallback.h" |
| 119 #include "RuntimeEnabledFeatures.h" | 118 #include "RuntimeEnabledFeatures.h" |
| 120 #include "ScopedEventQueue.h" | 119 #include "ScopedEventQueue.h" |
| 121 #include "ScriptCallStack.h" | 120 #include "ScriptCallStack.h" |
| 122 #include "ScriptController.h" | 121 #include "ScriptController.h" |
| 123 #include "ScriptElement.h" | 122 #include "ScriptElement.h" |
| 124 #include "ScriptEventListener.h" | 123 #include "ScriptEventListener.h" |
| 125 #include "ScriptRunner.h" | 124 #include "ScriptRunner.h" |
| 126 #include "ScriptedAnimationController.h" | 125 #include "ScriptedAnimationController.h" |
| 127 #include "ScrollingCoordinator.h" | |
| 128 #include "SecurityOrigin.h" | 126 #include "SecurityOrigin.h" |
| 129 #include "SecurityPolicy.h" | 127 #include "SecurityPolicy.h" |
| 130 #include "SelectorQuery.h" | 128 #include "SelectorQuery.h" |
| 131 #include "Settings.h" | 129 #include "Settings.h" |
| 132 #include "ShadowRoot.h" | 130 #include "ShadowRoot.h" |
| 133 #include "StaticHashSetNodeList.h" | 131 #include "StaticHashSetNodeList.h" |
| 134 #include "StylePropertySet.h" | 132 #include "StylePropertySet.h" |
| 135 #include "StyleResolver.h" | 133 #include "StyleResolver.h" |
| 136 #include "StyleSheetContents.h" | 134 #include "StyleSheetContents.h" |
| 137 #include "StyleSheetList.h" | 135 #include "StyleSheetList.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 158 #include "core/loader/CookieJar.h" | 156 #include "core/loader/CookieJar.h" |
| 159 #include "core/loader/DocumentLoader.h" | 157 #include "core/loader/DocumentLoader.h" |
| 160 #include "core/loader/FrameLoader.h" | 158 #include "core/loader/FrameLoader.h" |
| 161 #include "core/loader/FrameLoaderClient.h" | 159 #include "core/loader/FrameLoaderClient.h" |
| 162 #include "core/loader/ImageLoader.h" | 160 #include "core/loader/ImageLoader.h" |
| 163 #include "core/loader/Prerenderer.h" | 161 #include "core/loader/Prerenderer.h" |
| 164 #include "core/loader/ResourceLoader.h" | 162 #include "core/loader/ResourceLoader.h" |
| 165 #include "core/loader/TextResourceDecoder.h" | 163 #include "core/loader/TextResourceDecoder.h" |
| 166 #include "core/loader/cache/CachedCSSStyleSheet.h" | 164 #include "core/loader/cache/CachedCSSStyleSheet.h" |
| 167 #include "core/loader/cache/CachedResourceLoader.h" | 165 #include "core/loader/cache/CachedResourceLoader.h" |
| 166 #include "core/page/animation/AnimationController.h" |
| 167 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 168 #include "core/platform/DateComponents.h" | 168 #include "core/platform/DateComponents.h" |
| 169 #include "core/platform/HistogramSupport.h" | 169 #include "core/platform/HistogramSupport.h" |
| 170 #include "core/platform/Language.h" | 170 #include "core/platform/Language.h" |
| 171 #include "core/platform/Logging.h" | 171 #include "core/platform/Logging.h" |
| 172 #include "core/platform/PlatformKeyboardEvent.h" | 172 #include "core/platform/PlatformKeyboardEvent.h" |
| 173 #include "core/platform/SchemeRegistry.h" | 173 #include "core/platform/SchemeRegistry.h" |
| 174 #include "core/platform/Timer.h" | 174 #include "core/platform/Timer.h" |
| 175 #include "core/platform/chromium/TraceEvent.h" | 175 #include "core/platform/chromium/TraceEvent.h" |
| 176 #include "core/platform/network/HTTPParsers.h" | 176 #include "core/platform/network/HTTPParsers.h" |
| 177 #include "core/platform/text/PlatformLocale.h" | 177 #include "core/platform/text/PlatformLocale.h" |
| (...skipping 5606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5784 return; | 5784 return; |
| 5785 | 5785 |
| 5786 Vector<RefPtr<Element> > associatedFormControls; | 5786 Vector<RefPtr<Element> > associatedFormControls; |
| 5787 copyToVector(m_associatedFormControls, associatedFormControls); | 5787 copyToVector(m_associatedFormControls, associatedFormControls); |
| 5788 | 5788 |
| 5789 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm
Controls); | 5789 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm
Controls); |
| 5790 m_associatedFormControls.clear(); | 5790 m_associatedFormControls.clear(); |
| 5791 } | 5791 } |
| 5792 | 5792 |
| 5793 } // namespace WebCore | 5793 } // namespace WebCore |
| OLD | NEW |