| 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 25 matching lines...) Expand all Loading... |
| 36 #include "core/rendering/RenderEmbeddedObject.h" | 36 #include "core/rendering/RenderEmbeddedObject.h" |
| 37 #include "core/rendering/RenderWidget.h" | 37 #include "core/rendering/RenderWidget.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 ScriptWrappable::init(this); | |
| 47 } | 46 } |
| 48 | 47 |
| 49 PassRefPtrWillBeRawPtr<HTMLEmbedElement> HTMLEmbedElement::create(Document& docu
ment, bool createdByParser) | 48 PassRefPtrWillBeRawPtr<HTMLEmbedElement> HTMLEmbedElement::create(Document& docu
ment, bool createdByParser) |
| 50 { | 49 { |
| 51 RefPtrWillBeRawPtr<HTMLEmbedElement> element = adoptRefWillBeNoop(new HTMLEm
bedElement(document, createdByParser)); | 50 RefPtrWillBeRawPtr<HTMLEmbedElement> element = adoptRefWillBeNoop(new HTMLEm
bedElement(document, createdByParser)); |
| 52 element->ensureUserAgentShadowRoot(); | 51 element->ensureUserAgentShadowRoot(); |
| 53 return element.release(); | 52 return element.release(); |
| 54 } | 53 } |
| 55 | 54 |
| 56 static inline RenderWidget* findWidgetRenderer(const Node* n) | 55 static inline RenderWidget* findWidgetRenderer(const Node* n) |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 { | 191 { |
| 193 // http://www.whatwg.org/specs/web-apps/current-work/#exposed | 192 // http://www.whatwg.org/specs/web-apps/current-work/#exposed |
| 194 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ | 193 for (HTMLObjectElement* object = Traversal<HTMLObjectElement>::firstAncestor
(*this); object; object = Traversal<HTMLObjectElement>::firstAncestor(*object))
{ |
| 195 if (object->isExposed()) | 194 if (object->isExposed()) |
| 196 return false; | 195 return false; |
| 197 } | 196 } |
| 198 return true; | 197 return true; |
| 199 } | 198 } |
| 200 | 199 |
| 201 } | 200 } |
| OLD | NEW |