| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2009 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 { | 112 { |
| 113 return m_contentFrame && HTMLElement::isKeyboardFocusable(); | 113 return m_contentFrame && HTMLElement::isKeyboardFocusable(); |
| 114 } | 114 } |
| 115 | 115 |
| 116 SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionState& es) const | 116 SVGDocument* HTMLFrameOwnerElement::getSVGDocument(ExceptionState& es) const |
| 117 { | 117 { |
| 118 Document* doc = contentDocument(); | 118 Document* doc = contentDocument(); |
| 119 if (doc && doc->isSVGDocument()) | 119 if (doc && doc->isSVGDocument()) |
| 120 return toSVGDocument(doc); | 120 return toSVGDocument(doc); |
| 121 // Spec: http://www.w3.org/TR/SVG/struct.html#InterfaceGetSVGDocument | 121 // Spec: http://www.w3.org/TR/SVG/struct.html#InterfaceGetSVGDocument |
| 122 es.throwDOMException(NotSupportedError); | 122 es.throwUninformativeAndGenericDOMException(NotSupportedError); |
| 123 return 0; | 123 return 0; |
| 124 } | 124 } |
| 125 | 125 |
| 126 bool HTMLFrameOwnerElement::loadOrRedirectSubframe(const KURL& url, const Atomic
String& frameName, bool lockBackForwardList) | 126 bool HTMLFrameOwnerElement::loadOrRedirectSubframe(const KURL& url, const Atomic
String& frameName, bool lockBackForwardList) |
| 127 { | 127 { |
| 128 RefPtr<Frame> parentFrame = document().frame(); | 128 RefPtr<Frame> parentFrame = document().frame(); |
| 129 if (contentFrame()) { | 129 if (contentFrame()) { |
| 130 contentFrame()->navigationScheduler()->scheduleLocationChange(document()
.securityOrigin(), url.string(), parentFrame->loader()->outgoingReferrer(), lock
BackForwardList); | 130 contentFrame()->navigationScheduler()->scheduleLocationChange(document()
.securityOrigin(), url.string(), parentFrame->loader()->outgoingReferrer(), lock
BackForwardList); |
| 131 return true; | 131 return true; |
| 132 } | 132 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 // FIXME: In this case the Frame will have finished loading before | 169 // FIXME: In this case the Frame will have finished loading before |
| 170 // it's being added to the child list. It would be a good idea to | 170 // it's being added to the child list. It would be a good idea to |
| 171 // create the child first, then invoke the loader separately. | 171 // create the child first, then invoke the loader separately. |
| 172 if (childFrame->loader()->state() == FrameStateComplete && !childFrame->load
er()->policyDocumentLoader()) | 172 if (childFrame->loader()->state() == FrameStateComplete && !childFrame->load
er()->policyDocumentLoader()) |
| 173 childFrame->loader()->checkCompleted(); | 173 childFrame->loader()->checkCompleted(); |
| 174 return true; | 174 return true; |
| 175 } | 175 } |
| 176 | 176 |
| 177 | 177 |
| 178 } // namespace WebCore | 178 } // namespace WebCore |
| OLD | NEW |