| 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 27 matching lines...) Expand all Loading... |
| 38 #include "bindings/v8/ScriptController.h" | 38 #include "bindings/v8/ScriptController.h" |
| 39 #include "bindings/v8/ScriptEventListener.h" | 39 #include "bindings/v8/ScriptEventListener.h" |
| 40 #include "core/accessibility/AXObjectCache.h" | 40 #include "core/accessibility/AXObjectCache.h" |
| 41 #include "core/css/CSSParser.h" | 41 #include "core/css/CSSParser.h" |
| 42 #include "core/css/CSSStyleDeclaration.h" | 42 #include "core/css/CSSStyleDeclaration.h" |
| 43 #include "core/css/CSSStyleSheet.h" | 43 #include "core/css/CSSStyleSheet.h" |
| 44 #include "core/css/FontLoader.h" | 44 #include "core/css/FontLoader.h" |
| 45 #include "core/css/MediaQueryList.h" | 45 #include "core/css/MediaQueryList.h" |
| 46 #include "core/css/MediaQueryMatcher.h" | 46 #include "core/css/MediaQueryMatcher.h" |
| 47 #include "core/css/StylePropertySet.h" | 47 #include "core/css/StylePropertySet.h" |
| 48 #include "core/css/StyleResolver.h" | |
| 49 #include "core/css/StyleSheetContents.h" | 48 #include "core/css/StyleSheetContents.h" |
| 50 #include "core/css/StyleSheetList.h" | 49 #include "core/css/StyleSheetList.h" |
| 50 #include "core/css/resolver/StyleResolver.h" |
| 51 #include "core/dom/Attr.h" | 51 #include "core/dom/Attr.h" |
| 52 #include "core/dom/Attribute.h" | 52 #include "core/dom/Attribute.h" |
| 53 #include "core/dom/CDATASection.h" | 53 #include "core/dom/CDATASection.h" |
| 54 #include "core/dom/Comment.h" | 54 #include "core/dom/Comment.h" |
| 55 #include "core/dom/ContextFeatures.h" | 55 #include "core/dom/ContextFeatures.h" |
| 56 #include "core/dom/CustomElementConstructor.h" | 56 #include "core/dom/CustomElementConstructor.h" |
| 57 #include "core/dom/CustomElementRegistry.h" | 57 #include "core/dom/CustomElementRegistry.h" |
| 58 #include "core/dom/DOMImplementation.h" | 58 #include "core/dom/DOMImplementation.h" |
| 59 #include "core/dom/DOMNamedFlowCollection.h" | 59 #include "core/dom/DOMNamedFlowCollection.h" |
| 60 #include "core/dom/DocumentEventQueue.h" | 60 #include "core/dom/DocumentEventQueue.h" |
| (...skipping 5582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5643 return; | 5643 return; |
| 5644 | 5644 |
| 5645 Vector<RefPtr<Element> > associatedFormControls; | 5645 Vector<RefPtr<Element> > associatedFormControls; |
| 5646 copyToVector(m_associatedFormControls, associatedFormControls); | 5646 copyToVector(m_associatedFormControls, associatedFormControls); |
| 5647 | 5647 |
| 5648 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm
Controls); | 5648 frame()->page()->chrome()->client()->didAssociateFormControls(associatedForm
Controls); |
| 5649 m_associatedFormControls.clear(); | 5649 m_associatedFormControls.clear(); |
| 5650 } | 5650 } |
| 5651 | 5651 |
| 5652 } // namespace WebCore | 5652 } // namespace WebCore |
| OLD | NEW |