2017-11-15 19:30:13 +03:00
|
|
|
/* -*- 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/. */
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
#ifndef nsGlobalWindowOuter_h___
|
|
|
|
#define nsGlobalWindowOuter_h___
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
|
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
|
|
|
#include "nsInterfaceHashtable.h"
|
|
|
|
|
|
|
|
// Local Includes
|
|
|
|
// Helper Classes
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsJSThingHashtable.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
|
|
|
|
// Interfaces Needed
|
|
|
|
#include "nsIBrowserDOMWindow.h"
|
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIDOMChromeWindow.h"
|
2018-10-15 13:29:33 +03:00
|
|
|
#include "nsIObserver.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsIScriptObjectPrincipal.h"
|
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "mozilla/EventListenerManager.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
#include "mozilla/FlushType.h"
|
|
|
|
#include "prclist.h"
|
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2017-06-14 17:44:17 +03:00
|
|
|
#include "mozilla/dom/ChromeMessageBroadcaster.h"
|
2018-12-16 12:21:16 +03:00
|
|
|
#include "mozilla/dom/PopupBlocker.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
#include "mozilla/dom/StorageEvent.h"
|
|
|
|
#include "mozilla/dom/StorageEventBinding.h"
|
|
|
|
#include "mozilla/dom/UnionTypes.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/GuardObjects.h"
|
|
|
|
#include "mozilla/LinkedList.h"
|
|
|
|
#include "nsWrapperCacheInlines.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "mozilla/dom/EventTarget.h"
|
|
|
|
#include "mozilla/dom/WindowBinding.h"
|
|
|
|
#include "Units.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
#include "nsCheapSets.h"
|
|
|
|
#include "mozilla/dom/ImageBitmapSource.h"
|
|
|
|
#include "mozilla/UniquePtr.h"
|
|
|
|
|
2019-01-02 16:27:05 +03:00
|
|
|
class nsDocShell;
|
2017-11-15 19:30:13 +03:00
|
|
|
class nsIArray;
|
|
|
|
class nsIBaseWindow;
|
|
|
|
class nsIContent;
|
|
|
|
class nsICSSDeclaration;
|
|
|
|
class nsIDocShellTreeOwner;
|
2018-07-25 02:47:40 +03:00
|
|
|
class nsIDOMWindowUtils;
|
2017-11-15 19:30:13 +03:00
|
|
|
class nsIScrollableFrame;
|
|
|
|
class nsIControllers;
|
|
|
|
class nsIScriptContext;
|
|
|
|
class nsIScriptTimeoutHandler;
|
|
|
|
class nsITabChild;
|
|
|
|
class nsITimeoutHandler;
|
|
|
|
class nsIWebBrowserChrome;
|
|
|
|
class mozIDOMWindowProxy;
|
|
|
|
|
2018-10-30 03:13:29 +03:00
|
|
|
class nsDocShellLoadState;
|
2017-11-15 19:30:13 +03:00
|
|
|
class nsDOMWindowList;
|
|
|
|
class nsScreen;
|
|
|
|
class nsHistory;
|
|
|
|
class nsGlobalWindowObserver;
|
2017-11-15 19:33:29 +03:00
|
|
|
class nsGlobalWindowInner;
|
2017-11-15 19:30:13 +03:00
|
|
|
class nsDOMWindowUtils;
|
|
|
|
class nsIIdleService;
|
|
|
|
struct nsRect;
|
|
|
|
|
|
|
|
class nsWindowSizes;
|
|
|
|
|
|
|
|
class IdleRequestExecutor;
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
struct IdleObserverHolder;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
namespace mozilla {
|
|
|
|
class AbstractThread;
|
|
|
|
class DOMEventTargetHelper;
|
|
|
|
namespace dom {
|
|
|
|
class BarProp;
|
2019-01-02 16:27:05 +03:00
|
|
|
class BrowsingContext;
|
2017-11-15 19:30:13 +03:00
|
|
|
struct ChannelPixelLayout;
|
|
|
|
class Console;
|
|
|
|
class Crypto;
|
|
|
|
class CustomElementRegistry;
|
|
|
|
class DocGroup;
|
|
|
|
class External;
|
|
|
|
class Function;
|
|
|
|
class Gamepad;
|
|
|
|
enum class ImageBitmapFormat : uint8_t;
|
|
|
|
class IdleRequest;
|
|
|
|
class IdleRequestCallback;
|
|
|
|
class IncrementalRunnable;
|
|
|
|
class IntlUtils;
|
|
|
|
class Location;
|
|
|
|
class MediaQueryList;
|
|
|
|
class Navigator;
|
|
|
|
class OwningExternalOrWindowProxy;
|
|
|
|
class Promise;
|
|
|
|
class PostMessageEvent;
|
|
|
|
struct RequestInit;
|
|
|
|
class RequestOrUSVString;
|
|
|
|
class Selection;
|
|
|
|
class SpeechSynthesis;
|
|
|
|
class TabGroup;
|
|
|
|
class Timeout;
|
|
|
|
class U2F;
|
|
|
|
class VRDisplay;
|
|
|
|
enum class VRDisplayEventReason : uint8_t;
|
|
|
|
class VREventObserver;
|
|
|
|
class WakeLock;
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
class WindowOrientationObserver;
|
|
|
|
#endif
|
|
|
|
class Worklet;
|
|
|
|
namespace cache {
|
|
|
|
class CacheStorage;
|
|
|
|
} // namespace cache
|
|
|
|
class IDBFactory;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
extern already_AddRefed<nsIScriptTimeoutHandler> NS_CreateJSTimeoutHandler(
|
|
|
|
JSContext* aCx, nsGlobalWindowInner* aWindow,
|
|
|
|
mozilla::dom::Function& aFunction,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aArguments,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
extern already_AddRefed<nsIScriptTimeoutHandler> NS_CreateJSTimeoutHandler(
|
|
|
|
JSContext* aCx, nsGlobalWindowInner* aWindow, const nsAString& aExpression,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
extern const js::Class OuterWindowProxyClass;
|
|
|
|
|
|
|
|
//*****************************************************************************
|
2017-11-22 00:41:53 +03:00
|
|
|
// nsGlobalWindowOuter
|
2017-11-15 19:30:13 +03:00
|
|
|
//*****************************************************************************
|
2017-11-22 00:41:53 +03:00
|
|
|
|
|
|
|
// nsGlobalWindowOuter inherits PRCList for maintaining a list of all inner
|
|
|
|
// windows still in memory for any given outer window. This list is needed to
|
|
|
|
// ensure that mOuterWindow doesn't end up dangling. The nature of PRCList means
|
|
|
|
// that the window itself is always in the list, and an outer window's list will
|
|
|
|
// also contain all inner window objects that are still in memory (and in
|
|
|
|
// reality all inner window object's lists also contain its outer and all other
|
|
|
|
// inner windows belonging to the same outer window, but that's an unimportant
|
2017-11-15 19:30:13 +03:00
|
|
|
// side effect of inheriting PRCList).
|
|
|
|
|
2018-03-02 18:30:03 +03:00
|
|
|
class nsGlobalWindowOuter final : public mozilla::dom::EventTarget,
|
|
|
|
public nsPIDOMWindowOuter,
|
|
|
|
private nsIDOMWindow
|
|
|
|
// NOTE: This interface is private, as it's only
|
|
|
|
// implemented on chrome windows.
|
|
|
|
,
|
|
|
|
private nsIDOMChromeWindow,
|
|
|
|
public nsIScriptGlobalObject,
|
|
|
|
public nsIScriptObjectPrincipal,
|
|
|
|
public nsSupportsWeakReference,
|
|
|
|
public nsIInterfaceRequestor,
|
|
|
|
public PRCListStr,
|
2018-10-15 13:29:33 +03:00
|
|
|
public nsIObserver {
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
2017-11-15 19:33:29 +03:00
|
|
|
typedef nsDataHashtable<nsUint64HashKey, nsGlobalWindowOuter*>
|
|
|
|
OuterWindowByIdTable;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
static void AssertIsOnMainThread()
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
static nsGlobalWindowOuter* Cast(nsPIDOMWindowOuter* aPIWin) {
|
2017-11-15 19:34:04 +03:00
|
|
|
return static_cast<nsGlobalWindowOuter*>(aPIWin);
|
2017-11-15 19:33:29 +03:00
|
|
|
}
|
|
|
|
static const nsGlobalWindowOuter* Cast(const nsPIDOMWindowOuter* aPIWin) {
|
2017-11-15 19:34:04 +03:00
|
|
|
return static_cast<const nsGlobalWindowOuter*>(aPIWin);
|
2017-11-15 19:33:29 +03:00
|
|
|
}
|
|
|
|
static nsGlobalWindowOuter* Cast(mozIDOMWindowProxy* aWin) {
|
|
|
|
return Cast(nsPIDOMWindowOuter::From(aWin));
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsGlobalWindowOuter* GetOuterWindowWithId(uint64_t aWindowID) {
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
if (!sOuterWindowsById) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsGlobalWindowOuter* outerWindow = sOuterWindowsById->Get(aWindowID);
|
|
|
|
return outerWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
static OuterWindowByIdTable* GetWindowsTable() {
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
return sOuterWindowsById;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsGlobalWindowOuter* FromSupports(nsISupports* supports) {
|
|
|
|
// Make sure this matches the casts we do in QueryInterface().
|
|
|
|
return (nsGlobalWindowOuter*)(mozilla::dom::EventTarget*)supports;
|
|
|
|
}
|
|
|
|
|
2019-01-02 16:27:05 +03:00
|
|
|
static already_AddRefed<nsGlobalWindowOuter> Create(nsDocShell* aDocShell,
|
2018-10-10 13:20:36 +03:00
|
|
|
bool aIsChrome);
|
2017-11-15 19:33:29 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// public methods
|
|
|
|
nsPIDOMWindowOuter* GetPrivateParent();
|
|
|
|
|
|
|
|
// callback for close event
|
|
|
|
void ReallyCloseWindow();
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
|
|
|
// nsWrapperCache
|
|
|
|
virtual JSObject* WrapObject(JSContext* cx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override {
|
2017-11-15 19:34:20 +03:00
|
|
|
return EnsureInnerWindow() ? GetWrapper() : nullptr;
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// nsIGlobalJSObjectHolder
|
|
|
|
virtual JSObject* GetGlobalJSObject() override;
|
|
|
|
|
|
|
|
// nsIScriptGlobalObject
|
|
|
|
JSObject* FastGetGlobalJSObject() const { return GetWrapperPreserveColor(); }
|
|
|
|
|
|
|
|
virtual nsresult EnsureScriptEnvironment() override;
|
|
|
|
|
|
|
|
virtual nsIScriptContext* GetScriptContext() override;
|
|
|
|
|
|
|
|
void PoisonOuterWindowProxy(JSObject* aObject);
|
|
|
|
|
|
|
|
virtual bool IsBlackForCC(bool aTracingNeeded = true) override;
|
|
|
|
|
|
|
|
// nsIScriptObjectPrincipal
|
|
|
|
virtual nsIPrincipal* GetPrincipal() override;
|
|
|
|
|
|
|
|
// nsIDOMWindow
|
|
|
|
NS_DECL_NSIDOMWINDOW
|
|
|
|
|
|
|
|
// nsIDOMChromeWindow (only implemented on chrome windows)
|
|
|
|
NS_DECL_NSIDOMCHROMEWINDOW
|
|
|
|
|
2018-02-14 19:35:39 +03:00
|
|
|
mozilla::dom::ChromeMessageBroadcaster* GetMessageManager();
|
|
|
|
mozilla::dom::ChromeMessageBroadcaster* GetGroupMessageManager(
|
|
|
|
const nsAString& aGroup);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
nsresult OpenJS(const nsAString& aUrl, const nsAString& aName,
|
|
|
|
const nsAString& aOptions, nsPIDOMWindowOuter** _retval);
|
|
|
|
|
|
|
|
virtual mozilla::EventListenerManager* GetExistingListenerManager()
|
|
|
|
const override;
|
|
|
|
|
|
|
|
virtual mozilla::EventListenerManager* GetOrCreateListenerManager() override;
|
|
|
|
|
2018-04-05 20:42:42 +03:00
|
|
|
bool ComputeDefaultWantsUntrusted(mozilla::ErrorResult& aRv) final;
|
|
|
|
|
2019-01-02 16:26:56 +03:00
|
|
|
virtual nsPIDOMWindowOuter* GetOwnerGlobalForBindingsInternal() override;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
virtual nsIGlobalObject* GetOwnerGlobal() const override;
|
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
EventTarget* GetTargetForEventTargetChain() override;
|
2018-09-07 17:47:51 +03:00
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
using mozilla::dom::EventTarget::DispatchEvent;
|
|
|
|
bool DispatchEvent(mozilla::dom::Event& aEvent,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aRv) override;
|
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
void GetEventTargetParent(mozilla::EventChainPreVisitor& aVisitor) override;
|
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
nsresult PostHandleEvent(mozilla::EventChainPostVisitor& aVisitor) override;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// nsPIDOMWindow
|
|
|
|
virtual nsPIDOMWindowOuter* GetPrivateRoot() override;
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
virtual void ActivateOrDeactivate(bool aActivate) override;
|
|
|
|
virtual void SetActive(bool aActive) override;
|
|
|
|
virtual bool IsTopLevelWindowActive() override;
|
|
|
|
virtual void SetIsBackground(bool aIsBackground) override;
|
|
|
|
virtual void SetChromeEventHandler(
|
|
|
|
mozilla::dom::EventTarget* aChromeEventHandler) override;
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
virtual void SetInitialPrincipalToSubject() override;
|
|
|
|
|
|
|
|
virtual already_AddRefed<nsISupports> SaveWindowState() override;
|
|
|
|
virtual nsresult RestoreWindowState(nsISupports* aState) override;
|
|
|
|
|
|
|
|
virtual bool IsSuspended() const override;
|
|
|
|
virtual bool IsFrozen() const override;
|
|
|
|
|
|
|
|
virtual nsresult FireDelayedDOMEvents() override;
|
|
|
|
|
|
|
|
// Outer windows only.
|
2017-11-15 19:34:13 +03:00
|
|
|
bool WouldReuseInnerWindow(nsIDocument* aNewDocument);
|
|
|
|
|
|
|
|
void DetachFromDocShell();
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
virtual nsresult SetNewDocument(nsIDocument* aDocument, nsISupports* aState,
|
|
|
|
bool aForceReuseInnerWindow) override;
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
void DispatchDOMWindowCreated();
|
|
|
|
|
|
|
|
virtual void SetOpenerWindow(nsPIDOMWindowOuter* aOpener,
|
|
|
|
bool aOriginalOpener) override;
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
virtual void EnsureSizeAndPositionUpToDate() override;
|
|
|
|
|
|
|
|
virtual void EnterModalState() override;
|
|
|
|
virtual void LeaveModalState() override;
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
virtual bool CanClose() override;
|
|
|
|
virtual void ForceClose() override;
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
virtual bool DispatchCustomEvent(const nsAString& aEventName) override;
|
|
|
|
bool DispatchResizeEvent(const mozilla::CSSIntSize& aSize);
|
|
|
|
|
2018-09-12 18:51:30 +03:00
|
|
|
// For accessing protected field mFullscreen
|
2017-11-15 19:30:13 +03:00
|
|
|
friend class FullscreenTransitionTask;
|
|
|
|
|
|
|
|
// Outer windows only.
|
2018-02-06 09:50:00 +03:00
|
|
|
nsresult SetFullscreenInternal(FullscreenReason aReason,
|
|
|
|
bool aIsFullscreen) final;
|
2018-02-09 08:22:43 +03:00
|
|
|
void FullscreenWillChange(bool aIsFullscreen) final;
|
|
|
|
void FinishFullscreenChange(bool aIsFullscreen) final;
|
2017-11-15 19:30:13 +03:00
|
|
|
bool SetWidgetFullscreen(FullscreenReason aReason, bool aIsFullscreen,
|
|
|
|
nsIWidget* aWidget, nsIScreen* aScreen);
|
2018-09-12 18:51:30 +03:00
|
|
|
bool Fullscreen() const;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
// nsIInterfaceRequestor
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
|
2018-10-15 13:29:33 +03:00
|
|
|
// nsIObserver
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
2018-12-18 23:06:19 +03:00
|
|
|
already_AddRefed<nsPIDOMWindowOuter> IndexedGetterOuter(uint32_t aIndex);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
already_AddRefed<nsPIDOMWindowOuter> GetTop() override;
|
|
|
|
nsPIDOMWindowOuter* GetScriptableTop() override;
|
|
|
|
inline nsGlobalWindowOuter* GetTopInternal();
|
|
|
|
|
|
|
|
inline nsGlobalWindowOuter* GetScriptableTopInternal();
|
|
|
|
|
2019-01-02 16:27:05 +03:00
|
|
|
already_AddRefed<mozilla::dom::BrowsingContext> GetChildWindow(
|
|
|
|
const nsAString& aName);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
// These return true if we've reached the state in this top level window
|
|
|
|
// where we ask the user if further dialogs should be blocked.
|
|
|
|
//
|
|
|
|
// DialogsAreBeingAbused must be called on the scriptable top inner window.
|
|
|
|
//
|
|
|
|
// ShouldPromptToBlockDialogs is implemented in terms of
|
|
|
|
// DialogsAreBeingAbused, and will get the scriptable top inner window
|
|
|
|
// automatically.
|
|
|
|
// Outer windows only.
|
|
|
|
bool ShouldPromptToBlockDialogs();
|
|
|
|
|
|
|
|
// These functions are used for controlling and determining whether dialogs
|
|
|
|
// (alert, prompt, confirm) are currently allowed in this window. If you want
|
|
|
|
// to temporarily disable dialogs, please use TemporarilyDisableDialogs, not
|
|
|
|
// EnableDialogs/DisableDialogs, because correctly determining whether to
|
|
|
|
// re-enable dialogs is actually quite difficult.
|
|
|
|
void EnableDialogs();
|
|
|
|
void DisableDialogs();
|
|
|
|
// Outer windows only.
|
|
|
|
bool AreDialogsEnabled();
|
|
|
|
|
|
|
|
class MOZ_RAII TemporarilyDisableDialogs {
|
|
|
|
public:
|
|
|
|
explicit TemporarilyDisableDialogs(
|
|
|
|
nsGlobalWindowOuter* aWindow MOZ_GUARD_OBJECT_NOTIFIER_PARAM);
|
|
|
|
~TemporarilyDisableDialogs();
|
|
|
|
|
|
|
|
private:
|
|
|
|
MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER
|
|
|
|
|
|
|
|
// Always an inner window; this is the window whose dialog state we messed
|
|
|
|
// with. We just want to keep it alive, because we plan to poke at its
|
|
|
|
// members in our destructor.
|
|
|
|
RefPtr<nsGlobalWindowInner> mTopWindow;
|
|
|
|
// This is not a AutoRestore<bool> because that would require careful
|
|
|
|
// member destructor ordering, which is a bit fragile. This way we can
|
|
|
|
// explicitly restore things before we drop our ref to mTopWindow.
|
|
|
|
bool mSavedDialogsEnabled;
|
|
|
|
};
|
|
|
|
friend class TemporarilyDisableDialogs;
|
|
|
|
|
|
|
|
nsIScriptContext* GetContextInternal();
|
|
|
|
|
|
|
|
nsGlobalWindowOuter* GetOuterWindowInternal();
|
|
|
|
|
|
|
|
nsGlobalWindowInner* GetCurrentInnerWindowInternal() const;
|
|
|
|
|
|
|
|
nsGlobalWindowInner* EnsureInnerWindowInternal();
|
|
|
|
|
|
|
|
bool IsCreatingInnerWindow() const { return mCreatingInnerWindow; }
|
|
|
|
|
|
|
|
bool IsChromeWindow() const { return mIsChrome; }
|
|
|
|
|
|
|
|
// GetScrollFrame does not flush. Callers should do it themselves as needed,
|
|
|
|
// depending on which info they actually want off the scrollable frame.
|
|
|
|
nsIScrollableFrame* GetScrollFrame();
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
void UnblockScriptedClosing();
|
|
|
|
|
|
|
|
static void Init();
|
|
|
|
static void ShutDown();
|
|
|
|
static bool IsCallerChrome();
|
|
|
|
|
|
|
|
friend class WindowStateHolder;
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_AMBIGUOUS(
|
2018-04-20 07:49:30 +03:00
|
|
|
nsGlobalWindowOuter, mozilla::dom::EventTarget)
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
virtual bool TakeFocus(bool aFocus, uint32_t aFocusMethod) override;
|
|
|
|
virtual void SetReadyForFocus() override;
|
|
|
|
virtual void PageHidden() override;
|
|
|
|
|
|
|
|
virtual nsresult SetArguments(nsIArray* aArguments) override;
|
|
|
|
|
|
|
|
void MaybeForgiveSpamCount();
|
|
|
|
bool IsClosedOrClosing() {
|
|
|
|
return (mIsClosed || mInClose || mHavePendingClose || mCleanedUp);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsCleanedUp() const { return mCleanedUp; }
|
|
|
|
|
|
|
|
bool HadOriginalOpener() const { return mHadOriginalOpener; }
|
|
|
|
|
|
|
|
bool IsTopLevelWindow();
|
|
|
|
|
|
|
|
virtual void FirePopupBlockedEvent(
|
|
|
|
nsIDocument* aDoc, nsIURI* aPopupURI, const nsAString& aPopupWindowName,
|
|
|
|
const nsAString& aPopupWindowFeatures) override;
|
|
|
|
|
2018-07-17 06:11:00 +03:00
|
|
|
virtual void NotifyContentBlockingState(unsigned aState, nsIChannel* aChannel,
|
2018-09-23 09:36:04 +03:00
|
|
|
bool aBlocked,
|
2018-09-23 00:04:38 +03:00
|
|
|
nsIURI* aURIHint) override;
|
2018-07-17 06:11:00 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
void AddSizeOfIncludingThis(nsWindowSizes& aWindowSizes) const;
|
|
|
|
|
|
|
|
void AllowScriptsToClose() { mAllowScriptsToClose = true; }
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
uint32_t GetAutoActivateVRDisplayID();
|
|
|
|
// Outer windows only.
|
|
|
|
void SetAutoActivateVRDisplayID(uint32_t aAutoActivateVRDisplayID);
|
|
|
|
|
|
|
|
#define EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::EventHandlerNonNull* GetOn##name_() { \
|
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
2018-07-25 01:15:19 +03:00
|
|
|
return elm ? elm->GetEventHandler(nsGkAtoms::on##name_) : nullptr; \
|
2017-11-15 19:30:13 +03:00
|
|
|
} \
|
|
|
|
void SetOn##name_(mozilla::dom::EventHandlerNonNull* handler) { \
|
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
|
|
|
if (elm) { \
|
2018-07-25 01:15:19 +03:00
|
|
|
elm->SetEventHandler(nsGkAtoms::on##name_, handler); \
|
2017-11-15 19:30:13 +03:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define ERROR_EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::OnErrorEventHandlerNonNull* GetOn##name_() { \
|
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
|
|
|
return elm ? elm->GetOnErrorEventHandler() : nullptr; \
|
|
|
|
} \
|
|
|
|
void SetOn##name_(mozilla::dom::OnErrorEventHandlerNonNull* handler) { \
|
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
|
|
|
if (elm) { \
|
|
|
|
elm->SetEventHandler(handler); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define BEFOREUNLOAD_EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::OnBeforeUnloadEventHandlerNonNull* GetOn##name_() { \
|
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
|
|
|
return elm ? elm->GetOnBeforeUnloadEventHandler() : nullptr; \
|
|
|
|
} \
|
|
|
|
void SetOn##name_( \
|
|
|
|
mozilla::dom::OnBeforeUnloadEventHandlerNonNull* handler) { \
|
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
|
|
|
if (elm) { \
|
|
|
|
elm->SetEventHandler(handler); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define WINDOW_ONLY_EVENT EVENT
|
|
|
|
#define TOUCH_EVENT EVENT
|
|
|
|
#include "mozilla/EventNameList.h"
|
|
|
|
#undef TOUCH_EVENT
|
|
|
|
#undef WINDOW_ONLY_EVENT
|
|
|
|
#undef BEFOREUNLOAD_EVENT
|
|
|
|
#undef ERROR_EVENT
|
|
|
|
#undef EVENT
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() { return nullptr; }
|
|
|
|
|
|
|
|
nsIDocument* GetDocument() { return GetDoc(); }
|
|
|
|
void GetNameOuter(nsAString& aName);
|
|
|
|
void SetNameOuter(const nsAString& aName, mozilla::ErrorResult& aError);
|
2018-08-03 19:24:41 +03:00
|
|
|
mozilla::dom::Location* GetLocation() override;
|
2017-11-15 19:30:13 +03:00
|
|
|
void GetStatusOuter(nsAString& aStatus);
|
|
|
|
void SetStatusOuter(const nsAString& aStatus);
|
|
|
|
void CloseOuter(bool aTrustedCaller);
|
|
|
|
nsresult Close() override;
|
|
|
|
bool GetClosedOuter();
|
|
|
|
bool Closed() override;
|
|
|
|
void StopOuter(mozilla::ErrorResult& aError);
|
|
|
|
void FocusOuter(mozilla::ErrorResult& aError);
|
|
|
|
nsresult Focus() override;
|
|
|
|
void BlurOuter();
|
2019-01-02 16:27:05 +03:00
|
|
|
mozilla::dom::BrowsingContext* GetFramesOuter();
|
2018-05-25 06:32:19 +03:00
|
|
|
nsDOMWindowList* GetFrames() final;
|
2018-12-18 23:06:19 +03:00
|
|
|
uint32_t Length();
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> GetTopOuter();
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
nsresult GetPrompter(nsIPrompt** aPrompt) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
|
|
|
nsPIDOMWindowOuter* GetOpenerWindowOuter();
|
|
|
|
// Initializes the mWasOffline member variable
|
|
|
|
void InitWasOffline();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
nsPIDOMWindowOuter* GetSanitizedOpener(nsPIDOMWindowOuter* aOpener);
|
|
|
|
|
|
|
|
already_AddRefed<nsPIDOMWindowOuter> GetOpener() override;
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> GetParentOuter();
|
2017-11-15 19:30:13 +03:00
|
|
|
already_AddRefed<nsPIDOMWindowOuter> GetParent() override;
|
|
|
|
nsPIDOMWindowOuter* GetScriptableParent() override;
|
|
|
|
nsPIDOMWindowOuter* GetScriptableParentOrNull() override;
|
|
|
|
mozilla::dom::Element* GetFrameElementOuter(nsIPrincipal& aSubjectPrincipal);
|
2018-04-27 06:37:33 +03:00
|
|
|
mozilla::dom::Element* GetFrameElement() override;
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> OpenOuter(
|
|
|
|
const nsAString& aUrl, const nsAString& aName, const nsAString& aOptions,
|
|
|
|
mozilla::ErrorResult& aError);
|
2017-11-15 19:30:13 +03:00
|
|
|
nsresult Open(const nsAString& aUrl, const nsAString& aName,
|
2018-10-30 03:13:29 +03:00
|
|
|
const nsAString& aOptions, nsDocShellLoadState* aLoadState,
|
2017-11-15 19:30:13 +03:00
|
|
|
bool aForceNoOpener, nsPIDOMWindowOuter** _retval) override;
|
2018-01-22 20:59:15 +03:00
|
|
|
mozilla::dom::Navigator* GetNavigator() override;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
int16_t Orientation(mozilla::dom::CallerType aCallerType) const;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool AlertOrConfirm(bool aAlert, const nsAString& aMessage,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
public:
|
|
|
|
void AlertOuter(const nsAString& aMessage, nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
bool ConfirmOuter(const nsAString& aMessage, nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void PromptOuter(const nsAString& aMessage, const nsAString& aInitial,
|
|
|
|
nsAString& aReturn, nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void PrintOuter(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::Selection* GetSelectionOuter();
|
2018-05-08 20:52:36 +03:00
|
|
|
already_AddRefed<mozilla::dom::Selection> GetSelection() override;
|
2017-11-15 19:30:13 +03:00
|
|
|
already_AddRefed<mozilla::dom::MediaQueryList> MatchMediaOuter(
|
|
|
|
const nsAString& aQuery, mozilla::dom::CallerType aCallerType);
|
2018-04-03 07:42:41 +03:00
|
|
|
nsScreen* GetScreen();
|
2017-11-15 19:30:13 +03:00
|
|
|
void MoveToOuter(int32_t aXPos, int32_t aYPos,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void MoveByOuter(int32_t aXDif, int32_t aYDif,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsresult MoveBy(int32_t aXDif, int32_t aYDif) override;
|
|
|
|
void ResizeToOuter(int32_t aWidth, int32_t aHeight,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void ResizeByOuter(int32_t aWidthDif, int32_t aHeightDif,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
double GetScrollXOuter();
|
|
|
|
double GetScrollYOuter();
|
|
|
|
|
|
|
|
void SizeToContentOuter(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsIControllers* GetControllersOuter(mozilla::ErrorResult& aError);
|
|
|
|
nsresult GetControllers(nsIControllers** aControllers) override;
|
|
|
|
mozilla::dom::Element* GetRealFrameElementOuter();
|
|
|
|
float GetMozInnerScreenXOuter(mozilla::dom::CallerType aCallerType);
|
|
|
|
float GetMozInnerScreenYOuter(mozilla::dom::CallerType aCallerType);
|
|
|
|
double GetDevicePixelRatioOuter(mozilla::dom::CallerType aCallerType);
|
2018-09-12 18:51:30 +03:00
|
|
|
bool GetFullscreenOuter();
|
2017-11-15 19:30:13 +03:00
|
|
|
bool GetFullScreen() override;
|
2018-09-12 18:51:30 +03:00
|
|
|
void SetFullscreenOuter(bool aFullscreen, mozilla::ErrorResult& aError);
|
|
|
|
nsresult SetFullScreen(bool aFullscreen) override;
|
2017-11-15 19:30:13 +03:00
|
|
|
bool FindOuter(const nsAString& aString, bool aCaseSensitive, bool aBackwards,
|
|
|
|
bool aWrapAround, bool aWholeWord, bool aSearchInFrames,
|
|
|
|
bool aShowDialog, mozilla::ErrorResult& aError);
|
|
|
|
uint64_t GetMozPaintCountOuter();
|
|
|
|
|
|
|
|
bool ShouldResistFingerprinting();
|
|
|
|
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> OpenDialogOuter(
|
2017-11-15 19:30:13 +03:00
|
|
|
JSContext* aCx, const nsAString& aUrl, const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aExtraArgument,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsresult OpenDialog(const nsAString& aUrl, const nsAString& aName,
|
|
|
|
const nsAString& aOptions, nsISupports* aExtraArgument,
|
|
|
|
nsPIDOMWindowOuter** _retval) override;
|
2018-05-08 20:52:42 +03:00
|
|
|
void UpdateCommands(const nsAString& anAction, mozilla::dom::Selection* aSel,
|
|
|
|
int16_t aReason) override;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
already_AddRefed<nsPIDOMWindowOuter> GetContentInternal(
|
|
|
|
mozilla::ErrorResult& aError, mozilla::dom::CallerType aCallerType);
|
|
|
|
void GetContentOuter(JSContext* aCx, JS::MutableHandle<JSObject*> aRetval,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
already_AddRefed<nsPIDOMWindowOuter> GetContent() {
|
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> win = GetContentInternal(
|
2018-02-01 22:21:14 +03:00
|
|
|
mozilla::IgnoreErrors(), mozilla::dom::CallerType::System);
|
2017-11-15 19:30:13 +03:00
|
|
|
return win.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ChromeWindow bits. Do NOT call these unless your window is in
|
|
|
|
// fact chrome.
|
|
|
|
nsIBrowserDOMWindow* GetBrowserDOMWindowOuter();
|
|
|
|
void SetBrowserDOMWindowOuter(nsIBrowserDOMWindow* aBrowserWindow);
|
|
|
|
void SetCursorOuter(const nsAString& aCursor, mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
void GetDialogArgumentsOuter(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetDialogArguments(JSContext* aCx, JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetReturnValueOuter(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetReturnValue(JSContext* aCx, JS::MutableHandle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetReturnValueOuter(JSContext* aCx, JS::Handle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetReturnValue(JSContext* aCx, JS::Handle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
already_AddRefed<nsWindowRoot> GetWindowRootOuter();
|
|
|
|
|
2018-07-25 02:47:40 +03:00
|
|
|
nsIDOMWindowUtils* WindowUtils();
|
2018-11-19 21:56:18 +03:00
|
|
|
bool HasOpenerForInitialContentBrowser() {
|
|
|
|
return !!mOpenerForInitialContentBrowser;
|
|
|
|
}
|
2018-07-25 02:47:40 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
virtual bool IsInSyncOperation() override {
|
|
|
|
return GetExtantDoc() && GetExtantDoc()->IsInSyncOperation();
|
|
|
|
}
|
|
|
|
|
2018-10-15 13:37:11 +03:00
|
|
|
void ParentWindowChanged() {
|
|
|
|
// Reset our storage access flag when we get reparented.
|
|
|
|
mHasStorageAccess = false;
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
int32_t GetInnerWidthOuter(mozilla::ErrorResult& aError);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
|
|
|
nsresult GetInnerWidth(int32_t* aWidth) override;
|
|
|
|
void SetInnerWidthOuter(int32_t aInnerWidth,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
int32_t GetInnerHeightOuter(mozilla::ErrorResult& aError);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
|
|
|
nsresult GetInnerHeight(int32_t* aHeight) override;
|
|
|
|
void SetInnerHeightOuter(int32_t aInnerHeight,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScreenXOuter(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenXOuter(int32_t aScreenX, mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScreenYOuter(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenYOuter(int32_t aScreenY, mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetOuterWidthOuter(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterWidthOuter(int32_t aOuterWidth,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetOuterHeightOuter(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterHeightOuter(int32_t aOuterHeight,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
// Array of idle observers that are notified of idle events.
|
|
|
|
nsTObserverArray<IdleObserverHolder> mIdleObservers;
|
|
|
|
|
|
|
|
// Idle timer used for function callbacks to notify idle observers.
|
|
|
|
nsCOMPtr<nsITimer> mIdleTimer;
|
|
|
|
|
|
|
|
// Idle fuzz time added to idle timer callbacks.
|
|
|
|
uint32_t mIdleFuzzFactor;
|
|
|
|
|
|
|
|
// Index in mArrayIdleObservers
|
|
|
|
// Next idle observer to notify user idle status
|
|
|
|
int32_t mIdleCallbackIndex;
|
|
|
|
|
|
|
|
// If false then the topic is "active"
|
|
|
|
// If true then the topic is "idle"
|
|
|
|
bool mCurrentlyIdle;
|
|
|
|
|
|
|
|
// Set to true when a fuzz time needs to be applied
|
|
|
|
// to active notifications to the idle observer.
|
|
|
|
bool mAddActiveEventFuzzTime;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIIdleService> mIdleService;
|
|
|
|
|
|
|
|
RefPtr<mozilla::dom::WakeLock> mWakeLock;
|
|
|
|
|
|
|
|
friend class HashchangeCallback;
|
|
|
|
friend class mozilla::dom::BarProp;
|
|
|
|
|
|
|
|
// Object Management
|
2017-11-15 19:33:29 +03:00
|
|
|
virtual ~nsGlobalWindowOuter();
|
2017-11-15 19:30:13 +03:00
|
|
|
void DropOuterWindowDocs();
|
|
|
|
void CleanUp();
|
|
|
|
void ClearControllers();
|
|
|
|
// Outer windows only.
|
|
|
|
void FinalClose();
|
|
|
|
|
|
|
|
inline void MaybeClearInnerWindow(nsGlobalWindowInner* aExpectedInner);
|
|
|
|
|
2018-10-10 00:02:13 +03:00
|
|
|
// We need a JSContext to get prototypes inside CallerInnerWindow.
|
|
|
|
nsGlobalWindowInner* CallerInnerWindow(JSContext* aCx);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
// Get the parent, returns null if this is a toplevel window
|
|
|
|
nsPIDOMWindowOuter* GetParentInternal();
|
|
|
|
|
|
|
|
public:
|
|
|
|
// popup tracking
|
|
|
|
bool IsPopupSpamWindow();
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
void SetIsPopupSpamWindow(bool aIsPopupSpam);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Window Control Functions
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
virtual nsresult OpenNoNavigate(const nsAString& aUrl, const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
nsPIDOMWindowOuter** _retval) override;
|
|
|
|
|
|
|
|
private:
|
2018-10-10 13:20:36 +03:00
|
|
|
explicit nsGlobalWindowOuter(uint64_t aWindowID);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
/**
|
|
|
|
* @param aUrl the URL we intend to load into the window. If aNavigate is
|
|
|
|
* true, we'll actually load this URL into the window. Otherwise,
|
|
|
|
* aUrl is advisory; OpenInternal will not load the URL into the
|
|
|
|
* new window.
|
|
|
|
*
|
|
|
|
* @param aName the name to use for the new window
|
|
|
|
*
|
|
|
|
* @param aOptions the window options to use for the new window
|
|
|
|
*
|
|
|
|
* @param aDialog true when called from variants of OpenDialog. If this is
|
|
|
|
* true, this method will skip popup blocking checks. The aDialog
|
|
|
|
* argument is passed on to the window watcher.
|
|
|
|
*
|
|
|
|
* @param aCalledNoScript true when called via the [noscript] open()
|
|
|
|
* and openDialog() methods. When this is true, we do NOT want to use
|
|
|
|
* the JS stack for things like caller determination.
|
|
|
|
*
|
|
|
|
* @param aDoJSFixups true when this is the content-accessible JS version of
|
|
|
|
* window opening. When true, popups do not cause us to throw, we save
|
|
|
|
* the caller's principal in the new window for later consumption, and
|
|
|
|
* we make sure that there is a document in the newly-opened window.
|
|
|
|
* Note that this last will only be done if the newly-opened window is
|
|
|
|
* non-chrome.
|
|
|
|
*
|
|
|
|
* @param aNavigate true if we should navigate to the provided URL, false
|
|
|
|
* otherwise. When aNavigate is false, we also skip our can-load
|
|
|
|
* security check, on the assumption that whoever *actually* loads this
|
|
|
|
* page will do their own security check.
|
|
|
|
*
|
|
|
|
* @param argv The arguments to pass to the new window. The first
|
|
|
|
* three args, if present, will be aUrl, aName, and aOptions. So this
|
|
|
|
* param only matters if there are more than 3 arguments.
|
|
|
|
*
|
|
|
|
* @param aExtraArgument Another way to pass arguments in. This is mutually
|
|
|
|
* exclusive with the argv approach.
|
|
|
|
*
|
2018-10-30 03:13:29 +03:00
|
|
|
* @param aLoadState to be passed on along to the windowwatcher.
|
2017-11-15 19:30:13 +03:00
|
|
|
*
|
|
|
|
* @param aForceNoOpener if true, will act as if "noopener" were passed in
|
|
|
|
* aOptions, but without affecting any other window
|
|
|
|
* features.
|
|
|
|
*
|
|
|
|
* @param aReturn [out] The window that was opened, if any. Will be null if
|
|
|
|
* aForceNoOpener is true of if aOptions contains
|
|
|
|
* "noopener".
|
|
|
|
*
|
|
|
|
* Outer windows only.
|
|
|
|
*/
|
|
|
|
nsresult OpenInternal(const nsAString& aUrl, const nsAString& aName,
|
|
|
|
const nsAString& aOptions, bool aDialog,
|
|
|
|
bool aContentModal, bool aCalledNoScript,
|
|
|
|
bool aDoJSFixups, bool aNavigate, nsIArray* argv,
|
|
|
|
nsISupports* aExtraArgument,
|
2018-10-30 03:13:29 +03:00
|
|
|
nsDocShellLoadState* aLoadState, bool aForceNoOpener,
|
2017-11-15 19:30:13 +03:00
|
|
|
nsPIDOMWindowOuter** aReturn);
|
|
|
|
|
2018-07-17 06:11:00 +03:00
|
|
|
// Checks that the channel was loaded by the URI currently loaded in aDoc
|
|
|
|
static bool SameLoadingURI(nsIDocument* aDoc, nsIChannel* aChannel);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
// Helper Functions
|
|
|
|
already_AddRefed<nsIDocShellTreeOwner> GetTreeOwner();
|
|
|
|
already_AddRefed<nsIBaseWindow> GetTreeOwnerWindow();
|
|
|
|
already_AddRefed<nsIWebBrowserChrome> GetWebBrowserChrome();
|
2018-07-11 13:38:47 +03:00
|
|
|
nsresult SecurityCheckURL(const char* aURL, nsIURI** aURI);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
bool PopupWhitelisted();
|
2018-12-16 12:21:16 +03:00
|
|
|
mozilla::dom::PopupBlocker::PopupControlState RevisePopupAbuseLevel(
|
|
|
|
mozilla::dom::PopupBlocker::PopupControlState aState);
|
2017-11-15 19:30:13 +03:00
|
|
|
void FireAbuseEvents(const nsAString& aPopupURL,
|
|
|
|
const nsAString& aPopupWindowName,
|
|
|
|
const nsAString& aPopupWindowFeatures);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void ReportLargeAllocStatus();
|
|
|
|
|
|
|
|
public:
|
|
|
|
void FlushPendingNotifications(mozilla::FlushType aType);
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
void EnsureReflowFlushAndPaint();
|
|
|
|
void CheckSecurityWidthAndHeight(int32_t* width, int32_t* height,
|
|
|
|
mozilla::dom::CallerType aCallerType);
|
|
|
|
void CheckSecurityLeftAndTop(int32_t* left, int32_t* top,
|
|
|
|
mozilla::dom::CallerType aCallerType);
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
// Arguments to this function should have values in app units
|
|
|
|
void SetCSSViewportWidthAndHeight(nscoord width, nscoord height);
|
|
|
|
// Arguments to this function should have values in device pixels
|
|
|
|
nsresult SetDocShellWidthAndHeight(int32_t width, int32_t height);
|
|
|
|
|
|
|
|
static bool CanSetProperty(const char* aPrefName);
|
|
|
|
|
|
|
|
static void MakeScriptDialogTitle(nsAString& aOutTitle,
|
|
|
|
nsIPrincipal* aSubjectPrincipal);
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
bool CanMoveResizeWindows(mozilla::dom::CallerType aCallerType);
|
|
|
|
|
|
|
|
// If aDoFlush is true, we'll flush our own layout; otherwise we'll try to
|
|
|
|
// just flush our parent and only flush ourselves if we think we need to.
|
|
|
|
// Outer windows only.
|
|
|
|
mozilla::CSSPoint GetScrollXY(bool aDoFlush);
|
|
|
|
|
|
|
|
int32_t GetScrollBoundaryOuter(mozilla::Side aSide);
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
nsresult GetInnerSize(mozilla::CSSIntSize& aSize);
|
|
|
|
nsIntSize GetOuterSize(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterSize(int32_t aLengthCSSPixels, bool aIsWidth,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsRect GetInnerScreenRect();
|
|
|
|
|
|
|
|
bool IsFrame();
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
// If aLookForCallerOnJSStack is true, this method will look at the JS stack
|
|
|
|
// to determine who the caller is. If it's false, it'll use |this| as the
|
|
|
|
// caller.
|
|
|
|
bool WindowExists(const nsAString& aName, bool aForceNoOpener,
|
|
|
|
bool aLookForCallerOnJSStack);
|
|
|
|
|
|
|
|
already_AddRefed<nsIWidget> GetMainWidget();
|
|
|
|
nsIWidget* GetNearestWidget() const;
|
|
|
|
|
|
|
|
bool IsInModalState();
|
|
|
|
|
2018-09-13 02:20:28 +03:00
|
|
|
bool HasStorageAccess() const { return mHasStorageAccess; }
|
|
|
|
void SetHasStorageAccess(bool aHasStorageAccess) {
|
|
|
|
mHasStorageAccess = aHasStorageAccess;
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// Convenience functions for the many methods that need to scale
|
|
|
|
// from device to CSS pixels or vice versa. Note: if a presentation
|
|
|
|
// context is not available, they will assume a 1:1 ratio.
|
|
|
|
int32_t DevToCSSIntPixels(int32_t px);
|
|
|
|
int32_t CSSToDevIntPixels(int32_t px);
|
|
|
|
nsIntSize DevToCSSIntPixels(nsIntSize px);
|
|
|
|
nsIntSize CSSToDevIntPixels(nsIntSize px);
|
|
|
|
|
2018-04-26 22:28:30 +03:00
|
|
|
virtual void SetFocusedElement(mozilla::dom::Element* aElement,
|
|
|
|
uint32_t aFocusMethod = 0,
|
|
|
|
bool aNeedsFocus = false) override;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
virtual uint32_t GetFocusMethod() override;
|
|
|
|
|
|
|
|
virtual bool ShouldShowFocusRing() override;
|
|
|
|
|
|
|
|
virtual void SetKeyboardIndicators(
|
|
|
|
UIStateChangeType aShowAccelerators,
|
|
|
|
UIStateChangeType aShowFocusRings) override;
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual already_AddRefed<nsPIWindowRoot> GetTopWindowRoot() override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void NotifyWindowIDDestroyed(const char* aTopic);
|
|
|
|
|
|
|
|
void ClearStatus();
|
|
|
|
|
|
|
|
virtual void UpdateParentTarget() override;
|
|
|
|
|
|
|
|
void InitializeShowFocusRings();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Helper for getComputedStyle and getDefaultComputedStyle
|
|
|
|
already_AddRefed<nsICSSDeclaration> GetComputedStyleHelperOuter(
|
|
|
|
mozilla::dom::Element& aElt, const nsAString& aPseudoElt,
|
|
|
|
bool aDefaultStylesOnly);
|
|
|
|
|
|
|
|
// Outer windows only.
|
|
|
|
void PreloadLocalStorage();
|
|
|
|
|
|
|
|
// Returns CSS pixels based on primary screen. Outer windows only.
|
|
|
|
mozilla::CSSIntPoint GetScreenXY(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
void PostMessageMozOuter(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const nsAString& aTargetOrigin,
|
|
|
|
JS::Handle<JS::Value> aTransfer,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
// Ask the user if further dialogs should be blocked, if dialogs are currently
|
|
|
|
// being abused. This is used in the cases where we have no modifiable UI to
|
|
|
|
// show, in that case we show a separate dialog to ask this question.
|
|
|
|
bool ConfirmDialogIfNeeded();
|
|
|
|
|
|
|
|
// Helper called after moving/resizing, to update docShell's presContext
|
|
|
|
// if we have caused a resolution change by moving across monitors.
|
|
|
|
void CheckForDPIChange();
|
|
|
|
|
|
|
|
private:
|
|
|
|
enum class SecureContextFlags { eDefault, eIgnoreOpener };
|
|
|
|
// Called only on outer windows to compute the value that will be returned by
|
|
|
|
// IsSecureContext() for the inner window that corresponds to aDocument.
|
|
|
|
bool ComputeIsSecureContext(
|
|
|
|
nsIDocument* aDocument,
|
|
|
|
SecureContextFlags aFlags = SecureContextFlags::eDefault);
|
|
|
|
|
2019-01-02 16:27:05 +03:00
|
|
|
void SetDocShell(nsDocShell* aDocShell);
|
2018-10-10 13:20:36 +03:00
|
|
|
|
2017-11-21 21:47:36 +03:00
|
|
|
// nsPIDOMWindow{Inner,Outer} should be able to see these helper methods.
|
2017-11-15 19:34:04 +03:00
|
|
|
friend class nsPIDOMWindowInner;
|
|
|
|
friend class nsPIDOMWindowOuter;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
mozilla::dom::TabGroup* TabGroupOuter();
|
|
|
|
|
|
|
|
void SetIsBackgroundInternal(bool aIsBackground);
|
|
|
|
|
2017-11-15 19:34:47 +03:00
|
|
|
nsresult GetInterfaceInternal(const nsIID& aIID, void** aSink);
|
|
|
|
|
2018-07-11 13:38:47 +03:00
|
|
|
void MaybeAllowStorageForOpenedWindow(nsIURI* aURI);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
// Dispatch a runnable related to the global.
|
|
|
|
virtual nsresult Dispatch(mozilla::TaskCategory aCategory,
|
|
|
|
already_AddRefed<nsIRunnable>&& aRunnable) override;
|
|
|
|
|
|
|
|
virtual nsISerialEventTarget* EventTargetFor(
|
|
|
|
mozilla::TaskCategory aCategory) const override;
|
|
|
|
|
|
|
|
virtual mozilla::AbstractThread* AbstractMainThreadFor(
|
|
|
|
mozilla::TaskCategory aCategory) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
2018-09-12 18:51:30 +03:00
|
|
|
bool mFullscreen : 1;
|
2017-11-15 19:30:13 +03:00
|
|
|
bool mFullscreenMode : 1;
|
|
|
|
bool mIsClosed : 1;
|
|
|
|
bool mInClose : 1;
|
|
|
|
// mHavePendingClose means we've got a termination function set to
|
|
|
|
// close us when the JS stops executing or that we have a close
|
|
|
|
// event posted. If this is set, just ignore window.close() calls.
|
|
|
|
bool mHavePendingClose : 1;
|
|
|
|
bool mHadOriginalOpener : 1;
|
|
|
|
bool mIsPopupSpam : 1;
|
|
|
|
|
|
|
|
// Indicates whether scripts are allowed to close this window.
|
|
|
|
bool mBlockScriptedClosingFlag : 1;
|
|
|
|
|
|
|
|
// Window offline status. Checked to see if we need to fire offline event
|
|
|
|
bool mWasOffline : 1;
|
|
|
|
|
|
|
|
// Indicates whether we're in the middle of creating an initializing
|
|
|
|
// a new inner window object.
|
|
|
|
bool mCreatingInnerWindow : 1;
|
|
|
|
|
|
|
|
// Fast way to tell if this is a chrome window (without having to QI).
|
|
|
|
bool mIsChrome : 1;
|
|
|
|
|
|
|
|
// whether scripts may close the window,
|
|
|
|
// even if "dom.allow_scripts_to_close_windows" is false.
|
|
|
|
bool mAllowScriptsToClose : 1;
|
|
|
|
|
|
|
|
bool mTopLevelOuterContentWindow : 1;
|
|
|
|
|
2018-09-13 02:20:28 +03:00
|
|
|
// whether storage access has been granted to this frame.
|
|
|
|
bool mHasStorageAccess : 1;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
nsCOMPtr<nsIScriptContext> mContext;
|
|
|
|
nsWeakPtr mOpener;
|
|
|
|
nsCOMPtr<nsIControllers> mControllers;
|
|
|
|
|
|
|
|
// For |window.arguments|, via |openDialog|.
|
|
|
|
nsCOMPtr<nsIArray> mArguments;
|
|
|
|
|
|
|
|
RefPtr<nsDOMWindowList> mFrames;
|
|
|
|
RefPtr<nsDOMWindowUtils> mWindowUtils;
|
|
|
|
nsString mStatus;
|
|
|
|
|
|
|
|
RefPtr<mozilla::dom::Storage> mLocalStorage;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> mDocumentPrincipal;
|
|
|
|
|
2018-11-23 18:14:23 +03:00
|
|
|
#ifdef DEBUG
|
2017-11-15 19:30:13 +03:00
|
|
|
uint32_t mSerial;
|
|
|
|
|
|
|
|
bool mSetOpenerWindowCalled;
|
|
|
|
nsCOMPtr<nsIURI> mLastOpenedURI;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool mCleanedUp;
|
|
|
|
|
2017-11-21 23:42:18 +03:00
|
|
|
// It's useful when we get matched EnterModalState/LeaveModalState calls, in
|
|
|
|
// which case the outer window is responsible for unsuspending events on the
|
|
|
|
// document. If we don't (for example, if the outer window is closed before
|
|
|
|
// the LeaveModalState call), then the inner window whose mDoc is our
|
|
|
|
// mSuspendedDoc is responsible for unsuspending it.
|
2017-11-15 19:30:13 +03:00
|
|
|
nsCOMPtr<nsIDocument> mSuspendedDoc;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// This member is used in the debug only assertions in TabGroup()
|
|
|
|
// to catch cyclic parent/opener trees and not overflow the stack.
|
|
|
|
bool mIsValidatingTabGroup;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// This is the CC generation the last time we called CanSkip.
|
|
|
|
uint32_t mCanSkipCCGeneration;
|
|
|
|
|
|
|
|
// When non-zero, the document should receive a vrdisplayactivate event
|
|
|
|
// after loading. The value is the ID of the VRDisplay that content should
|
|
|
|
// begin presentation on.
|
2017-11-21 23:42:18 +03:00
|
|
|
uint32_t mAutoActivateVRDisplayID;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
static OuterWindowByIdTable* sOuterWindowsById;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// Members in the mChromeFields member should only be used in chrome windows.
|
|
|
|
// All accesses to this field should be guarded by a check of mIsChrome.
|
|
|
|
struct ChromeFields {
|
|
|
|
nsCOMPtr<nsIBrowserDOMWindow> mBrowserDOMWindow;
|
|
|
|
// A weak pointer to the nsPresShell that we are doing fullscreen for.
|
|
|
|
// The pointer being set indicates we've set the IsInFullscreenChange
|
|
|
|
// flag on this pres shell.
|
|
|
|
nsWeakPtr mFullscreenPresShell;
|
|
|
|
} mChromeFields;
|
|
|
|
|
|
|
|
friend class nsDOMScriptableHelper;
|
|
|
|
friend class nsDOMWindowUtils;
|
2019-01-02 16:27:05 +03:00
|
|
|
friend class mozilla::dom::BrowsingContext;
|
2017-11-15 19:30:13 +03:00
|
|
|
friend class mozilla::dom::PostMessageEvent;
|
|
|
|
friend class DesktopNotification;
|
|
|
|
friend class mozilla::dom::TimeoutManager;
|
|
|
|
friend class IdleRequestExecutor;
|
2017-11-15 19:33:29 +03:00
|
|
|
friend class nsGlobalWindowInner;
|
2017-11-15 19:30:13 +03:00
|
|
|
};
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
// XXX: EWW - This is an awful hack - let's not do this
|
|
|
|
#include "nsGlobalWindowInner.h"
|
|
|
|
|
|
|
|
inline nsISupports* ToSupports(nsGlobalWindowOuter* p) {
|
2018-04-20 07:49:30 +03:00
|
|
|
return static_cast<mozilla::dom::EventTarget*>(p);
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsISupports* ToCanonicalSupports(nsGlobalWindowOuter* p) {
|
2018-04-20 07:49:30 +03:00
|
|
|
return static_cast<mozilla::dom::EventTarget*>(p);
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsIGlobalObject* nsGlobalWindowOuter::GetOwnerGlobal() const {
|
2017-11-15 19:34:20 +03:00
|
|
|
return GetCurrentInnerWindowInternal();
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsGlobalWindowOuter* nsGlobalWindowOuter::GetTopInternal() {
|
2017-11-15 19:34:20 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> top = GetTop();
|
2017-11-15 19:30:13 +03:00
|
|
|
if (top) {
|
|
|
|
return nsGlobalWindowOuter::Cast(top);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsGlobalWindowOuter* nsGlobalWindowOuter::GetScriptableTopInternal() {
|
2017-11-15 19:30:13 +03:00
|
|
|
nsPIDOMWindowOuter* top = GetScriptableTop();
|
|
|
|
return nsGlobalWindowOuter::Cast(top);
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsIScriptContext* nsGlobalWindowOuter::GetContextInternal() {
|
|
|
|
return mContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsGlobalWindowOuter* nsGlobalWindowOuter::GetOuterWindowInternal() {
|
2017-11-15 19:30:13 +03:00
|
|
|
return nsGlobalWindowOuter::Cast(GetOuterWindow());
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsGlobalWindowInner* nsGlobalWindowOuter::GetCurrentInnerWindowInternal()
|
|
|
|
const {
|
2017-11-15 19:30:13 +03:00
|
|
|
return nsGlobalWindowInner::Cast(mInnerWindow);
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsGlobalWindowInner* nsGlobalWindowOuter::EnsureInnerWindowInternal() {
|
2017-11-15 19:30:13 +03:00
|
|
|
return nsGlobalWindowInner::Cast(AsOuter()->EnsureInnerWindow());
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline bool nsGlobalWindowOuter::IsTopLevelWindow() {
|
2017-11-15 19:30:13 +03:00
|
|
|
nsPIDOMWindowOuter* parentWindow = GetScriptableTop();
|
|
|
|
return parentWindow == this->AsOuter();
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline bool nsGlobalWindowOuter::IsPopupSpamWindow() { return mIsPopupSpam; }
|
2017-11-15 19:30:13 +03:00
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline bool nsGlobalWindowOuter::IsFrame() {
|
2017-11-15 19:30:13 +03:00
|
|
|
return GetParentInternal() != nullptr;
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline void nsGlobalWindowOuter::MaybeClearInnerWindow(
|
|
|
|
nsGlobalWindowInner* aExpectedInner) {
|
2017-11-15 19:30:13 +03:00
|
|
|
if (mInnerWindow == aExpectedInner->AsInner()) {
|
|
|
|
mInnerWindow = nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
#endif /* nsGlobalWindowOuter_h___ */
|