| 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) 2000 Stefan Schimanski (1Stein@gmx.de) | 4 * (C) 2000 Stefan Schimanski (1Stein@gmx.de) |
| 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights
reserved. | 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. All rights
reserved. |
| 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 6 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "ExceptionCode.h" | 33 #include "ExceptionCode.h" |
| 34 #include "FormDataList.h" | 34 #include "FormDataList.h" |
| 35 #include "Frame.h" | 35 #include "Frame.h" |
| 36 #include "HTMLDocument.h" | 36 #include "HTMLDocument.h" |
| 37 #include "HTMLFormElement.h" | 37 #include "HTMLFormElement.h" |
| 38 #include "HTMLImageLoader.h" | 38 #include "HTMLImageLoader.h" |
| 39 #include "HTMLMetaElement.h" | 39 #include "HTMLMetaElement.h" |
| 40 #include "HTMLNames.h" | 40 #include "HTMLNames.h" |
| 41 #include "HTMLParamElement.h" | 41 #include "HTMLParamElement.h" |
| 42 #include "HTMLParserIdioms.h" | 42 #include "HTMLParserIdioms.h" |
| 43 #include "MIMETypeRegistry.h" | |
| 44 #include "NodeList.h" | 43 #include "NodeList.h" |
| 45 #include "NodeTraversal.h" | 44 #include "NodeTraversal.h" |
| 46 #include "Page.h" | 45 #include "Page.h" |
| 47 #include "PluginViewBase.h" | 46 #include "PluginViewBase.h" |
| 48 #include "RenderEmbeddedObject.h" | 47 #include "RenderEmbeddedObject.h" |
| 49 #include "RenderImage.h" | 48 #include "RenderImage.h" |
| 50 #include "RenderWidget.h" | 49 #include "RenderWidget.h" |
| 51 #include "ScriptEventListener.h" | 50 #include "ScriptEventListener.h" |
| 52 #include "Settings.h" | 51 #include "Settings.h" |
| 53 #include "Text.h" | 52 #include "Text.h" |
| 54 #include "Widget.h" | 53 #include "core/platform/MIMETypeRegistry.h" |
| 54 #include "core/platform/Widget.h" |
| 55 | 55 |
| 56 namespace WebCore { | 56 namespace WebCore { |
| 57 | 57 |
| 58 using namespace HTMLNames; | 58 using namespace HTMLNames; |
| 59 | 59 |
| 60 inline HTMLObjectElement::HTMLObjectElement(const QualifiedName& tagName, Docume
nt* document, HTMLFormElement* form, bool createdByParser) | 60 inline HTMLObjectElement::HTMLObjectElement(const QualifiedName& tagName, Docume
nt* document, HTMLFormElement* form, bool createdByParser) |
| 61 : HTMLPlugInImageElement(tagName, document, createdByParser, ShouldNotPrefer
PlugInsForImages) | 61 : HTMLPlugInImageElement(tagName, document, createdByParser, ShouldNotPrefer
PlugInsForImages) |
| 62 , m_docNamedItem(true) | 62 , m_docNamedItem(true) |
| 63 , m_useFallbackContent(false) | 63 , m_useFallbackContent(false) |
| 64 { | 64 { |
| (...skipping 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 501 encoding.appendData(name(), value); | 501 encoding.appendData(name(), value); |
| 502 return true; | 502 return true; |
| 503 } | 503 } |
| 504 | 504 |
| 505 HTMLFormElement* HTMLObjectElement::virtualForm() const | 505 HTMLFormElement* HTMLObjectElement::virtualForm() const |
| 506 { | 506 { |
| 507 return FormAssociatedElement::form(); | 507 return FormAssociatedElement::form(); |
| 508 } | 508 } |
| 509 | 509 |
| 510 } | 510 } |
| OLD | NEW |