/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #include "nsCOMPtr.h" #include "nsIContent.h" #include "nsFrameLoader.h" #include "mozilla/AsyncEventDispatcher.h" #include "mozilla/dom/HTMLIFrameElement.h" #include "mozilla/dom/WindowProxyHolder.h" #include "mozilla/dom/XULFrameElement.h" #include "mozilla/dom/XULFrameElementBinding.h" namespace mozilla { namespace dom { NS_IMPL_CYCLE_COLLECTION_CLASS(XULFrameElement) NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN_INHERITED(XULFrameElement, nsXULElement) NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mFrameLoader); NS_IMPL_CYCLE_COLLECTION_TRAVERSE(mOpener); NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN_INHERITED(XULFrameElement, nsXULElement) if (tmp->mFrameLoader) { tmp->mFrameLoader->Destroy(); } NS_IMPL_CYCLE_COLLECTION_UNLINK(mFrameLoader, mOpener) NS_IMPL_CYCLE_COLLECTION_UNLINK_END NS_IMPL_ISUPPORTS_CYCLE_COLLECTION_INHERITED(XULFrameElement, nsXULElement, nsFrameLoaderOwner) JSObject* XULFrameElement::WrapNode(JSContext* aCx, JS::Handle aGivenProto) { return XULFrameElement_Binding::Wrap(aCx, this, aGivenProto); } nsDocShell* XULFrameElement::GetDocShell() { RefPtr frameLoader = GetFrameLoader(); return frameLoader ? frameLoader->GetDocShell(IgnoreErrors()) : nullptr; } already_AddRefed XULFrameElement::GetWebNavigation() { nsCOMPtr docShell = GetDocShell(); nsCOMPtr webnav = do_QueryInterface(docShell); return webnav.forget(); } Nullable XULFrameElement::GetContentWindow() { RefPtr docShell = GetDocShell(); if (docShell) { return WindowProxyHolder(docShell->GetWindowProxy()); } return nullptr; } Document* XULFrameElement::GetContentDocument() { nsCOMPtr docShell = GetDocShell(); if (docShell) { nsCOMPtr win = docShell->GetWindow(); if (win) { return win->GetDoc(); } } return nullptr; } void XULFrameElement::LoadSrc() { if (!IsInUncomposedDoc() || !OwnerDoc()->GetRootElement()) { return; } RefPtr frameLoader = GetFrameLoader(); if (!frameLoader) { // Check if we have an opener we need to be setting RefPtr opener = mOpener; if (!opener) { // If we are a primary xul-browser, we want to take the opener property! nsCOMPtr window = OwnerDoc()->GetWindow(); if (AttrValueIs(kNameSpaceID_None, nsGkAtoms::primary, nsGkAtoms::_true, eIgnoreCase) && window) { opener = window->TakeOpenerForInitialContentBrowser(); } } mOpener = nullptr; // false as the last parameter so that xul:iframe/browser/editor // session history handling works like dynamic html:iframes. // Usually xul elements are used in chrome, which doesn't have // session history at all. mFrameLoader = nsFrameLoader::Create(this, opener, false); if (NS_WARN_IF(!mFrameLoader)) { return; } (new AsyncEventDispatcher(this, NS_LITERAL_STRING("XULFrameLoaderCreated"), CanBubble::eYes)) ->RunDOMEventWhenSafe(); } mFrameLoader->LoadFrame(false); } void XULFrameElement::SwapFrameLoaders(HTMLIFrameElement& aOtherLoaderOwner, ErrorResult& rv) { aOtherLoaderOwner.SwapFrameLoaders(this, rv); } void XULFrameElement::SwapFrameLoaders(XULFrameElement& aOtherLoaderOwner, ErrorResult& rv) { if (&aOtherLoaderOwner == this) { // nothing to do return; } aOtherLoaderOwner.SwapFrameLoaders(this, rv); } void XULFrameElement::SwapFrameLoaders(nsFrameLoaderOwner* aOtherLoaderOwner, mozilla::ErrorResult& rv) { if (RefPtr doc = GetComposedDoc()) { // SwapWithOtherLoader relies on frames being up-to-date. doc->FlushPendingNotifications(FlushType::Frames); } RefPtr loader = GetFrameLoader(); RefPtr otherLoader = aOtherLoaderOwner->GetFrameLoader(); if (!loader || !otherLoader) { rv.Throw(NS_ERROR_NOT_IMPLEMENTED); return; } rv = loader->SwapWithOtherLoader(otherLoader, this, aOtherLoaderOwner); } nsresult XULFrameElement::BindToTree(BindContext& aContext, nsINode& aParent) { nsresult rv = nsXULElement::BindToTree(aContext, aParent); NS_ENSURE_SUCCESS(rv, rv); if (IsInUncomposedDoc()) { NS_ASSERTION(!nsContentUtils::IsSafeToRunScript(), "Missing a script blocker!"); // We're in a document now. Kick off the frame load. LoadSrc(); } return NS_OK; } void XULFrameElement::UnbindFromTree(bool aNullParent) { RefPtr frameLoader = GetFrameLoader(); if (frameLoader) { frameLoader->Destroy(); } mFrameLoader = nullptr; nsXULElement::UnbindFromTree(aNullParent); } void XULFrameElement::DestroyContent() { RefPtr frameLoader = GetFrameLoader(); if (frameLoader) { frameLoader->Destroy(); } mFrameLoader = nullptr; nsXULElement::DestroyContent(); } nsresult XULFrameElement::AfterSetAttr(int32_t aNamespaceID, nsAtom* aName, const nsAttrValue* aValue, const nsAttrValue* aOldValue, nsIPrincipal* aSubjectPrincipal, bool aNotify) { if (aNamespaceID == kNameSpaceID_None && aName == nsGkAtoms::src && aValue) { LoadSrc(); } return nsXULElement::AfterSetAttr(aNamespaceID, aName, aValue, aOldValue, aSubjectPrincipal, aNotify); } } // namespace dom } // namespace mozilla