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, 2008, 2009, 2011 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2011 Apple Inc. All rights reserv
ed. |
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 15 matching lines...) Expand all Loading... |
26 | 26 |
27 #include "core/CSSPropertyNames.h" | 27 #include "core/CSSPropertyNames.h" |
28 #include "core/HTMLNames.h" | 28 #include "core/HTMLNames.h" |
29 #include "core/dom/Attribute.h" | 29 #include "core/dom/Attribute.h" |
30 #include "core/dom/ElementTraversal.h" | 30 #include "core/dom/ElementTraversal.h" |
31 #include "core/dom/shadow/ShadowRoot.h" | 31 #include "core/dom/shadow/ShadowRoot.h" |
32 #include "core/html/HTMLImageLoader.h" | 32 #include "core/html/HTMLImageLoader.h" |
33 #include "core/html/HTMLObjectElement.h" | 33 #include "core/html/HTMLObjectElement.h" |
34 #include "core/html/PluginDocument.h" | 34 #include "core/html/PluginDocument.h" |
35 #include "core/html/parser/HTMLParserIdioms.h" | 35 #include "core/html/parser/HTMLParserIdioms.h" |
| 36 #include "core/layout/LayoutPart.h" |
36 #include "core/rendering/RenderEmbeddedObject.h" | 37 #include "core/rendering/RenderEmbeddedObject.h" |
37 #include "core/rendering/RenderPart.h" | |
38 | 38 |
39 namespace blink { | 39 namespace blink { |
40 | 40 |
41 using namespace HTMLNames; | 41 using namespace HTMLNames; |
42 | 42 |
43 inline HTMLEmbedElement::HTMLEmbedElement(Document& document, bool createdByPars
er) | 43 inline HTMLEmbedElement::HTMLEmbedElement(Document& document, bool createdByPars
er) |
44 : HTMLPlugInElement(embedTag, document, createdByParser, ShouldPreferPlugIns
ForImages) | 44 : HTMLPlugInElement(embedTag, document, createdByParser, ShouldPreferPlugIns
ForImages) |
45 { | 45 { |
46 } | 46 } |
47 | 47 |
48 PassRefPtrWillBeRawPtr<HTMLEmbedElement> HTMLEmbedElement::create(Document& docu
ment, bool createdByParser) | 48 PassRefPtrWillBeRawPtr<HTMLEmbedElement> HTMLEmbedElement::create(Document& docu
ment, bool createdByParser) |
49 { | 49 { |
50 RefPtrWillBeRawPtr<HTMLEmbedElement> element = adoptRefWillBeNoop(new HTMLEm
bedElement(document, createdByParser)); | 50 RefPtrWillBeRawPtr<HTMLEmbedElement> element = adoptRefWillBeNoop(new HTMLEm
bedElement(document, createdByParser)); |
51 element->ensureUserAgentShadowRoot(); | 51 element->ensureUserAgentShadowRoot(); |
52 return element.release(); | 52 return element.release(); |
53 } | 53 } |
54 | 54 |
55 static inline RenderPart* findPartRenderer(const Node* n) | 55 static inline LayoutPart* findPartRenderer(const Node* n) |
56 { | 56 { |
57 if (!n->renderer()) | 57 if (!n->renderer()) |
58 n = Traversal<HTMLObjectElement>::firstAncestor(*n); | 58 n = Traversal<HTMLObjectElement>::firstAncestor(*n); |
59 | 59 |
60 if (n && n->renderer() && n->renderer()->isRenderPart()) | 60 if (n && n->renderer() && n->renderer()->isLayoutPart()) |
61 return toRenderPart(n->renderer()); | 61 return toLayoutPart(n->renderer()); |
62 | 62 |
63 return nullptr; | 63 return nullptr; |
64 } | 64 } |
65 | 65 |
66 RenderPart* HTMLEmbedElement::existingRenderPart() const | 66 LayoutPart* HTMLEmbedElement::existingLayoutPart() const |
67 { | 67 { |
68 return findPartRenderer(this); | 68 return findPartRenderer(this); |
69 } | 69 } |
70 | 70 |
71 bool HTMLEmbedElement::isPresentationAttribute(const QualifiedName& name) const | 71 bool HTMLEmbedElement::isPresentationAttribute(const QualifiedName& name) const |
72 { | 72 { |
73 if (name == hiddenAttr) | 73 if (name == hiddenAttr) |
74 return true; | 74 return true; |
75 return HTMLPlugInElement::isPresentationAttribute(name); | 75 return HTMLPlugInElement::isPresentationAttribute(name); |
76 } | 76 } |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 { | 190 { |
191 // http://www.whatwg.org/specs/web-apps/current-work/#exposed | 191 // http://www.whatwg.org/specs/web-apps/current-work/#exposed |
192 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ | 192 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ |
193 if (object->isExposed()) | 193 if (object->isExposed()) |
194 return false; | 194 return false; |
195 } | 195 } |
196 return true; | 196 return true; |
197 } | 197 } |
198 | 198 |
199 } | 199 } |
OLD | NEW |