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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights | 4 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights |
5 * reserved. | 5 * reserved. |
6 * Copyright (C) 2010 Google Inc. All rights reserved. | 6 * Copyright (C) 2010 Google Inc. All rights reserved. |
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 15 matching lines...) Expand all Loading... |
26 #include "bindings/core/v8/ScriptEventListener.h" | 26 #include "bindings/core/v8/ScriptEventListener.h" |
27 #include "core/CSSPropertyNames.h" | 27 #include "core/CSSPropertyNames.h" |
28 #include "core/HTMLNames.h" | 28 #include "core/HTMLNames.h" |
29 #include "core/MediaTypeNames.h" | 29 #include "core/MediaTypeNames.h" |
30 #include "core/css/MediaQueryMatcher.h" | 30 #include "core/css/MediaQueryMatcher.h" |
31 #include "core/css/MediaValuesDynamic.h" | 31 #include "core/css/MediaValuesDynamic.h" |
32 #include "core/css/parser/SizesAttributeParser.h" | 32 #include "core/css/parser/SizesAttributeParser.h" |
33 #include "core/dom/Attribute.h" | 33 #include "core/dom/Attribute.h" |
34 #include "core/dom/NodeTraversal.h" | 34 #include "core/dom/NodeTraversal.h" |
35 #include "core/dom/shadow/ShadowRoot.h" | 35 #include "core/dom/shadow/ShadowRoot.h" |
36 #include "core/fetch/ImageResourceContent.h" | |
37 #include "core/frame/Deprecation.h" | 36 #include "core/frame/Deprecation.h" |
38 #include "core/frame/ImageBitmap.h" | 37 #include "core/frame/ImageBitmap.h" |
39 #include "core/frame/LocalDOMWindow.h" | 38 #include "core/frame/LocalDOMWindow.h" |
40 #include "core/html/FormAssociated.h" | 39 #include "core/html/FormAssociated.h" |
41 #include "core/html/HTMLAnchorElement.h" | 40 #include "core/html/HTMLAnchorElement.h" |
42 #include "core/html/HTMLCanvasElement.h" | 41 #include "core/html/HTMLCanvasElement.h" |
43 #include "core/html/HTMLFormElement.h" | 42 #include "core/html/HTMLFormElement.h" |
44 #include "core/html/HTMLImageFallbackHelper.h" | 43 #include "core/html/HTMLImageFallbackHelper.h" |
45 #include "core/html/HTMLPictureElement.h" | 44 #include "core/html/HTMLPictureElement.h" |
46 #include "core/html/HTMLSourceElement.h" | 45 #include "core/html/HTMLSourceElement.h" |
47 #include "core/html/parser/HTMLParserIdioms.h" | 46 #include "core/html/parser/HTMLParserIdioms.h" |
48 #include "core/html/parser/HTMLSrcsetParser.h" | 47 #include "core/html/parser/HTMLSrcsetParser.h" |
49 #include "core/imagebitmap/ImageBitmapOptions.h" | 48 #include "core/imagebitmap/ImageBitmapOptions.h" |
50 #include "core/inspector/ConsoleMessage.h" | 49 #include "core/inspector/ConsoleMessage.h" |
51 #include "core/layout/LayoutBlockFlow.h" | 50 #include "core/layout/LayoutBlockFlow.h" |
52 #include "core/layout/LayoutImage.h" | 51 #include "core/layout/LayoutImage.h" |
53 #include "core/layout/api/LayoutImageItem.h" | 52 #include "core/layout/api/LayoutImageItem.h" |
| 53 #include "core/loader/resource/ImageResourceContent.h" |
54 #include "core/page/Page.h" | 54 #include "core/page/Page.h" |
55 #include "core/style/ContentData.h" | 55 #include "core/style/ContentData.h" |
56 #include "core/svg/graphics/SVGImageForContainer.h" | 56 #include "core/svg/graphics/SVGImageForContainer.h" |
57 #include "platform/EventDispatchForbiddenScope.h" | 57 #include "platform/EventDispatchForbiddenScope.h" |
58 #include "platform/network/mime/ContentType.h" | 58 #include "platform/network/mime/ContentType.h" |
59 #include "platform/network/mime/MIMETypeRegistry.h" | 59 #include "platform/network/mime/MIMETypeRegistry.h" |
60 #include "platform/weborigin/SecurityPolicy.h" | 60 #include "platform/weborigin/SecurityPolicy.h" |
61 | 61 |
62 namespace blink { | 62 namespace blink { |
63 | 63 |
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 void HTMLImageElement::associateWith(HTMLFormElement* form) { | 911 void HTMLImageElement::associateWith(HTMLFormElement* form) { |
912 if (form && form->isConnected()) { | 912 if (form && form->isConnected()) { |
913 m_form = form; | 913 m_form = form; |
914 m_formWasSetByParser = true; | 914 m_formWasSetByParser = true; |
915 m_form->associate(*this); | 915 m_form->associate(*this); |
916 m_form->didAssociateByParser(); | 916 m_form->didAssociateByParser(); |
917 } | 917 } |
918 }; | 918 }; |
919 | 919 |
920 } // namespace blink | 920 } // namespace blink |
OLD | NEW |