| 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 29 matching lines...) Expand all Loading... |
| 40 using namespace HTMLNames; | 40 using namespace HTMLNames; |
| 41 | 41 |
| 42 inline HTMLEmbedElement::HTMLEmbedElement(Document& document, bool createdByPars
er) | 42 inline HTMLEmbedElement::HTMLEmbedElement(Document& document, bool createdByPars
er) |
| 43 : HTMLPlugInElement(embedTag, document, createdByParser, ShouldPreferPlugIns
ForImages) | 43 : HTMLPlugInElement(embedTag, document, createdByParser, ShouldPreferPlugIns
ForImages) |
| 44 { | 44 { |
| 45 ScriptWrappable::init(this); | 45 ScriptWrappable::init(this); |
| 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 = adoptRefWillBeRefCountedGarba
geCollected(new HTMLEmbedElement(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 RenderWidget* findWidgetRenderer(const Node* n) | 55 static inline RenderWidget* findWidgetRenderer(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()->isWidget()) | 60 if (n && n->renderer() && n->renderer()->isWidget()) |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 { | 199 { |
| 200 // http://www.whatwg.org/specs/web-apps/current-work/#exposed | 200 // http://www.whatwg.org/specs/web-apps/current-work/#exposed |
| 201 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ | 201 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ |
| 202 if (object->isExposed()) | 202 if (object->isExposed()) |
| 203 return false; | 203 return false; |
| 204 } | 204 } |
| 205 return true; | 205 return true; |
| 206 } | 206 } |
| 207 | 207 |
| 208 } | 208 } |
| OLD | NEW |