| 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 Simon Hausmann (hausmann@kde.org) | 4 * (C) 2000 Simon Hausmann (hausmann@kde.org) |
| 5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 6 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. | 6 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved. |
| 7 * Copyright (C) 2009 Ericsson AB. All rights reserved. | 7 * Copyright (C) 2009 Ericsson AB. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 } else { | 105 } else { |
| 106 HTMLFrameElementBase::parseAttribute(name, value); | 106 HTMLFrameElementBase::parseAttribute(name, value); |
| 107 } | 107 } |
| 108 } | 108 } |
| 109 | 109 |
| 110 bool HTMLIFrameElement::rendererIsNeeded(const RenderStyle& style) | 110 bool HTMLIFrameElement::rendererIsNeeded(const RenderStyle& style) |
| 111 { | 111 { |
| 112 return isURLAllowed() && HTMLElement::rendererIsNeeded(style); | 112 return isURLAllowed() && HTMLElement::rendererIsNeeded(style); |
| 113 } | 113 } |
| 114 | 114 |
| 115 RenderObject* HTMLIFrameElement::createRenderer(RenderStyle*) | 115 LayoutObject* HTMLIFrameElement::createRenderer(RenderStyle*) |
| 116 { | 116 { |
| 117 return new RenderIFrame(this); | 117 return new RenderIFrame(this); |
| 118 } | 118 } |
| 119 | 119 |
| 120 Node::InsertionNotificationRequest HTMLIFrameElement::insertedInto(ContainerNode
* insertionPoint) | 120 Node::InsertionNotificationRequest HTMLIFrameElement::insertedInto(ContainerNode
* insertionPoint) |
| 121 { | 121 { |
| 122 if (insertionPoint->inDocument()) { | 122 if (insertionPoint->inDocument()) { |
| 123 V8DOMActivityLogger* activityLogger = V8DOMActivityLogger::currentActivi
tyLoggerIfIsolatedWorld(); | 123 V8DOMActivityLogger* activityLogger = V8DOMActivityLogger::currentActivi
tyLoggerIfIsolatedWorld(); |
| 124 if (activityLogger) { | 124 if (activityLogger) { |
| 125 Vector<String> argv; | 125 Vector<String> argv; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 140 if (insertionPoint->inDocument() && document().isHTMLDocument() && !insertio
nPoint->isInShadowTree()) | 140 if (insertionPoint->inDocument() && document().isHTMLDocument() && !insertio
nPoint->isInShadowTree()) |
| 141 toHTMLDocument(document()).removeExtraNamedItem(m_name); | 141 toHTMLDocument(document()).removeExtraNamedItem(m_name); |
| 142 } | 142 } |
| 143 | 143 |
| 144 bool HTMLIFrameElement::isInteractiveContent() const | 144 bool HTMLIFrameElement::isInteractiveContent() const |
| 145 { | 145 { |
| 146 return true; | 146 return true; |
| 147 } | 147 } |
| 148 | 148 |
| 149 } | 149 } |
| OLD | NEW |