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 30 matching lines...) Expand all Loading... |
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->ensureClosedShadowRoot(); |
52 return element.release(); | 52 return element.release(); |
53 } | 53 } |
54 | 54 |
55 static inline LayoutPart* 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()->isLayoutPart()) | 60 if (n && n->renderer() && n->renderer()->isLayoutPart()) |
61 return toLayoutPart(n->renderer()); | 61 return toLayoutPart(n->renderer()); |
(...skipping 128 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 |