mirror of
https://github.com/daijro/camoufox.git
synced 2026-09-09 16:02:28 +00:00
* Fix Linux ARM Builds (#4) * linux fix * platform specific sqlite dependency * linux symlink --------- Co-authored-by: Ubuntu <ubuntu@ip-172-31-25-90.us-east-2.compute.internal> * symlinks for all linux archs --------- Co-authored-by: Ubuntu <ubuntu@ip-172-31-25-90.us-east-2.compute.internal>
3616 lines
134 KiB
Diff
3616 lines
134 KiB
Diff
diff --git a/accessible/interfaces/nsIAccessibleDocument.idl b/accessible/interfaces/nsIAccessibleDocument.idl
|
|
index 6c932c14a0..6312131c94 100644
|
|
--- a/accessible/interfaces/nsIAccessibleDocument.idl
|
|
+++ b/accessible/interfaces/nsIAccessibleDocument.idl
|
|
@@ -73,4 +73,9 @@ interface nsIAccessibleDocument : nsISupports
|
|
* The BrowsingContext of this document.
|
|
*/
|
|
readonly attribute BrowsingContext browsingContext;
|
|
+
|
|
+ /**
|
|
+ * Return whether it is updating.
|
|
+ */
|
|
+ readonly attribute boolean isUpdatePendingForJugglerAccessibility;
|
|
};
|
|
diff --git a/accessible/xpcom/xpcAccessibleDocument.cpp b/accessible/xpcom/xpcAccessibleDocument.cpp
|
|
index 3229ee415b..c2cc38ded2 100644
|
|
--- a/accessible/xpcom/xpcAccessibleDocument.cpp
|
|
+++ b/accessible/xpcom/xpcAccessibleDocument.cpp
|
|
@@ -151,6 +151,13 @@ xpcAccessibleDocument::GetBrowsingContext(
|
|
return NS_OK;
|
|
}
|
|
|
|
+NS_IMETHODIMP
|
|
+xpcAccessibleDocument::GetIsUpdatePendingForJugglerAccessibility(bool* updating) {
|
|
+ NS_ENSURE_ARG_POINTER(updating);
|
|
+ *updating = Intl()->Controller()->IsUpdatePending();
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
// xpcAccessibleDocument
|
|
|
|
diff --git a/accessible/xpcom/xpcAccessibleDocument.h b/accessible/xpcom/xpcAccessibleDocument.h
|
|
index 9b6effc38f..939ff9615b 100644
|
|
--- a/accessible/xpcom/xpcAccessibleDocument.h
|
|
+++ b/accessible/xpcom/xpcAccessibleDocument.h
|
|
@@ -48,6 +48,8 @@ class xpcAccessibleDocument : public xpcAccessibleHyperText,
|
|
nsIAccessibleDocument** aDocument) final;
|
|
NS_IMETHOD GetBrowsingContext(dom::BrowsingContext** aBrowsingContext) final;
|
|
|
|
+ NS_IMETHOD GetIsUpdatePendingForJugglerAccessibility(bool* aUpdating) final;
|
|
+
|
|
/**
|
|
* Return XPCOM wrapper for the internal accessible.
|
|
*/
|
|
diff --git a/browser/app/winlauncher/LauncherProcessWin.cpp b/browser/app/winlauncher/LauncherProcessWin.cpp
|
|
index 6766615d29..a70473d9f4 100644
|
|
--- a/browser/app/winlauncher/LauncherProcessWin.cpp
|
|
+++ b/browser/app/winlauncher/LauncherProcessWin.cpp
|
|
@@ -22,6 +22,7 @@
|
|
#include "mozilla/WinHeaderOnlyUtils.h"
|
|
#include "nsWindowsHelpers.h"
|
|
|
|
+#include <io.h>
|
|
#include <windows.h>
|
|
#include <processthreadsapi.h>
|
|
|
|
@@ -413,8 +414,18 @@ Maybe<int> LauncherMain(int& argc, wchar_t* argv[]) {
|
|
HANDLE stdHandles[] = {::GetStdHandle(STD_INPUT_HANDLE),
|
|
::GetStdHandle(STD_OUTPUT_HANDLE),
|
|
::GetStdHandle(STD_ERROR_HANDLE)};
|
|
-
|
|
attrs.AddInheritableHandles(stdHandles);
|
|
+ // Playwright pipe installation.
|
|
+ bool hasJugglerPipe =
|
|
+ mozilla::CheckArg(argc, argv, "juggler-pipe", nullptr,
|
|
+ mozilla::CheckArgFlag::None) == mozilla::ARG_FOUND;
|
|
+ if (hasJugglerPipe) {
|
|
+ intptr_t stdio3 = _get_osfhandle(3);
|
|
+ intptr_t stdio4 = _get_osfhandle(4);
|
|
+ HANDLE pipeHandles[] = {reinterpret_cast<HANDLE>(stdio3),
|
|
+ reinterpret_cast<HANDLE>(stdio4)};
|
|
+ attrs.AddInheritableHandles(pipeHandles);
|
|
+ }
|
|
|
|
DWORD creationFlags = CREATE_SUSPENDED | CREATE_UNICODE_ENVIRONMENT;
|
|
|
|
diff --git a/browser/installer/allowed-dupes.mn b/browser/installer/allowed-dupes.mn
|
|
index 0e195e47d9..d7ecbe4648 100644
|
|
--- a/browser/installer/allowed-dupes.mn
|
|
+++ b/browser/installer/allowed-dupes.mn
|
|
@@ -61,6 +61,12 @@ browser/chrome/browser/builtin-addons/webcompat/shims/empty-shim.txt
|
|
removed-files
|
|
#endif
|
|
|
|
+# Juggler/marionette files
|
|
+chrome/juggler/content/content/floating-scrollbars.css
|
|
+browser/chrome/devtools/skin/floating-scrollbars-responsive-design.css
|
|
+chrome/juggler/content/server/stream-utils.js
|
|
+chrome/marionette/content/stream-utils.js
|
|
+
|
|
# Bug 1606928 - There's no reliable way to connect Top Sites favicons with the favicons in the Search Service
|
|
browser/chrome/browser/content/activity-stream/data/content/tippytop/favicons/allegro-pl.ico
|
|
browser/defaults/settings/main/search-config-icons/96327a73-c433-5eb4-a16d-b090cadfb80b
|
|
diff --git a/browser/installer/package-manifest.in b/browser/installer/package-manifest.in
|
|
index 6bb2e64906..8bf50addfb 100644
|
|
--- a/browser/installer/package-manifest.in
|
|
+++ b/browser/installer/package-manifest.in
|
|
@@ -195,6 +195,9 @@
|
|
@RESPATH@/chrome/remote.manifest
|
|
#endif
|
|
|
|
+@RESPATH@/chrome/juggler@JAREXT@
|
|
+@RESPATH@/chrome/juggler.manifest
|
|
+
|
|
; Modules
|
|
@RESPATH@/browser/modules/*
|
|
@RESPATH@/modules/*
|
|
diff --git a/devtools/server/socket/websocket-server.js b/devtools/server/socket/websocket-server.js
|
|
index d49c6fbf1b..7ea3540947 100644
|
|
--- a/devtools/server/socket/websocket-server.js
|
|
+++ b/devtools/server/socket/websocket-server.js
|
|
@@ -134,13 +134,12 @@ function writeHttpResponse(output, response) {
|
|
* Process the WebSocket handshake headers and return the key to be sent in
|
|
* Sec-WebSocket-Accept response header.
|
|
*/
|
|
-function processRequest({ requestLine, headers }) {
|
|
+function processRequest({ requestLine, headers }, expectedPath) {
|
|
const [method, path] = requestLine.split(" ");
|
|
if (method !== "GET") {
|
|
throw new Error("The handshake request must use GET method");
|
|
}
|
|
-
|
|
- if (path !== "/") {
|
|
+ if (path !== expectedPath) {
|
|
throw new Error("The handshake request has unknown path");
|
|
}
|
|
|
|
@@ -190,13 +189,13 @@ function computeKey(key) {
|
|
/**
|
|
* Perform the server part of a WebSocket opening handshake on an incoming connection.
|
|
*/
|
|
-const serverHandshake = async function (input, output) {
|
|
+const serverHandshake = async function (input, output, expectedPath) {
|
|
// Read the request
|
|
const request = await readHttpRequest(input);
|
|
|
|
try {
|
|
// Check and extract info from the request
|
|
- const { acceptKey } = processRequest(request);
|
|
+ const { acceptKey } = processRequest(request, expectedPath);
|
|
|
|
// Send response headers
|
|
await writeHttpResponse(output, [
|
|
@@ -218,8 +217,8 @@ const serverHandshake = async function (input, output) {
|
|
* Performs the WebSocket handshake and waits for the WebSocket to open.
|
|
* Returns Promise with a WebSocket ready to send and receive messages.
|
|
*/
|
|
-const accept = async function (transport, input, output) {
|
|
- await serverHandshake(input, output);
|
|
+const accept = async function (transport, input, output, expectedPath) {
|
|
+ await serverHandshake(input, output, expectedPath || "/");
|
|
|
|
const transportProvider = {
|
|
setListener(upgradeListener) {
|
|
diff --git a/docshell/base/BrowsingContext.cpp b/docshell/base/BrowsingContext.cpp
|
|
index 81896a2c74..86f3d642b7 100644
|
|
--- a/docshell/base/BrowsingContext.cpp
|
|
+++ b/docshell/base/BrowsingContext.cpp
|
|
@@ -116,8 +116,15 @@ struct ParamTraits<mozilla::dom::DisplayMode>
|
|
|
|
template <>
|
|
struct ParamTraits<mozilla::dom::PrefersColorSchemeOverride>
|
|
- : public mozilla::dom::WebIDLEnumSerializer<
|
|
- mozilla::dom::PrefersColorSchemeOverride> {};
|
|
+ : public mozilla::dom::WebIDLEnumSerializer<mozilla::dom::PrefersColorSchemeOverride> {};
|
|
+
|
|
+template <>
|
|
+struct ParamTraits<mozilla::dom::PrefersReducedMotionOverride>
|
|
+ : public mozilla::dom::WebIDLEnumSerializer<mozilla::dom::PrefersReducedMotionOverride> {};
|
|
+
|
|
+template <>
|
|
+struct ParamTraits<mozilla::dom::PrefersContrastOverride>
|
|
+ : public mozilla::dom::WebIDLEnumSerializer<mozilla::dom::PrefersContrastOverride> {};
|
|
|
|
template <>
|
|
struct ParamTraits<mozilla::dom::ForcedColorsOverride>
|
|
@@ -3342,6 +3349,32 @@ void BrowsingContext::DidSet(FieldIndex<IDX_LanguageOverride>,
|
|
});
|
|
}
|
|
|
|
+void BrowsingContext::DidSet(FieldIndex<IDX_PrefersContrastOverride>,
|
|
+ dom::PrefersContrastOverride aOldValue) {
|
|
+ MOZ_ASSERT(IsTop());
|
|
+ if (PrefersContrastOverride() == aOldValue) {
|
|
+ return;
|
|
+ }
|
|
+ PresContextAffectingFieldChanged();
|
|
+}
|
|
+
|
|
+void BrowsingContext::DidSet(FieldIndex<IDX_PrefersReducedMotionOverride>,
|
|
+ dom::PrefersReducedMotionOverride aOldValue) {
|
|
+ MOZ_ASSERT(IsTop());
|
|
+ if (PrefersReducedMotionOverride() == aOldValue) {
|
|
+ return;
|
|
+ }
|
|
+ PreOrderWalk([&](BrowsingContext* aContext) {
|
|
+ if (nsIDocShell* shell = aContext->GetDocShell()) {
|
|
+ if (nsPresContext* pc = shell->GetPresContext()) {
|
|
+ pc->MediaFeatureValuesChanged(
|
|
+ {MediaFeatureChangeReason::SystemMetricsChange},
|
|
+ MediaFeatureChangePropagation::JustThisDocument);
|
|
+ }
|
|
+ }
|
|
+ });
|
|
+}
|
|
+
|
|
void BrowsingContext::DidSet(FieldIndex<IDX_MediumOverride>,
|
|
nsString&& aOldValue) {
|
|
MOZ_ASSERT(IsTop());
|
|
@@ -3689,7 +3722,7 @@ void BrowsingContext::SetGeolocationServiceOverride(
|
|
if (aGeolocationOverride.WasPassed()) {
|
|
if (!mGeolocationServiceOverride) {
|
|
mGeolocationServiceOverride = new nsGeolocationService();
|
|
- mGeolocationServiceOverride->Init();
|
|
+ mGeolocationServiceOverride->Init(true /* isOverride */);
|
|
}
|
|
mGeolocationServiceOverride->Update(aGeolocationOverride.Value());
|
|
} else if (RefPtr<nsGeolocationService> serviceOverride =
|
|
diff --git a/docshell/base/BrowsingContext.h b/docshell/base/BrowsingContext.h
|
|
index 724326453f..ffa90c3247 100644
|
|
--- a/docshell/base/BrowsingContext.h
|
|
+++ b/docshell/base/BrowsingContext.h
|
|
@@ -209,11 +209,11 @@ struct EmbedderColorSchemes {
|
|
FIELD(GVInaudibleAutoplayRequestStatus, GVAutoplayRequestStatus) \
|
|
/* ScreenOrientation-related APIs */ \
|
|
FIELD(CurrentOrientationAngle, float) \
|
|
- FIELD(CurrentOrientationType, mozilla::dom::OrientationType) \
|
|
+ FIELD(CurrentOrientationType, dom::OrientationType) \
|
|
FIELD(OrientationLock, mozilla::hal::ScreenOrientation) \
|
|
FIELD(HasOrientationOverride, bool) \
|
|
FIELD(UserAgentOverride, nsString) \
|
|
- FIELD(TouchEventsOverrideInternal, mozilla::dom::TouchEventsOverride) \
|
|
+ FIELD(TouchEventsOverrideInternal, dom::TouchEventsOverride) \
|
|
FIELD(EmbedderElementType, Maybe<nsString>) \
|
|
FIELD(MessageManagerGroup, nsString) \
|
|
FIELD(MaxTouchPointsOverride, uint8_t) \
|
|
@@ -254,6 +254,9 @@ struct EmbedderColorSchemes {
|
|
* <browser> embedder element. */ \
|
|
FIELD(EmbedderColorSchemes, EmbedderColorSchemes) \
|
|
FIELD(DisplayMode, dom::DisplayMode) \
|
|
+ /* playwright addition */ \
|
|
+ FIELD(PrefersReducedMotionOverride, dom::PrefersReducedMotionOverride) \
|
|
+ FIELD(PrefersContrastOverride, dom::PrefersContrastOverride) \
|
|
/* The number of entries added to the session history because of this \
|
|
* browsing context. */ \
|
|
FIELD(HistoryEntryCount, uint32_t) \
|
|
@@ -1050,6 +1053,14 @@ class BrowsingContext : public nsILoadContext, public nsWrapperCache {
|
|
return GetForcedColorsOverride();
|
|
}
|
|
|
|
+ dom::PrefersReducedMotionOverride PrefersReducedMotionOverride() const {
|
|
+ return GetPrefersReducedMotionOverride();
|
|
+ }
|
|
+
|
|
+ dom::PrefersContrastOverride PrefersContrastOverride() const {
|
|
+ return GetPrefersContrastOverride();
|
|
+ }
|
|
+
|
|
bool IsInBFCache() const;
|
|
|
|
bool AllowJavascript() const { return GetAllowJavascript(); }
|
|
@@ -1230,6 +1241,11 @@ class BrowsingContext : public nsILoadContext, public nsWrapperCache {
|
|
return IsTop();
|
|
}
|
|
|
|
+ bool CanSet(FieldIndex<IDX_PrefersContrastOverride>,
|
|
+ dom::PrefersContrastOverride, ContentParent*) {
|
|
+ return IsTop();
|
|
+ }
|
|
+
|
|
bool CanSet(FieldIndex<IDX_ForcedColorsOverride>, dom::ForcedColorsOverride,
|
|
ContentParent*) {
|
|
return IsTop();
|
|
@@ -1249,12 +1265,23 @@ class BrowsingContext : public nsILoadContext, public nsWrapperCache {
|
|
void DidSet(FieldIndex<IDX_ForcedColorsOverride>,
|
|
dom::ForcedColorsOverride aOldValue);
|
|
|
|
+ void DidSet(FieldIndex<IDX_PrefersContrastOverride>,
|
|
+ dom::PrefersContrastOverride aOldValue);
|
|
+
|
|
template <typename Callback>
|
|
void WalkPresContexts(Callback&&);
|
|
void PresContextAffectingFieldChanged();
|
|
|
|
void DidSet(FieldIndex<IDX_LanguageOverride>, nsCString&& aOldValue);
|
|
|
|
+ bool CanSet(FieldIndex<IDX_PrefersReducedMotionOverride>,
|
|
+ dom::PrefersReducedMotionOverride, ContentParent*) {
|
|
+ return IsTop();
|
|
+ }
|
|
+
|
|
+ void DidSet(FieldIndex<IDX_PrefersReducedMotionOverride>,
|
|
+ dom::PrefersReducedMotionOverride aOldValue);
|
|
+
|
|
void DidSet(FieldIndex<IDX_TimezoneOverride>, nsString&& aOldValue);
|
|
|
|
void DidSet(FieldIndex<IDX_MediumOverride>, nsString&& aOldValue);
|
|
diff --git a/docshell/base/CanonicalBrowsingContext.cpp b/docshell/base/CanonicalBrowsingContext.cpp
|
|
index 6109e20259..9ccc289e8a 100644
|
|
--- a/docshell/base/CanonicalBrowsingContext.cpp
|
|
+++ b/docshell/base/CanonicalBrowsingContext.cpp
|
|
@@ -274,6 +274,8 @@ void CanonicalBrowsingContext::ReplacedBy(
|
|
txn.SetForceOffline(GetForceOffline());
|
|
txn.SetTopInnerSizeForRFP(GetTopInnerSizeForRFP());
|
|
txn.SetIPAddressSpace(GetIPAddressSpace());
|
|
+ txn.SetPrefersReducedMotionOverride(GetPrefersReducedMotionOverride());
|
|
+ txn.SetForcedColorsOverride(GetForcedColorsOverride());
|
|
txn.SetParentalControlsEnabled(GetParentalControlsEnabled());
|
|
|
|
if (!GetLanguageOverride().IsEmpty()) {
|
|
@@ -1905,6 +1907,12 @@ void CanonicalBrowsingContext::LoadURI(nsIURI* aURI,
|
|
(void)SetIsCaptivePortalTab(true);
|
|
}
|
|
|
|
+ {
|
|
+ nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
+ if (observerService) {
|
|
+ observerService->NotifyObservers(ToSupports(this), "juggler-navigation-started-browser", NS_ConvertASCIItoUTF16(nsPrintfCString("%" PRIu64, loadState->GetLoadIdentifier())).get());
|
|
+ }
|
|
+ }
|
|
LoadURI(loadState, true);
|
|
}
|
|
|
|
diff --git a/docshell/base/nsDocShell.cpp b/docshell/base/nsDocShell.cpp
|
|
index cee178c29e..8aeaed0336 100644
|
|
--- a/docshell/base/nsDocShell.cpp
|
|
+++ b/docshell/base/nsDocShell.cpp
|
|
@@ -16,6 +16,12 @@
|
|
# include <unistd.h> // for getpid()
|
|
#endif
|
|
|
|
+#if JS_HAS_INTL_API && !MOZ_SYSTEM_ICU
|
|
+# include "unicode/locid.h"
|
|
+#endif /* JS_HAS_INTL_API && !MOZ_SYSTEM_ICU */
|
|
+
|
|
+#include "js/LocaleSensitive.h"
|
|
+
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/AutoRestore.h"
|
|
#include "mozilla/BasePrincipal.h"
|
|
@@ -63,6 +69,7 @@
|
|
#include "mozilla/dom/DocGroup.h"
|
|
#include "mozilla/dom/Element.h"
|
|
#include "mozilla/dom/FragmentDirective.h"
|
|
+#include "mozilla/dom/Geolocation.h"
|
|
#include "mozilla/dom/HTMLAnchorElement.h"
|
|
#include "mozilla/dom/HTMLIFrameElement.h"
|
|
#include "mozilla/dom/Navigation.h"
|
|
@@ -95,6 +102,7 @@
|
|
#include "mozilla/dom/DocumentBinding.h"
|
|
#include "mozilla/glean/DocshellMetrics.h"
|
|
#include "mozilla/ipc/ProtocolUtils.h"
|
|
+#include "mozilla/dom/WorkerCommon.h"
|
|
#include "mozilla/net/DocumentChannel.h"
|
|
#include "mozilla/net/DocumentChannelChild.h"
|
|
#include "mozilla/net/ParentChannelWrapper.h"
|
|
@@ -119,6 +127,7 @@
|
|
#include "nsIDocumentViewer.h"
|
|
#include "mozilla/dom/Document.h"
|
|
#include "nsHTMLDocument.h"
|
|
+#include "mozilla/dom/Element.h"
|
|
#include "nsIDocumentLoaderFactory.h"
|
|
#include "nsIDOMWindow.h"
|
|
#include "nsIEditingSession.h"
|
|
@@ -214,6 +223,7 @@
|
|
#include "nsGlobalWindowInner.h"
|
|
#include "nsGlobalWindowOuter.h"
|
|
#include "nsJSEnvironment.h"
|
|
+#include "nsJSUtils.h"
|
|
#include "nsNetCID.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsObjectLoadingContent.h"
|
|
@@ -355,6 +365,14 @@ nsDocShell::nsDocShell(BrowsingContext* aBrowsingContext,
|
|
mAllowDNSPrefetch(true),
|
|
mAllowWindowControl(true),
|
|
mCSSErrorReportingEnabled(false),
|
|
+ mFileInputInterceptionEnabled(false),
|
|
+ mOverrideHasFocus(false),
|
|
+ mBypassCSPEnabled(false),
|
|
+ mForceActiveState(false),
|
|
+ mDisallowBFCache(false),
|
|
+ mReducedMotionOverride(REDUCED_MOTION_OVERRIDE_NONE),
|
|
+ mForcedColorsOverride(FORCED_COLORS_OVERRIDE_NO_OVERRIDE),
|
|
+ mContrastOverride(CONTRAST_OVERRIDE_NONE),
|
|
mAllowAuth(mItemType == typeContent),
|
|
mAllowKeywordFixup(false),
|
|
mDisableMetaRefreshWhenInactive(false),
|
|
@@ -3042,6 +3060,232 @@ nsDocShell::GetMessageManager(ContentFrameMessageManager** aMessageManager) {
|
|
return NS_OK;
|
|
}
|
|
|
|
+// =============== Juggler Begin =======================
|
|
+
|
|
+nsDocShell* nsDocShell::GetRootDocShell() {
|
|
+ nsCOMPtr<nsIDocShellTreeItem> rootAsItem;
|
|
+ GetInProcessSameTypeRootTreeItem(getter_AddRefs(rootAsItem));
|
|
+ nsCOMPtr<nsIDocShell> rootShell = do_QueryInterface(rootAsItem);
|
|
+ return nsDocShell::Cast(rootShell);
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetBypassCSPEnabled(bool* aEnabled) {
|
|
+ MOZ_ASSERT(aEnabled);
|
|
+ *aEnabled = mBypassCSPEnabled;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetBypassCSPEnabled(bool aEnabled) {
|
|
+ mBypassCSPEnabled = aEnabled;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetForceActiveState(bool* aEnabled) {
|
|
+ MOZ_ASSERT(aEnabled);
|
|
+ *aEnabled = mForceActiveState;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetForceActiveState(bool aEnabled) {
|
|
+ mForceActiveState = aEnabled;
|
|
+ ActivenessMaybeChanged();
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetDisallowBFCache(bool* aEnabled) {
|
|
+ MOZ_ASSERT(aEnabled);
|
|
+ *aEnabled = mDisallowBFCache;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetDisallowBFCache(bool aEnabled) {
|
|
+ mDisallowBFCache = aEnabled;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+bool nsDocShell::IsBypassCSPEnabled() {
|
|
+ return GetRootDocShell()->mBypassCSPEnabled;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetOverrideHasFocus(bool* aEnabled) {
|
|
+ MOZ_ASSERT(aEnabled);
|
|
+ *aEnabled = mOverrideHasFocus;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetOverrideHasFocus(bool aEnabled) {
|
|
+ mOverrideHasFocus = aEnabled;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+bool nsDocShell::ShouldOverrideHasFocus() const {
|
|
+ return mOverrideHasFocus;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetLanguageOverride(nsAString& aLanguageOverride) {
|
|
+ aLanguageOverride = GetRootDocShell()->mLanguageOverride;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+
|
|
+static void SetIcuLocale(const nsAString& aLanguageOverride) {
|
|
+ icu::Locale locale(NS_LossyConvertUTF16toASCII(aLanguageOverride).get());
|
|
+ if (icu::Locale::getDefault() != locale) {
|
|
+ UErrorCode error_code = U_ZERO_ERROR;
|
|
+ const char* lang = locale.getLanguage();
|
|
+ if (lang != nullptr && *lang != '\0') {
|
|
+ icu::Locale::setDefault(locale, error_code);
|
|
+ } else {
|
|
+ fprintf(stderr, "SetIcuLocale Failed to set the ICU default locale to %s\n", NS_LossyConvertUTF16toASCII(aLanguageOverride).get());
|
|
+ }
|
|
+ }
|
|
+
|
|
+ AutoJSAPI jsapi;
|
|
+ jsapi.Init();
|
|
+ JSContext* cx = jsapi.cx();
|
|
+ JS_ResetDefaultLocale(JS_GetRuntime(cx));
|
|
+
|
|
+ ResetDefaultLocaleInAllWorkers();
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetLanguageOverride(const nsAString& aLanguageOverride) {
|
|
+ mLanguageOverride = aLanguageOverride;
|
|
+ SetIcuLocale(aLanguageOverride);
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::OverrideTimezone(const nsAString& aTimezoneOverride,
|
|
+ bool* aSuccess) {
|
|
+ NS_ENSURE_ARG(aSuccess);
|
|
+ NS_LossyConvertUTF16toASCII timeZoneId(aTimezoneOverride);
|
|
+ *aSuccess = nsJSUtils::SetTimeZoneOverride(timeZoneId.get());
|
|
+
|
|
+ // Set TZ which affects localtime_s().
|
|
+ auto setTimeZoneEnv = [](const char* value) {
|
|
+#if defined(_WIN32)
|
|
+ return _putenv_s("TZ", value) == 0;
|
|
+#else
|
|
+ return setenv("TZ", value, true) == 0;
|
|
+#endif /* _WIN32 */
|
|
+ };
|
|
+ if (*aSuccess) {
|
|
+ *aSuccess = setTimeZoneEnv(timeZoneId.get());
|
|
+ if (!*aSuccess) {
|
|
+ fprintf(stderr, "Failed to set 'TZ' to '%s'\n", timeZoneId.get());
|
|
+ }
|
|
+ }
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetFileInputInterceptionEnabled(bool* aEnabled) {
|
|
+ MOZ_ASSERT(aEnabled);
|
|
+ *aEnabled = GetRootDocShell()->mFileInputInterceptionEnabled;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetFileInputInterceptionEnabled(bool aEnabled) {
|
|
+ mFileInputInterceptionEnabled = aEnabled;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+bool nsDocShell::IsFileInputInterceptionEnabled() {
|
|
+ return GetRootDocShell()->mFileInputInterceptionEnabled;
|
|
+}
|
|
+
|
|
+void nsDocShell::FilePickerShown(mozilla::dom::Element* element) {
|
|
+ nsCOMPtr<nsIObserverService> observerService =
|
|
+ mozilla::services::GetObserverService();
|
|
+ observerService->NotifyObservers(
|
|
+ ToSupports(element), "juggler-file-picker-shown", nullptr);
|
|
+}
|
|
+
|
|
+RefPtr<nsGeolocationService> nsDocShell::GetGeolocationServiceOverride() {
|
|
+ return GetRootDocShell()->mGeolocationServiceOverride;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetGeolocationOverride(nsIDOMGeoPosition* aGeolocationOverride) {
|
|
+ if (aGeolocationOverride) {
|
|
+ if (!mGeolocationServiceOverride) {
|
|
+ mGeolocationServiceOverride = new nsGeolocationService();
|
|
+ mGeolocationServiceOverride->Init();
|
|
+ }
|
|
+ mGeolocationServiceOverride->Update(aGeolocationOverride);
|
|
+ } else {
|
|
+ mGeolocationServiceOverride = nullptr;
|
|
+ }
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetReducedMotionOverride(ReducedMotionOverride* aReducedMotionOverride) {
|
|
+ *aReducedMotionOverride = GetRootDocShell()->mReducedMotionOverride;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetReducedMotionOverride(ReducedMotionOverride aReducedMotionOverride) {
|
|
+ mReducedMotionOverride = aReducedMotionOverride;
|
|
+ RefPtr<nsPresContext> presContext = GetPresContext();
|
|
+ if (presContext) {
|
|
+ presContext->MediaFeatureValuesChanged(
|
|
+ {MediaFeatureChangeReason::SystemMetricsChange},
|
|
+ MediaFeatureChangePropagation::JustThisDocument);
|
|
+ }
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetForcedColorsOverride(ForcedColorsOverride* aForcedColorsOverride) {
|
|
+ *aForcedColorsOverride = GetRootDocShell()->mForcedColorsOverride;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetForcedColorsOverride(ForcedColorsOverride aForcedColorsOverride) {
|
|
+ mForcedColorsOverride = aForcedColorsOverride;
|
|
+ RefPtr<nsPresContext> presContext = GetPresContext();
|
|
+ if (presContext) {
|
|
+ presContext->MediaFeatureValuesChanged(
|
|
+ {MediaFeatureChangeReason::SystemMetricsChange},
|
|
+ MediaFeatureChangePropagation::JustThisDocument);
|
|
+ }
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::GetContrastOverride(ContrastOverride* aContrastOverride) {
|
|
+ *aContrastOverride = GetRootDocShell()->mContrastOverride;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDocShell::SetContrastOverride(ContrastOverride aContrastOverride) {
|
|
+ mContrastOverride = aContrastOverride;
|
|
+ RefPtr<nsPresContext> presContext = GetPresContext();
|
|
+ if (presContext) {
|
|
+ presContext->MediaFeatureValuesChanged(
|
|
+ {MediaFeatureChangeReason::SystemMetricsChange},
|
|
+ MediaFeatureChangePropagation::JustThisDocument);
|
|
+ }
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+// =============== Juggler End =======================
|
|
+
|
|
NS_IMETHODIMP
|
|
nsDocShell::GetIsNavigating(bool* aOut) {
|
|
*aOut = mIsNavigating;
|
|
@@ -4803,7 +5047,7 @@ nsDocShell::GetVisibility(bool* aVisibility) {
|
|
}
|
|
|
|
void nsDocShell::ActivenessMaybeChanged() {
|
|
- const bool isActive = mBrowsingContext->IsActive();
|
|
+ const bool isActive = mForceActiveState || mBrowsingContext->IsActive();
|
|
if (RefPtr<PresShell> presShell = GetPresShell()) {
|
|
presShell->ActivenessMaybeChanged();
|
|
}
|
|
@@ -6874,6 +7118,10 @@ bool nsDocShell::CanSavePresentation(uint32_t aLoadType,
|
|
return false; // no entry to save into
|
|
}
|
|
|
|
+ if (mDisallowBFCache) {
|
|
+ return false;
|
|
+ }
|
|
+
|
|
MOZ_ASSERT(!mozilla::SessionHistoryInParent(),
|
|
"mOSHE cannot be non-null with SHIP");
|
|
nsCOMPtr<nsIDocumentViewer> viewer = mOSHE->GetDocumentViewer();
|
|
@@ -8630,6 +8878,12 @@ nsresult nsDocShell::PerformRetargeting(nsDocShellLoadState* aLoadState) {
|
|
true, // aForceNoOpener
|
|
getter_AddRefs(newBC));
|
|
MOZ_ASSERT(!newBC);
|
|
+ if (rv == NS_OK) {
|
|
+ nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
+ if (observerService) {
|
|
+ observerService->NotifyObservers(GetAsSupports(this), "juggler-window-open-in-new-context", nullptr);
|
|
+ }
|
|
+ }
|
|
return rv;
|
|
}
|
|
|
|
@@ -10016,6 +10270,16 @@ nsresult nsDocShell::InternalLoad(nsDocShellLoadState* aLoadState,
|
|
nsINetworkPredictor::PREDICT_LOAD, attrs, nullptr);
|
|
|
|
nsCOMPtr<nsIRequest> req;
|
|
+
|
|
+ // Juggler: report navigation started for non-same-document and non-javascript
|
|
+ // navigations.
|
|
+ if (!isJavaScript && !sameDocument) {
|
|
+ nsCOMPtr<nsIObserverService> observerService =
|
|
+ mozilla::services::GetObserverService();
|
|
+ if (observerService) {
|
|
+ observerService->NotifyObservers(GetAsSupports(this), "juggler-navigation-started-renderer", NS_ConvertASCIItoUTF16(nsPrintfCString("%" PRIu64, aLoadState->GetLoadIdentifier())).get());
|
|
+ }
|
|
+ }
|
|
rv = DoURILoad(aLoadState, aCacheKey, getter_AddRefs(req));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
@@ -13431,6 +13695,9 @@ class OnLinkClickEvent : public Runnable {
|
|
mHandler->OnLinkClickSync(mContent, mLoadState, mNoOpenerImplied,
|
|
mTriggeringPrincipal);
|
|
}
|
|
+ nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
+ observerService->NotifyObservers(ToSupports(mContent), "juggler-link-click-sync", nullptr);
|
|
+
|
|
return NS_OK;
|
|
}
|
|
|
|
@@ -13548,6 +13815,8 @@ nsresult nsDocShell::OnLinkClick(
|
|
|
|
nsCOMPtr<nsIRunnable> ev = new OnLinkClickEvent(
|
|
this, aContent, loadState, noOpenerImplied, aTriggeringPrincipal);
|
|
+ nsCOMPtr<nsIObserverService> observerService = mozilla::services::GetObserverService();
|
|
+ observerService->NotifyObservers(ToSupports(aContent), "juggler-link-click", nullptr);
|
|
return Dispatch(ev.forget());
|
|
}
|
|
|
|
diff --git a/docshell/base/nsDocShell.h b/docshell/base/nsDocShell.h
|
|
index 4cc4ebb096..ec270518b3 100644
|
|
--- a/docshell/base/nsDocShell.h
|
|
+++ b/docshell/base/nsDocShell.h
|
|
@@ -16,6 +16,7 @@
|
|
#include "mozilla/WeakPtr.h"
|
|
#include "mozilla/dom/BrowsingContext.h"
|
|
#include "mozilla/dom/NavigationBinding.h"
|
|
+#include "mozilla/dom/Element.h"
|
|
#include "mozilla/dom/WindowProxyHolder.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsCharsetSource.h"
|
|
@@ -82,6 +83,7 @@ class nsCommandManager;
|
|
class nsDocShellEditorData;
|
|
class nsDOMNavigationTiming;
|
|
class nsDSURIContentListener;
|
|
+class nsGeolocationService;
|
|
class nsGlobalWindowOuter;
|
|
|
|
class FramingChecker;
|
|
@@ -414,6 +416,15 @@ class nsDocShell final : public nsDocLoader,
|
|
void SetWillChangeProcess() { mWillChangeProcess = true; }
|
|
bool WillChangeProcess() { return mWillChangeProcess; }
|
|
|
|
+ bool IsFileInputInterceptionEnabled();
|
|
+ void FilePickerShown(mozilla::dom::Element* element);
|
|
+
|
|
+ bool ShouldOverrideHasFocus() const;
|
|
+
|
|
+ bool IsBypassCSPEnabled();
|
|
+
|
|
+ RefPtr<nsGeolocationService> GetGeolocationServiceOverride();
|
|
+
|
|
// Create a content viewer within this nsDocShell for the given
|
|
// `WindowGlobalChild` actor.
|
|
nsresult CreateDocumentViewerForActor(
|
|
@@ -1058,6 +1069,8 @@ class nsDocShell final : public nsDocLoader,
|
|
|
|
bool CSSErrorReportingEnabled() const { return mCSSErrorReportingEnabled; }
|
|
|
|
+ nsDocShell* GetRootDocShell();
|
|
+
|
|
// Handles retrieval of subframe session history for nsDocShell::LoadURI. If a
|
|
// load is requested in a subframe of the current DocShell, the subframe
|
|
// loadType may need to reflect the loadType of the parent document, or in
|
|
@@ -1389,6 +1402,17 @@ class nsDocShell final : public nsDocLoader,
|
|
bool mAllowDNSPrefetch : 1;
|
|
bool mAllowWindowControl : 1;
|
|
bool mCSSErrorReportingEnabled : 1;
|
|
+ bool mFileInputInterceptionEnabled: 1;
|
|
+ bool mOverrideHasFocus : 1;
|
|
+ bool mBypassCSPEnabled : 1;
|
|
+ bool mForceActiveState : 1;
|
|
+ bool mDisallowBFCache : 1;
|
|
+ nsString mLanguageOverride;
|
|
+ RefPtr<nsGeolocationService> mGeolocationServiceOverride;
|
|
+ ReducedMotionOverride mReducedMotionOverride;
|
|
+ ForcedColorsOverride mForcedColorsOverride;
|
|
+ ContrastOverride mContrastOverride;
|
|
+
|
|
bool mAllowAuth : 1;
|
|
bool mAllowKeywordFixup : 1;
|
|
bool mDisableMetaRefreshWhenInactive : 1;
|
|
diff --git a/docshell/base/nsIDocShell.idl b/docshell/base/nsIDocShell.idl
|
|
index 888d99bae8..7e03f9c504 100644
|
|
--- a/docshell/base/nsIDocShell.idl
|
|
+++ b/docshell/base/nsIDocShell.idl
|
|
@@ -44,6 +44,7 @@ interface nsIURI;
|
|
interface nsIChannel;
|
|
interface nsIPolicyContainer;
|
|
interface nsIDocumentViewer;
|
|
+interface nsIDOMGeoPosition;
|
|
interface nsIEditor;
|
|
interface nsIEditingSession;
|
|
interface nsIInputStream;
|
|
@@ -719,6 +720,45 @@ interface nsIDocShell : nsIDocShellTreeItem
|
|
*/
|
|
void synchronizeLayoutHistoryState();
|
|
|
|
+ attribute boolean fileInputInterceptionEnabled;
|
|
+
|
|
+ attribute boolean overrideHasFocus;
|
|
+
|
|
+ attribute boolean bypassCSPEnabled;
|
|
+
|
|
+ attribute boolean forceActiveState;
|
|
+
|
|
+ attribute boolean disallowBFCache;
|
|
+
|
|
+ attribute AString languageOverride;
|
|
+
|
|
+ boolean overrideTimezone(in AString timezoneId);
|
|
+
|
|
+ cenum ReducedMotionOverride : 8 {
|
|
+ REDUCED_MOTION_OVERRIDE_REDUCE,
|
|
+ REDUCED_MOTION_OVERRIDE_NO_PREFERENCE,
|
|
+ REDUCED_MOTION_OVERRIDE_NONE, /* This clears the override. */
|
|
+ };
|
|
+ [infallible] attribute nsIDocShell_ReducedMotionOverride reducedMotionOverride;
|
|
+
|
|
+ cenum ForcedColorsOverride : 8 {
|
|
+ FORCED_COLORS_OVERRIDE_ACTIVE,
|
|
+ FORCED_COLORS_OVERRIDE_NONE,
|
|
+ FORCED_COLORS_OVERRIDE_NO_OVERRIDE, /* This clears the override. */
|
|
+ };
|
|
+ [infallible] attribute nsIDocShell_ForcedColorsOverride forcedColorsOverride;
|
|
+
|
|
+ cenum ContrastOverride : 8 {
|
|
+ CONTRAST_OVERRIDE_LESS,
|
|
+ CONTRAST_OVERRIDE_MORE,
|
|
+ CONTRAST_OVERRIDE_CUSTOM,
|
|
+ CONTRAST_OVERRIDE_NO_PREFERENCE,
|
|
+ CONTRAST_OVERRIDE_NONE, /* This clears the override. */
|
|
+ };
|
|
+ [infallible] attribute nsIDocShell_ContrastOverride contrastOverride;
|
|
+
|
|
+ void setGeolocationOverride(in nsIDOMGeoPosition position);
|
|
+
|
|
/**
|
|
* This attempts to save any applicable layout history state (like
|
|
* scroll position) in the nsISHEntry. This is normally done
|
|
diff --git a/dom/base/Document.cpp b/dom/base/Document.cpp
|
|
index 5a890d76ef..c4f24f7170 100644
|
|
--- a/dom/base/Document.cpp
|
|
+++ b/dom/base/Document.cpp
|
|
@@ -3937,6 +3937,9 @@ void Document::SendToConsole(nsCOMArray<nsISecurityConsoleMessage>& aMessages) {
|
|
}
|
|
|
|
void Document::ApplySettingsFromCSP(bool aSpeculative) {
|
|
+ if (mDocumentContainer && mDocumentContainer->IsBypassCSPEnabled())
|
|
+ return;
|
|
+
|
|
nsresult rv = NS_OK;
|
|
if (!aSpeculative) {
|
|
nsIContentSecurityPolicy* csp = PolicyContainer::GetCSP(mPolicyContainer);
|
|
@@ -4025,6 +4028,11 @@ nsresult Document::InitCSP(nsIChannel* aChannel) {
|
|
MOZ_ASSERT(mPolicyContainer,
|
|
"Policy container must be initialized before CSP!");
|
|
|
|
+ nsCOMPtr<nsIDocShell> shell(mDocumentContainer);
|
|
+ if (shell && nsDocShell::Cast(shell)->IsBypassCSPEnabled()) {
|
|
+ return NS_OK;
|
|
+ }
|
|
+
|
|
// If this is a data document - no need to set CSP.
|
|
if (mLoadedAsData) {
|
|
return NS_OK;
|
|
@@ -4897,6 +4905,10 @@ bool Document::HasFocus(ErrorResult& rv) const {
|
|
return false;
|
|
}
|
|
|
|
+ if (IsActive() && mDocumentContainer->ShouldOverrideHasFocus()) {
|
|
+ return true;
|
|
+ }
|
|
+
|
|
if (!fm->IsInActiveWindow(bc)) {
|
|
return false;
|
|
}
|
|
@@ -20483,6 +20495,35 @@ ColorScheme Document::PreferredColorScheme(IgnoreRFP aIgnoreRFP) const {
|
|
return PreferenceSheet::PrefsFor(*this).mColorScheme;
|
|
}
|
|
|
|
+bool Document::PrefersReducedMotion() const {
|
|
+ auto* docShell = static_cast<nsDocShell*>(GetDocShell());
|
|
+ nsIDocShell::ReducedMotionOverride reducedMotion;
|
|
+ if (docShell && docShell->GetReducedMotionOverride(&reducedMotion) == NS_OK &&
|
|
+ reducedMotion != nsIDocShell::REDUCED_MOTION_OVERRIDE_NONE) {
|
|
+ switch (reducedMotion) {
|
|
+ case nsIDocShell::REDUCED_MOTION_OVERRIDE_REDUCE:
|
|
+ return true;
|
|
+ case nsIDocShell::REDUCED_MOTION_OVERRIDE_NO_PREFERENCE:
|
|
+ return false;
|
|
+ case nsIDocShell::REDUCED_MOTION_OVERRIDE_NONE:
|
|
+ break;
|
|
+ };
|
|
+ }
|
|
+
|
|
+ if (auto* bc = GetBrowsingContext()) {
|
|
+ switch (bc->Top()->PrefersReducedMotionOverride()) {
|
|
+ case dom::PrefersReducedMotionOverride::Reduce:
|
|
+ return true;
|
|
+ case dom::PrefersReducedMotionOverride::No_preference:
|
|
+ return false;
|
|
+ case dom::PrefersReducedMotionOverride::None:
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ return LookAndFeel::GetInt(LookAndFeel::IntID::PrefersReducedMotion, 0) == 1;
|
|
+}
|
|
+
|
|
bool Document::HasRecentlyStartedForegroundLoads() {
|
|
if (!sLoadingForegroundTopLevelContentDocument) {
|
|
return false;
|
|
diff --git a/dom/base/Document.h b/dom/base/Document.h
|
|
index 5e25b19fb9..e7bfd1e29d 100644
|
|
--- a/dom/base/Document.h
|
|
+++ b/dom/base/Document.h
|
|
@@ -4317,6 +4317,8 @@ class Document : public nsINode,
|
|
// color-scheme meta tag.
|
|
ColorScheme DefaultColorScheme() const;
|
|
|
|
+ bool PrefersReducedMotion() const;
|
|
+
|
|
static bool HasRecentlyStartedForegroundLoads();
|
|
|
|
static bool AutomaticStorageAccessPermissionCanBeGranted(
|
|
diff --git a/dom/base/Navigator.cpp b/dom/base/Navigator.cpp
|
|
index 51d8331345..9880047350 100644
|
|
--- a/dom/base/Navigator.cpp
|
|
+++ b/dom/base/Navigator.cpp
|
|
@@ -338,16 +338,15 @@ void Navigator::GetAppName(nsAString& aAppName) const {
|
|
* for more detail.
|
|
*/
|
|
/* static */
|
|
-void Navigator::GetAcceptLanguages(nsTArray<nsString>& aLanguages,
|
|
- const nsCString* aLanguageOverride) {
|
|
+void Navigator::GetAcceptLanguages(const nsString* aLanguageOverride, nsTArray<nsString>& aLanguages) {
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
aLanguages.Clear();
|
|
|
|
// E.g. "de-de, en-us,en".
|
|
nsAutoCString acceptLang;
|
|
- if (aLanguageOverride) {
|
|
- acceptLang.Assign(aLanguageOverride->get());
|
|
+ if (aLanguageOverride && aLanguageOverride->Length()) {
|
|
+ acceptLang = NS_ConvertUTF16toUTF8(*aLanguageOverride);
|
|
} else {
|
|
intl::LocaleService::GetInstance()->GetAcceptLanguages(acceptLang);
|
|
}
|
|
@@ -407,13 +406,14 @@ void Navigator::GetLanguages(nsTArray<nsString>& aLanguages) {
|
|
const nsCString& languageOverride = bc->Top()->GetLanguageOverride();
|
|
|
|
if (!languageOverride.IsEmpty()) {
|
|
- GetAcceptLanguages(aLanguages, &languageOverride);
|
|
+ nsString languageOverrideWide = NS_ConvertUTF8toUTF16(languageOverride);
|
|
+ GetAcceptLanguages(&languageOverrideWide, aLanguages);
|
|
|
|
return;
|
|
}
|
|
}
|
|
|
|
- GetAcceptLanguages(aLanguages, nullptr);
|
|
+ GetAcceptLanguages(nullptr, aLanguages);
|
|
|
|
// The returned value is cached by the binding code. The window listens to the
|
|
// accept languages change and will clear the cache when needed. It has to
|
|
@@ -2336,7 +2336,8 @@ bool Navigator::Webdriver() {
|
|
}
|
|
#endif
|
|
|
|
- return false;
|
|
+ // Playwright is automating the browser, so we should pretend to be a webdriver
|
|
+ return true;
|
|
}
|
|
|
|
AutoplayPolicy Navigator::GetAutoplayPolicy(AutoplayPolicyMediaType aType) {
|
|
diff --git a/dom/base/Navigator.h b/dom/base/Navigator.h
|
|
index ebbf1b34c3..2d972742c3 100644
|
|
--- a/dom/base/Navigator.h
|
|
+++ b/dom/base/Navigator.h
|
|
@@ -225,8 +225,7 @@ class Navigator final : public nsISupports, public nsWrapperCache {
|
|
|
|
StorageManager* Storage();
|
|
|
|
- static void GetAcceptLanguages(nsTArray<nsString>& aLanguages,
|
|
- const nsCString* aLanguageOverride);
|
|
+ static void GetAcceptLanguages(const nsString* aLanguageOverride, nsTArray<nsString>& aLanguages);
|
|
|
|
dom::MediaCapabilities* MediaCapabilities();
|
|
dom::MediaSession* MediaSession();
|
|
diff --git a/dom/base/nsContentUtils.cpp b/dom/base/nsContentUtils.cpp
|
|
index 60e805446a..eb6216e7af 100644
|
|
--- a/dom/base/nsContentUtils.cpp
|
|
+++ b/dom/base/nsContentUtils.cpp
|
|
@@ -9529,6 +9529,8 @@ Result<bool, nsresult> nsContentUtils::SynthesizeMouseEvent(
|
|
EventMessage msg;
|
|
Maybe<WidgetMouseEvent::ExitFrom> exitFrom;
|
|
bool contextMenuKey = false;
|
|
+ bool isPWDragEventMessage = false;
|
|
+
|
|
if (aType.EqualsLiteral("mousedown")) {
|
|
msg = eMouseDown;
|
|
} else if (aType.EqualsLiteral("mouseup")) {
|
|
@@ -9555,13 +9557,26 @@ Result<bool, nsresult> nsContentUtils::SynthesizeMouseEvent(
|
|
msg = eMouseHitTest;
|
|
} else if (aType.EqualsLiteral("MozMouseExploreByTouch")) {
|
|
msg = eMouseExploreByTouch;
|
|
+ } else if (aType.EqualsLiteral("dragover")) {
|
|
+ msg = eDragOver;
|
|
+ isPWDragEventMessage = true;
|
|
+ } else if (aType.EqualsLiteral("drop")) {
|
|
+ msg = eDrop;
|
|
+ isPWDragEventMessage = true;
|
|
} else {
|
|
return Err(NS_ERROR_FAILURE);
|
|
}
|
|
|
|
Maybe<WidgetPointerEvent> pointerEvent;
|
|
Maybe<WidgetMouseEvent> mouseEvent;
|
|
- if (IsPointerEventMessage(msg)) {
|
|
+ Maybe<WidgetDragEvent> pwDragEvent;
|
|
+
|
|
+ if (isPWDragEventMessage) {
|
|
+ pwDragEvent.emplace(true, msg, aWidget);
|
|
+ pwDragEvent->mReason = aOptions.mIsWidgetEventSynthesized
|
|
+ ? WidgetMouseEvent::eSynthesized
|
|
+ : WidgetMouseEvent::eReal;
|
|
+ } else if (IsPointerEventMessage(msg)) {
|
|
if (MOZ_UNLIKELY(aOptions.mIsWidgetEventSynthesized)) {
|
|
MOZ_ASSERT_UNREACHABLE(
|
|
"The event shouldn't be dispatched as a synthesized event");
|
|
@@ -9589,6 +9604,7 @@ Result<bool, nsresult> nsContentUtils::SynthesizeMouseEvent(
|
|
mozilla::widget::AutoSynthesizedEventCallbackNotifier notifier(callback);
|
|
|
|
WidgetMouseEvent& mouseOrPointerEvent =
|
|
+ pwDragEvent.isSome() ? pwDragEvent.ref() :
|
|
pointerEvent.isSome() ? pointerEvent.ref() : mouseEvent.ref();
|
|
mouseOrPointerEvent.pointerId = aMouseEventData.mIdentifier;
|
|
mouseOrPointerEvent.mModifiers =
|
|
@@ -9609,6 +9625,8 @@ Result<bool, nsresult> nsContentUtils::SynthesizeMouseEvent(
|
|
mouseOrPointerEvent.mFlags.mIsSynthesizedForTests =
|
|
aOptions.mIsDOMEventSynthesized;
|
|
mouseOrPointerEvent.mExitFrom = exitFrom;
|
|
+ mouseOrPointerEvent.mJugglerEventId = aMouseEventData.mJugglerEventId;
|
|
+ mouseOrPointerEvent.convertToPointer = aOptions.mConvertToPointer;
|
|
mouseOrPointerEvent.mCallbackId = notifier.SaveCallback();
|
|
|
|
nsPresContext* presContext = aPresShell->GetPresContext();
|
|
diff --git a/dom/base/nsDOMWindowUtils.cpp b/dom/base/nsDOMWindowUtils.cpp
|
|
index d27975b2a3..d48f4c2285 100644
|
|
--- a/dom/base/nsDOMWindowUtils.cpp
|
|
+++ b/dom/base/nsDOMWindowUtils.cpp
|
|
@@ -710,6 +710,55 @@ nsDOMWindowUtils::GetPresShellId(uint32_t* aPresShellId) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
+static uint32_t sJugglerEventId = 1000;
|
|
+
|
|
+NS_IMETHODIMP
|
|
+nsDOMWindowUtils::JugglerSendMouseEvent(
|
|
+ const nsAString& aType, float aX, float aY, int32_t aButton,
|
|
+ int32_t aClickCount, int32_t aModifiers, bool aIgnoreRootScrollFrame,
|
|
+ float aPressure, unsigned short aInputSourceArg,
|
|
+ bool aIsDOMEventSynthesized, bool aIsWidgetEventSynthesized,
|
|
+ int32_t aButtons, uint32_t aIdentifier, bool aDisablePointerEvent,
|
|
+ uint32_t* aJugglerEventId) {
|
|
+ *aJugglerEventId = ++sJugglerEventId;
|
|
+
|
|
+ RefPtr<PresShell> presShell = GetPresShell();
|
|
+ if (!presShell) {
|
|
+ return NS_ERROR_FAILURE;
|
|
+ }
|
|
+
|
|
+ nsPoint offset;
|
|
+ RefPtr<nsIWidget> widget = GetWidget(&offset);
|
|
+ if (!widget) {
|
|
+ return NS_ERROR_FAILURE;
|
|
+ }
|
|
+
|
|
+ LayoutDeviceIntPoint refPoint = nsContentUtils::ToWidgetPoint(
|
|
+ CSSPoint(aX, aY), offset, presShell->GetPresContext());
|
|
+
|
|
+ SynthesizeMouseEventData mouseEventData;
|
|
+ mouseEventData.mIdentifier = aIdentifier;
|
|
+ mouseEventData.mButton = aButton;
|
|
+ mouseEventData.mButtons.Construct(aButtons);
|
|
+ mouseEventData.mClickCount.Construct(aClickCount);
|
|
+ mouseEventData.mPressure = aPressure;
|
|
+ mouseEventData.mInputSource = aInputSourceArg;
|
|
+ mouseEventData.mModifiers = aModifiers;
|
|
+ mouseEventData.mJugglerEventId = *aJugglerEventId;
|
|
+
|
|
+ SynthesizeMouseEventOptions options;
|
|
+ options.mIgnoreRootScrollFrame = aIgnoreRootScrollFrame;
|
|
+ options.mIsDOMEventSynthesized = aIsDOMEventSynthesized;
|
|
+ options.mIsWidgetEventSynthesized = aIsWidgetEventSynthesized;
|
|
+ options.mConvertToPointer = !aDisablePointerEvent;
|
|
+ options.mIsAsyncEnabled = false;
|
|
+
|
|
+ auto result = nsContentUtils::SynthesizeMouseEvent(
|
|
+ presShell, widget, aType, refPoint, mouseEventData, options,
|
|
+ Optional<OwningNonNull<VoidFunction>>{});
|
|
+ return result.isOk() ? NS_OK : result.unwrapErr();
|
|
+}
|
|
+
|
|
NS_IMETHODIMP
|
|
nsDOMWindowUtils::IsCORSSafelistedRequestHeader(const nsACString& aName,
|
|
const nsACString& aValue,
|
|
diff --git a/dom/base/nsFocusManager.cpp b/dom/base/nsFocusManager.cpp
|
|
index fa2125fa66..6bb0c72796 100644
|
|
--- a/dom/base/nsFocusManager.cpp
|
|
+++ b/dom/base/nsFocusManager.cpp
|
|
@@ -1840,6 +1840,10 @@ Maybe<uint64_t> nsFocusManager::SetFocusInner(Element* aNewContent,
|
|
(GetActiveBrowsingContext() == newRootBrowsingContext);
|
|
}
|
|
|
|
+ // In Playwright, we want to send focus events even if the element
|
|
+ // isn't actually in the active window.
|
|
+ isElementInActiveWindow = true;
|
|
+
|
|
// Exit fullscreen if a website focuses another window
|
|
if (StaticPrefs::full_screen_api_exit_on_windowRaise() &&
|
|
!isElementInActiveWindow && (aFlags & FLAG_RAISE)) {
|
|
@@ -2427,6 +2431,7 @@ bool nsFocusManager::BlurImpl(BrowsingContext* aBrowsingContextToClear,
|
|
bool aIsLeavingDocument, bool aAdjustWidget,
|
|
bool aRemainActive, Element* aElementToFocus,
|
|
uint64_t aActionId) {
|
|
+
|
|
LOGFOCUS(("<<Blur begin actionid: %" PRIu64 ">>", aActionId));
|
|
|
|
// hold a reference to the focused content, which may be null
|
|
@@ -2470,6 +2475,11 @@ bool nsFocusManager::BlurImpl(BrowsingContext* aBrowsingContextToClear,
|
|
return true;
|
|
}
|
|
|
|
+ // Playwright: emulate focused page by never bluring when leaving document.
|
|
+ if (XRE_IsContentProcess() && aIsLeavingDocument && docShell && nsDocShell::Cast(docShell)->ShouldOverrideHasFocus()) {
|
|
+ return true;
|
|
+ }
|
|
+
|
|
// Keep a ref to presShell since dispatching the DOM event may cause
|
|
// the document to be destroyed.
|
|
RefPtr<PresShell> presShell = docShell->GetPresShell();
|
|
@@ -3169,7 +3179,9 @@ void nsFocusManager::RaiseWindow(nsPIDOMWindowOuter* aWindow,
|
|
}
|
|
}
|
|
|
|
- if (sTestMode) {
|
|
+ // In Playwright, we still want to execte the embedder functions
|
|
+ // to actually show / focus windows.
|
|
+ if (false && sTestMode) {
|
|
// In test mode, emulate raising the window. WindowRaised takes
|
|
// care of lowering the present active window. This happens in
|
|
// a separate runnable to avoid touching multiple windows in
|
|
diff --git a/dom/base/nsGlobalWindowOuter.cpp b/dom/base/nsGlobalWindowOuter.cpp
|
|
index ae3b72b612..8f6e62f41a 100644
|
|
--- a/dom/base/nsGlobalWindowOuter.cpp
|
|
+++ b/dom/base/nsGlobalWindowOuter.cpp
|
|
@@ -2515,10 +2515,16 @@ nsresult nsGlobalWindowOuter::SetNewDocument(Document* aDocument,
|
|
}();
|
|
|
|
if (!isContentAboutBlankInChromeDocshell) {
|
|
- newInnerWindow->mHasNotifiedGlobalCreated = true;
|
|
- nsContentUtils::AddScriptRunner(NewRunnableMethod(
|
|
- "nsGlobalWindowOuter::DispatchDOMWindowCreated", this,
|
|
- &nsGlobalWindowOuter::DispatchDOMWindowCreated));
|
|
+ if (!newInnerWindow->mHasNotifiedGlobalCreated) {
|
|
+ newInnerWindow->mHasNotifiedGlobalCreated = true;
|
|
+ nsContentUtils::AddScriptRunner(NewRunnableMethod(
|
|
+ "nsGlobalWindowOuter::DispatchDOMWindowCreated", this,
|
|
+ &nsGlobalWindowOuter::DispatchDOMWindowCreated));
|
|
+ } else if (!reUseInnerWindow) {
|
|
+ nsContentUtils::AddScriptRunner(NewRunnableMethod(
|
|
+ "nsGlobalWindowOuter::JugglerDispatchDOMWindowReused", this,
|
|
+ &nsGlobalWindowOuter::JugglerDispatchDOMWindowReused));
|
|
+ }
|
|
}
|
|
}
|
|
|
|
@@ -2638,6 +2644,19 @@ void nsGlobalWindowOuter::DispatchDOMWindowCreated() {
|
|
}
|
|
}
|
|
|
|
+void nsGlobalWindowOuter::JugglerDispatchDOMWindowReused() {
|
|
+ nsCOMPtr<nsIObserverService> observerService =
|
|
+ mozilla::services::GetObserverService();
|
|
+ if (observerService && mDoc) {
|
|
+ nsIPrincipal* principal = mDoc->NodePrincipal();
|
|
+ if (!principal->IsSystemPrincipal()) {
|
|
+ observerService->NotifyObservers(static_cast<nsIDOMWindow*>(this),
|
|
+ "juggler-dom-window-reused",
|
|
+ nullptr);
|
|
+ }
|
|
+ }
|
|
+}
|
|
+
|
|
void nsGlobalWindowOuter::ClearStatus() { SetStatusOuter(u""_ns); }
|
|
|
|
void nsGlobalWindowOuter::SetDocShell(nsDocShell* aDocShell) {
|
|
diff --git a/dom/base/nsGlobalWindowOuter.h b/dom/base/nsGlobalWindowOuter.h
|
|
index b6226ff10f..87fae2cff5 100644
|
|
--- a/dom/base/nsGlobalWindowOuter.h
|
|
+++ b/dom/base/nsGlobalWindowOuter.h
|
|
@@ -315,6 +315,7 @@ class nsGlobalWindowOuter final : public mozilla::dom::EventTarget,
|
|
|
|
// Outer windows only.
|
|
void DispatchDOMWindowCreated();
|
|
+ void JugglerDispatchDOMWindowReused();
|
|
|
|
// Outer windows only.
|
|
virtual void EnsureSizeAndPositionUpToDate() override;
|
|
diff --git a/dom/base/nsINode.cpp b/dom/base/nsINode.cpp
|
|
index 9bed2cad8b..64355630dd 100644
|
|
--- a/dom/base/nsINode.cpp
|
|
+++ b/dom/base/nsINode.cpp
|
|
@@ -1507,6 +1507,61 @@ void nsINode::GetBoxQuadsFromWindowOrigin(const BoxQuadOptions& aOptions,
|
|
mozilla::GetBoxQuadsFromWindowOrigin(this, aOptions, aResult, aRv);
|
|
}
|
|
|
|
+static nsIFrame* GetFirstFrame(nsINode* aNode) {
|
|
+ if (!aNode->IsContent())
|
|
+ return nullptr;
|
|
+ nsIFrame* frame = aNode->AsContent()->GetPrimaryFrame(FlushType::Frames);
|
|
+ if (!frame) {
|
|
+ FlattenedChildIterator iter(aNode->AsContent());
|
|
+ for (nsIContent* child = iter.GetNextChild(); child; child = iter.GetNextChild()) {
|
|
+ frame = child->GetPrimaryFrame(FlushType::Frames);
|
|
+ if (frame) {
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+ return frame;
|
|
+}
|
|
+
|
|
+void nsINode::ScrollRectIntoViewIfNeeded(int32_t x, int32_t y,
|
|
+ int32_t w, int32_t h,
|
|
+ ErrorResult& aRv) {
|
|
+ aRv = NS_ERROR_UNEXPECTED;
|
|
+ nsCOMPtr<Document> document = OwnerDoc();
|
|
+ if (!document) {
|
|
+ return aRv.ThrowNotFoundError("Node is detached from document");
|
|
+ }
|
|
+ PresShell* presShell = document->GetPresShell();
|
|
+ if (!presShell) {
|
|
+ return aRv.ThrowNotFoundError("Node is detached from document");
|
|
+ }
|
|
+ nsIFrame* primaryFrame = GetFirstFrame(this);
|
|
+ if (!primaryFrame) {
|
|
+ return aRv.ThrowNotFoundError("Node does not have a layout object");
|
|
+ }
|
|
+ aRv = NS_OK;
|
|
+ nsRect rect;
|
|
+ if (x == -1 && y == -1 && w == -1 && h == -1) {
|
|
+ rect = primaryFrame->GetRectRelativeToSelf();
|
|
+ } else {
|
|
+ rect = nsRect(nsPresContext::CSSPixelsToAppUnits(x),
|
|
+ nsPresContext::CSSPixelsToAppUnits(y),
|
|
+ nsPresContext::CSSPixelsToAppUnits(w),
|
|
+ nsPresContext::CSSPixelsToAppUnits(h));
|
|
+ }
|
|
+ presShell->ScrollFrameIntoView(
|
|
+ primaryFrame, Some(rect),
|
|
+ ScrollAxis(WhereToScroll::Center, WhenToScroll::IfNotFullyVisible),
|
|
+ ScrollAxis(WhereToScroll::Center, WhenToScroll::IfNotFullyVisible),
|
|
+ ScrollFlags::ScrollOverflowHidden);
|
|
+ // If a _visual_ scroll update is pending, cancel it; otherwise, it will
|
|
+ // clobber next scroll (e.g. subsequent window.scrollTo(0, 0) wlll break).
|
|
+ if (presShell->GetPendingVisualScrollUpdate()) {
|
|
+ presShell->AcknowledgePendingVisualScrollUpdate();
|
|
+ presShell->ClearPendingVisualScrollUpdate();
|
|
+ }
|
|
+}
|
|
+
|
|
already_AddRefed<DOMQuad> nsINode::ConvertQuadFromNode(
|
|
DOMQuad& aQuad, const GeometryNode& aFrom,
|
|
const ConvertCoordinateOptions& aOptions, CallerType aCallerType,
|
|
diff --git a/dom/base/nsINode.h b/dom/base/nsINode.h
|
|
index 1611ea9eb2..6511777068 100644
|
|
--- a/dom/base/nsINode.h
|
|
+++ b/dom/base/nsINode.h
|
|
@@ -2499,6 +2499,10 @@ class nsINode : public mozilla::dom::EventTarget {
|
|
nsTArray<RefPtr<DOMQuad>>& aResult,
|
|
ErrorResult& aRv);
|
|
|
|
+ void ScrollRectIntoViewIfNeeded(int32_t x, int32_t y,
|
|
+ int32_t w, int32_t h,
|
|
+ ErrorResult& aRv);
|
|
+
|
|
already_AddRefed<DOMQuad> ConvertQuadFromNode(
|
|
DOMQuad& aQuad, const TextOrElementOrDocument& aFrom,
|
|
const ConvertCoordinateOptions& aOptions, CallerType aCallerType,
|
|
diff --git a/dom/base/nsJSUtils.cpp b/dom/base/nsJSUtils.cpp
|
|
index 25b261cb57..9f1bc7626e 100644
|
|
--- a/dom/base/nsJSUtils.cpp
|
|
+++ b/dom/base/nsJSUtils.cpp
|
|
@@ -151,6 +151,11 @@ bool nsJSUtils::GetEnvironmentChainForElement(JSContext* aCx, Element* aElement,
|
|
return true;
|
|
}
|
|
|
|
+/* static */
|
|
+bool nsJSUtils::SetTimeZoneOverride(const char* timezoneId) {
|
|
+ return JS::SetTimeZoneOverride(timezoneId);
|
|
+}
|
|
+
|
|
/* static */
|
|
void nsJSUtils::ResetTimeZone() { JS::ResetTimeZone(); }
|
|
|
|
diff --git a/dom/base/nsJSUtils.h b/dom/base/nsJSUtils.h
|
|
index b6ea43886d..f0abb08931 100644
|
|
--- a/dom/base/nsJSUtils.h
|
|
+++ b/dom/base/nsJSUtils.h
|
|
@@ -74,6 +74,7 @@ class nsJSUtils {
|
|
mozilla::dom::Element* aElement,
|
|
JS::EnvironmentChain& aEnvChain);
|
|
|
|
+ static bool SetTimeZoneOverride(const char* timezoneId);
|
|
static void ResetTimeZone();
|
|
|
|
static bool DumpEnabled();
|
|
diff --git a/dom/chrome-webidl/BrowsingContext.webidl b/dom/chrome-webidl/BrowsingContext.webidl
|
|
index 9730cea647..79da6984a4 100644
|
|
--- a/dom/chrome-webidl/BrowsingContext.webidl
|
|
+++ b/dom/chrome-webidl/BrowsingContext.webidl
|
|
@@ -62,6 +62,26 @@ enum ForcedColorsOverride {
|
|
"active",
|
|
};
|
|
|
|
+/**
|
|
+ * CSS prefers-reduced-motion values.
|
|
+ */
|
|
+enum PrefersReducedMotionOverride {
|
|
+ "none",
|
|
+ "reduce",
|
|
+ "no-preference",
|
|
+};
|
|
+
|
|
+/**
|
|
+ * CSS prefers-contrast values.
|
|
+ */
|
|
+enum PrefersContrastOverride {
|
|
+ "none",
|
|
+ "no-preference",
|
|
+ "more",
|
|
+ "less",
|
|
+ "custom",
|
|
+};
|
|
+
|
|
/**
|
|
* Allowed overrides of platform/pref default behaviour for touch events.
|
|
*/
|
|
@@ -235,6 +255,12 @@ interface BrowsingContext {
|
|
// Forced-colors simulation, for DevTools
|
|
[SetterThrows] attribute ForcedColorsOverride forcedColorsOverride;
|
|
|
|
+ // Reduced-Motion simulation, for DevTools.
|
|
+ [SetterThrows] attribute PrefersReducedMotionOverride prefersReducedMotionOverride;
|
|
+
|
|
+ // Contrast simulation, for DevTools.
|
|
+ [SetterThrows] attribute PrefersContrastOverride prefersContrastOverride;
|
|
+
|
|
/**
|
|
* A unique identifier for the browser element that is hosting this
|
|
* BrowsingContext tree. Every BrowsingContext in the element's tree will
|
|
diff --git a/dom/fetch/Fetch.cpp b/dom/fetch/Fetch.cpp
|
|
index 84965f7b23..31e5c1343e 100644
|
|
--- a/dom/fetch/Fetch.cpp
|
|
+++ b/dom/fetch/Fetch.cpp
|
|
@@ -699,6 +699,12 @@ already_AddRefed<Promise> FetchRequest(nsIGlobalObject* aGlobal,
|
|
ipcArgs.hasCSPEventListener() = false;
|
|
ipcArgs.isWorkerRequest() = false;
|
|
|
|
+ /* --> Playwright: associate keep-alive fetch with the window */
|
|
+ BrowsingContext* bc = window ? window->GetBrowsingContext() : nullptr;
|
|
+ if (bc)
|
|
+ ipcArgs.associatedBrowsingContextID() = bc->Id();
|
|
+ /* <-- Playwright */
|
|
+
|
|
actor->DoFetchOp(ipcArgs);
|
|
|
|
return p.forget();
|
|
diff --git a/dom/fetch/FetchService.cpp b/dom/fetch/FetchService.cpp
|
|
index 421a3ce2be..095d003d33 100644
|
|
--- a/dom/fetch/FetchService.cpp
|
|
+++ b/dom/fetch/FetchService.cpp
|
|
@@ -267,6 +267,14 @@ RefPtr<FetchServicePromises> FetchService::FetchInstance::Fetch() {
|
|
net::ClassificationFlags({0, 0}) // TrackingFlags
|
|
);
|
|
|
|
+ /* --> Playwright: associate keep-alive fetch with the window */
|
|
+ if (mArgsType == FetchArgsType::MainThreadFetch) {
|
|
+ auto& args = mArgs.as<MainThreadFetchArgs>();
|
|
+ mFetchDriver->SetAssociatedBrowsingContextID(
|
|
+ args.mAssociatedBrowsingContextID);
|
|
+ }
|
|
+ /* <-- Playwright */
|
|
+
|
|
if (mArgsType == FetchArgsType::WorkerFetch) {
|
|
auto& args = mArgs.as<WorkerFetchArgs>();
|
|
mFetchDriver->SetWorkerScript(args.mWorkerScript);
|
|
diff --git a/dom/geolocation/Geolocation.cpp b/dom/geolocation/Geolocation.cpp
|
|
index 33832d190f..f0d776bb3d 100644
|
|
--- a/dom/geolocation/Geolocation.cpp
|
|
+++ b/dom/geolocation/Geolocation.cpp
|
|
@@ -393,7 +393,10 @@ nsGeolocationRequest::Allow(JS::Handle<JS::Value> aChoices) {
|
|
return NS_OK;
|
|
}
|
|
|
|
- if (mBehavior != SystemGeolocationPermissionBehavior::NoPrompt) {
|
|
+ RefPtr<nsGeolocationService> gs = nsGeolocationService::GetGeolocationService(
|
|
+ mLocator->GetBrowsingContext());
|
|
+
|
|
+ if (mBehavior != SystemGeolocationPermissionBehavior::NoPrompt && !gs->IsOverride()) {
|
|
// Asynchronously present the system dialog or open system preferences
|
|
// (RequestGeolocationPermissionFromUser will know which to do), and wait
|
|
// for the permission to change or the request to be canceled. If the
|
|
@@ -425,8 +428,6 @@ nsGeolocationRequest::Allow(JS::Handle<JS::Value> aChoices) {
|
|
return NS_OK;
|
|
}
|
|
|
|
- RefPtr<nsGeolocationService> gs = nsGeolocationService::GetGeolocationService(
|
|
- mLocator->GetBrowsingContext());
|
|
bool canUseCache = false;
|
|
CachedPositionAndAccuracy lastPosition = gs->GetCachedPosition();
|
|
if (lastPosition.position) {
|
|
@@ -709,11 +710,16 @@ NS_INTERFACE_MAP_END
|
|
NS_IMPL_ADDREF(nsGeolocationService)
|
|
NS_IMPL_RELEASE(nsGeolocationService)
|
|
|
|
-nsresult nsGeolocationService::Init() {
|
|
+nsresult nsGeolocationService::Init(bool isOverride) {
|
|
if (!StaticPrefs::geo_enabled()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
+ if (isOverride) {
|
|
+ mIsOverride = true;
|
|
+ mHigherAccuracy = true;
|
|
+ }
|
|
+
|
|
if (XRE_IsContentProcess()) {
|
|
return NS_OK;
|
|
}
|
|
@@ -792,6 +798,10 @@ nsresult nsGeolocationService::Init() {
|
|
return NS_OK;
|
|
}
|
|
|
|
+bool nsGeolocationService::IsOverride() {
|
|
+ return mIsOverride;
|
|
+}
|
|
+
|
|
nsGeolocationService::~nsGeolocationService() = default;
|
|
|
|
NS_IMETHODIMP
|
|
@@ -935,6 +945,10 @@ bool nsGeolocationService::HighAccuracyRequested() {
|
|
}
|
|
|
|
void nsGeolocationService::UpdateAccuracy(bool aForceHigh) {
|
|
+ if (mIsOverride) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
bool highRequired = aForceHigh || HighAccuracyRequested();
|
|
|
|
if (XRE_IsContentProcess()) {
|
|
diff --git a/dom/geolocation/Geolocation.h b/dom/geolocation/Geolocation.h
|
|
index d46e2e88b1..e69d62ffb4 100644
|
|
--- a/dom/geolocation/Geolocation.h
|
|
+++ b/dom/geolocation/Geolocation.h
|
|
@@ -64,7 +64,7 @@ class nsGeolocationService final : public nsIGeolocationUpdate,
|
|
|
|
nsGeolocationService() = default;
|
|
|
|
- nsresult Init();
|
|
+ nsresult Init(bool isOverride = false);
|
|
|
|
// Management of the Geolocation objects
|
|
void AddLocator(mozilla::dom::Geolocation* aLocator);
|
|
@@ -89,6 +89,8 @@ class nsGeolocationService final : public nsIGeolocationUpdate,
|
|
void UpdateAccuracy(bool aForceHigh = false);
|
|
bool HighAccuracyRequested();
|
|
|
|
+ bool IsOverride();
|
|
+
|
|
private:
|
|
~nsGeolocationService();
|
|
|
|
@@ -115,6 +117,8 @@ class nsGeolocationService final : public nsIGeolocationUpdate,
|
|
// Nothing() if not being started, or a boolean reflecting the requested
|
|
// accuracy.
|
|
mozilla::Maybe<bool> mStarting;
|
|
+
|
|
+ bool mIsOverride = false;
|
|
};
|
|
|
|
namespace mozilla::dom {
|
|
diff --git a/dom/html/HTMLInputElement.cpp b/dom/html/HTMLInputElement.cpp
|
|
index 31b29ac946..f8c6335c0a 100644
|
|
--- a/dom/html/HTMLInputElement.cpp
|
|
+++ b/dom/html/HTMLInputElement.cpp
|
|
@@ -45,6 +45,7 @@
|
|
#include "mozilla/dom/HTMLDataListElement.h"
|
|
#include "mozilla/dom/HTMLOptionElement.h"
|
|
#include "mozilla/dom/InputType.h"
|
|
+#include "nsDocShell.h"
|
|
#include "mozilla/dom/MouseEvent.h"
|
|
#include "mozilla/dom/NumericInputTypes.h"
|
|
#include "mozilla/dom/ProgressEvent.h"
|
|
@@ -799,6 +800,13 @@ nsresult HTMLInputElement::InitColorPicker() {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
+ nsCOMPtr<nsPIDOMWindowOuter> win = doc->GetWindow();
|
|
+ nsDocShell* docShell = win ? static_cast<nsDocShell*>(win->GetDocShell()) : nullptr;
|
|
+ if (docShell && docShell->IsFileInputInterceptionEnabled()) {
|
|
+ docShell->FilePickerShown(this);
|
|
+ return NS_OK;
|
|
+ }
|
|
+
|
|
if (IsPickerBlocked(doc)) {
|
|
return NS_OK;
|
|
}
|
|
diff --git a/dom/interfaces/base/nsIDOMWindowUtils.idl b/dom/interfaces/base/nsIDOMWindowUtils.idl
|
|
index ce7c11966e..4079c43d9d 100644
|
|
--- a/dom/interfaces/base/nsIDOMWindowUtils.idl
|
|
+++ b/dom/interfaces/base/nsIDOMWindowUtils.idl
|
|
@@ -327,6 +327,26 @@ cenum AsyncEnabledOption : 8 {
|
|
ASYNC_ENABLED = 1
|
|
};
|
|
|
|
+ /**
|
|
+ * Playwright: a separate method to dispatch mouse event with a
|
|
+ * specific `jugglerEventId`.
|
|
+ */
|
|
+ [can_run_script]
|
|
+ unsigned long jugglerSendMouseEvent(in AString aType,
|
|
+ in float aX,
|
|
+ in float aY,
|
|
+ in long aButton,
|
|
+ in long aClickCount,
|
|
+ in long aModifiers,
|
|
+ in boolean aIgnoreRootScrollFrame,
|
|
+ in float aPressure,
|
|
+ in unsigned short aInputSourceArg,
|
|
+ in boolean aIsDOMEventSynthesized,
|
|
+ in boolean aIsWidgetEventSynthesized,
|
|
+ in long aButtons,
|
|
+ in unsigned long aIdentifier,
|
|
+ in boolean aDisablePointerEvent);
|
|
+
|
|
/** Synthesize a touch event. The event types supported are:
|
|
* touchstart, touchend, touchmove, and touchcancel
|
|
*
|
|
diff --git a/dom/ipc/BrowserChild.cpp b/dom/ipc/BrowserChild.cpp
|
|
index 80158ce3a0..4e7fc3c95d 100644
|
|
--- a/dom/ipc/BrowserChild.cpp
|
|
+++ b/dom/ipc/BrowserChild.cpp
|
|
@@ -1813,6 +1813,21 @@ void BrowserChild::HandleRealMouseButtonEvent(const WidgetMouseEvent& aEvent,
|
|
if (postLayerization) {
|
|
postLayerization->Register();
|
|
}
|
|
+
|
|
+ // Playwright: notify content that mouse event has been received and handled.
|
|
+ nsCOMPtr<nsIObserverService> observerService =
|
|
+ mozilla::services::GetObserverService();
|
|
+ if (observerService && aEvent.mJugglerEventId) {
|
|
+ if (aEvent.mMessage == eMouseUp) {
|
|
+ observerService->NotifyObservers(nullptr, "juggler-mouse-event-hit-renderer", NS_ConvertASCIItoUTF16(nsPrintfCString("mouseup %" PRIu32, aEvent.mJugglerEventId)).get());
|
|
+ } else if (aEvent.mMessage == eMouseDown) {
|
|
+ observerService->NotifyObservers(nullptr, "juggler-mouse-event-hit-renderer", NS_ConvertASCIItoUTF16(nsPrintfCString("mousedown %" PRIu32, aEvent.mJugglerEventId)).get());
|
|
+ } else if (aEvent.mMessage == eMouseMove) {
|
|
+ observerService->NotifyObservers(nullptr, "juggler-mouse-event-hit-renderer", NS_ConvertASCIItoUTF16(nsPrintfCString("mousemove %" PRIu32, aEvent.mJugglerEventId)).get());
|
|
+ } else if (aEvent.mMessage == eContextMenu) {
|
|
+ observerService->NotifyObservers(nullptr, "juggler-mouse-event-hit-renderer", NS_ConvertASCIItoUTF16(nsPrintfCString("contextmenu %" PRIu32, aEvent.mJugglerEventId)).get());
|
|
+ }
|
|
+ }
|
|
}
|
|
|
|
mozilla::ipc::IPCResult BrowserChild::RecvNormalPriorityRealMouseButtonEvent(
|
|
diff --git a/dom/ipc/CoalescedMouseData.cpp b/dom/ipc/CoalescedMouseData.cpp
|
|
index a4ccc0049d..36b4c59369 100644
|
|
--- a/dom/ipc/CoalescedMouseData.cpp
|
|
+++ b/dom/ipc/CoalescedMouseData.cpp
|
|
@@ -73,6 +73,9 @@ bool CoalescedMouseData::CanCoalesce(const WidgetMouseEvent& aEvent,
|
|
mCoalescedInputEvent->pointerId != aEvent.pointerId ||
|
|
mCoalescedInputEvent->mButton != aEvent.mButton ||
|
|
mCoalescedInputEvent->mButtons != aEvent.mButtons || mGuid != aGuid ||
|
|
+ // `mJugglerEventId` is 0 for non-juggler events and a unique number for
|
|
+ // juggler-emitted events.
|
|
+ mCoalescedInputEvent->mJugglerEventId != aEvent.mJugglerEventId ||
|
|
mInputBlockId != aInputBlockId) {
|
|
return false;
|
|
}
|
|
diff --git a/dom/media/systemservices/video_engine/desktop_capture_impl.cc b/dom/media/systemservices/video_engine/desktop_capture_impl.cc
|
|
index ad5f871cf6..41ff4f49ac 100644
|
|
--- a/dom/media/systemservices/video_engine/desktop_capture_impl.cc
|
|
+++ b/dom/media/systemservices/video_engine/desktop_capture_impl.cc
|
|
@@ -53,9 +53,10 @@ namespace webrtc {
|
|
|
|
DesktopCaptureImpl* DesktopCaptureImpl::Create(const int32_t aModuleId,
|
|
const char* aUniqueId,
|
|
- const CaptureDeviceType aType) {
|
|
+ const CaptureDeviceType aType,
|
|
+ bool aCaptureCursor) {
|
|
return new webrtc::RefCountedObject<DesktopCaptureImpl>(aModuleId, aUniqueId,
|
|
- aType);
|
|
+ aType, aCaptureCursor);
|
|
}
|
|
|
|
static DesktopCaptureOptions CreateDesktopCaptureOptions() {
|
|
@@ -156,8 +157,10 @@ static std::unique_ptr<DesktopCapturer> CreateTabCapturer(
|
|
|
|
static std::unique_ptr<DesktopCapturer> CreateDesktopCapturerAndThread(
|
|
CaptureDeviceType aDeviceType, DesktopCapturer::SourceId aSourceId,
|
|
- nsIThread** aOutThread) {
|
|
+ nsIThread** aOutThread, bool aCaptureCursor) {
|
|
DesktopCaptureOptions options = CreateDesktopCaptureOptions();
|
|
+ if (aCaptureCursor)
|
|
+ options.set_prefer_cursor_embedded(aCaptureCursor);
|
|
auto ensureThread = [&]() {
|
|
if (*aOutThread) {
|
|
return *aOutThread;
|
|
@@ -254,7 +257,8 @@ static std::unique_ptr<DesktopCapturer> CreateDesktopCapturerAndThread(
|
|
}
|
|
|
|
DesktopCaptureImpl::DesktopCaptureImpl(const int32_t aId, const char* aUniqueId,
|
|
- const CaptureDeviceType aType)
|
|
+ const CaptureDeviceType aType,
|
|
+ bool aCaptureCursor)
|
|
: mModuleId(aId),
|
|
mTrackingId(mozilla::TrackingId(CaptureEngineToTrackingSourceStr([&] {
|
|
switch (aType) {
|
|
@@ -271,6 +275,7 @@ DesktopCaptureImpl::DesktopCaptureImpl(const int32_t aId, const char* aUniqueId,
|
|
aId)),
|
|
mDeviceUniqueId(aUniqueId),
|
|
mDeviceType(aType),
|
|
+ capture_cursor_(aCaptureCursor),
|
|
mControlThread(mozilla::GetCurrentSerialEventTarget()),
|
|
mNextFrameMinimumTime(Timestamp::Zero()),
|
|
mCallbacks("DesktopCaptureImpl::mCallbacks") {}
|
|
@@ -295,6 +300,19 @@ void DesktopCaptureImpl::DeRegisterCaptureDataCallback(
|
|
}
|
|
}
|
|
|
|
+void DesktopCaptureImpl::RegisterRawFrameCallback(RawFrameCallback* rawFrameCallback) {
|
|
+ webrtc::CritScope lock(&mApiCs);
|
|
+ _rawFrameCallbacks.insert(rawFrameCallback);
|
|
+}
|
|
+
|
|
+void DesktopCaptureImpl::DeRegisterRawFrameCallback(RawFrameCallback* rawFrameCallback) {
|
|
+ webrtc::CritScope lock(&mApiCs);
|
|
+ auto it = _rawFrameCallbacks.find(rawFrameCallback);
|
|
+ if (it != _rawFrameCallbacks.end()) {
|
|
+ _rawFrameCallbacks.erase(it);
|
|
+ }
|
|
+}
|
|
+
|
|
int32_t DesktopCaptureImpl::StopCaptureIfAllClientsClose() {
|
|
{
|
|
auto callbacks = mCallbacks.Lock();
|
|
@@ -326,7 +344,7 @@ int32_t DesktopCaptureImpl::StartCapture(
|
|
mRequestedCapability = mozilla::Some(aCapability);
|
|
MOZ_ALWAYS_SUCCEEDS(mCaptureThread->Dispatch(
|
|
NS_NewRunnableFunction("DesktopCaptureImpl::UpdateOnThread",
|
|
- [this, self = RefPtr(this), maxFps]() mutable {
|
|
+ [this, maxFps]() mutable {
|
|
UpdateOnThread(maxFps);
|
|
})));
|
|
return 0;
|
|
@@ -350,7 +368,7 @@ int32_t DesktopCaptureImpl::StartCapture(
|
|
return -1;
|
|
}
|
|
std::unique_ptr capturer = CreateDesktopCapturerAndThread(
|
|
- mDeviceType, sourceId, getter_AddRefs(mCaptureThread));
|
|
+ mDeviceType, sourceId, getter_AddRefs(mCaptureThread), capture_cursor_);
|
|
|
|
MOZ_ASSERT(!capturer == !mCaptureThread);
|
|
if (!capturer) {
|
|
@@ -362,7 +380,7 @@ int32_t DesktopCaptureImpl::StartCapture(
|
|
|
|
MOZ_ALWAYS_SUCCEEDS(mCaptureThread->Dispatch(NS_NewRunnableFunction(
|
|
"DesktopCaptureImpl::InitOnThread",
|
|
- [this, self = RefPtr(this), capturer = std::move(capturer),
|
|
+ [this, capturer = std::move(capturer),
|
|
maxFps]() mutable { InitOnThread(std::move(capturer), maxFps); })));
|
|
|
|
return 0;
|
|
@@ -458,6 +476,15 @@ void DesktopCaptureImpl::OnCaptureResult(DesktopCapturer::Result aResult,
|
|
frameInfo.height = aFrame->size().height();
|
|
frameInfo.videoType = VideoType::kARGB;
|
|
|
|
+ size_t videoFrameStride =
|
|
+ frameInfo.width * DesktopFrame::kBytesPerPixel;
|
|
+ {
|
|
+ webrtc::CritScope cs(&mApiCs);
|
|
+ for (auto rawFrameCallback : _rawFrameCallbacks) {
|
|
+ rawFrameCallback->OnRawFrame(videoFrame, videoFrameStride, frameInfo);
|
|
+ }
|
|
+ }
|
|
+
|
|
size_t videoFrameLength =
|
|
frameInfo.width * frameInfo.height * DesktopFrame::kBytesPerPixel;
|
|
|
|
diff --git a/dom/media/systemservices/video_engine/desktop_capture_impl.h b/dom/media/systemservices/video_engine/desktop_capture_impl.h
|
|
index 498de96bf6..967cc4d8dc 100644
|
|
--- a/dom/media/systemservices/video_engine/desktop_capture_impl.h
|
|
+++ b/dom/media/systemservices/video_engine/desktop_capture_impl.h
|
|
@@ -26,6 +26,7 @@
|
|
#include "api/video/video_sink_interface.h"
|
|
#include "modules/desktop_capture/desktop_capturer.h"
|
|
#include "modules/video_capture/video_capture.h"
|
|
+#include "rtc_base/deprecated/recursive_critical_section.h"
|
|
#include "mozilla/DataMutex.h"
|
|
#include "mozilla/Maybe.h"
|
|
#include "mozilla/TimeStamp.h"
|
|
@@ -42,17 +43,44 @@ namespace webrtc {
|
|
|
|
class VideoCaptureEncodeInterface;
|
|
|
|
+class RawFrameCallback {
|
|
+ public:
|
|
+ virtual ~RawFrameCallback() {}
|
|
+
|
|
+ virtual void OnRawFrame(uint8_t* videoFrame, size_t videoFrameLength, const VideoCaptureCapability& frameInfo) = 0;
|
|
+};
|
|
+
|
|
+class VideoCaptureModuleEx : public VideoCaptureModule {
|
|
+ public:
|
|
+ virtual ~VideoCaptureModuleEx() {}
|
|
+
|
|
+ virtual void RegisterRawFrameCallback(RawFrameCallback* rawFrameCallback) = 0;
|
|
+ virtual void DeRegisterRawFrameCallback(RawFrameCallback* rawFrameCallback) = 0;
|
|
+ int32_t StartCaptureCounted(const VideoCaptureCapability& aCapability) {
|
|
+ ++capture_counter_;
|
|
+ return capture_counter_ == 1 ? StartCapture(aCapability) : 0;
|
|
+ }
|
|
+
|
|
+ int32_t StopCaptureCounted() {
|
|
+ --capture_counter_;
|
|
+ return capture_counter_ == 0 ? StopCapture() : 0;
|
|
+ }
|
|
+
|
|
+ private:
|
|
+ int32_t capture_counter_ = 0;
|
|
+};
|
|
+
|
|
// Reuses the video engine pipeline for screen sharing.
|
|
// As with video, DesktopCaptureImpl is a proxy for screen sharing
|
|
// and follows the video pipeline design
|
|
class DesktopCaptureImpl : public DesktopCapturer::Callback,
|
|
- public VideoCaptureModule {
|
|
+ public VideoCaptureModuleEx {
|
|
public:
|
|
/* Create a screen capture modules object
|
|
*/
|
|
static DesktopCaptureImpl* Create(
|
|
const int32_t aModuleId, const char* aUniqueId,
|
|
- const mozilla::camera::CaptureDeviceType aType);
|
|
+ const mozilla::camera::CaptureDeviceType aType, bool aCaptureCursor = true);
|
|
|
|
[[nodiscard]] static std::shared_ptr<VideoCaptureModule::DeviceInfo>
|
|
CreateDeviceInfo(const int32_t aId,
|
|
@@ -66,6 +94,8 @@ class DesktopCaptureImpl : public DesktopCapturer::Callback,
|
|
void DeRegisterCaptureDataCallback(
|
|
webrtc::VideoSinkInterface<VideoFrame>* aCallback) override;
|
|
int32_t StopCaptureIfAllClientsClose() override;
|
|
+ void RegisterRawFrameCallback(RawFrameCallback* rawFrameCallback) override;
|
|
+ void DeRegisterRawFrameCallback(RawFrameCallback* rawFrameCallback) override;
|
|
|
|
int32_t SetCaptureRotation(VideoRotation aRotation) override;
|
|
bool SetApplyRotation(bool aEnable) override;
|
|
@@ -89,7 +119,8 @@ class DesktopCaptureImpl : public DesktopCapturer::Callback,
|
|
|
|
protected:
|
|
DesktopCaptureImpl(const int32_t aId, const char* aUniqueId,
|
|
- const mozilla::camera::CaptureDeviceType aType);
|
|
+ const mozilla::camera::CaptureDeviceType aType,
|
|
+ bool aCaptureCusor);
|
|
virtual ~DesktopCaptureImpl();
|
|
|
|
private:
|
|
@@ -98,6 +129,9 @@ class DesktopCaptureImpl : public DesktopCapturer::Callback,
|
|
void InitOnThread(std::unique_ptr<DesktopCapturer> aCapturer, int aFramerate);
|
|
void UpdateOnThread(int aFramerate);
|
|
void ShutdownOnThread();
|
|
+
|
|
+ webrtc::RecursiveCriticalSection mApiCs;
|
|
+ std::set<RawFrameCallback*> _rawFrameCallbacks;
|
|
// DesktopCapturer::Callback interface.
|
|
void OnCaptureResult(DesktopCapturer::Result aResult,
|
|
std::unique_ptr<DesktopFrame> aFrame) override;
|
|
@@ -105,6 +139,8 @@ class DesktopCaptureImpl : public DesktopCapturer::Callback,
|
|
// Notifies all mCallbacks of OnFrame(). mCaptureThread only.
|
|
void NotifyOnFrame(const VideoFrame& aFrame);
|
|
|
|
+ bool capture_cursor_ = true;
|
|
+
|
|
// Control thread on which the public API is called.
|
|
const nsCOMPtr<nsISerialEventTarget> mControlThread;
|
|
// Set in StartCapture.
|
|
diff --git a/dom/script/ScriptSettings.cpp b/dom/script/ScriptSettings.cpp
|
|
index 9444fad192..cc526e1ac8 100644
|
|
--- a/dom/script/ScriptSettings.cpp
|
|
+++ b/dom/script/ScriptSettings.cpp
|
|
@@ -150,6 +150,30 @@ ScriptSettingsStackEntry::~ScriptSettingsStackEntry() {
|
|
MOZ_ASSERT_IF(mGlobalObject, mGlobalObject->HasJSGlobal());
|
|
}
|
|
|
|
+static nsIGlobalObject* UnwrapSandboxGlobal(nsIGlobalObject* global) {
|
|
+ if (!global)
|
|
+ return global;
|
|
+ JSObject* globalObject = global->GetGlobalJSObject();
|
|
+ if (!globalObject)
|
|
+ return global;
|
|
+ JSContext* cx = nsContentUtils::GetCurrentJSContext();
|
|
+ if (!cx)
|
|
+ return global;
|
|
+ JS::Rooted<JSObject*> proto(cx);
|
|
+ JS::RootedObject rootedGlobal(cx, globalObject);
|
|
+ if (!JS_GetPrototype(cx, rootedGlobal, &proto))
|
|
+ return global;
|
|
+ if (!proto || !xpc::IsSandboxPrototypeProxy(proto))
|
|
+ return global;
|
|
+ // If this is a sandbox associated with a DOMWindow via a
|
|
+ // sandboxPrototype, use that DOMWindow. This supports GreaseMonkey
|
|
+ // and JetPack content scripts.
|
|
+ proto = js::CheckedUnwrapDynamic(proto, cx, /* stopAtWindowProxy = */ false);
|
|
+ if (!proto)
|
|
+ return global;
|
|
+ return xpc::WindowGlobalOrNull(proto);
|
|
+}
|
|
+
|
|
// If the entry or incumbent global ends up being something that the subject
|
|
// principal doesn't subsume, we don't want to use it. This never happens on
|
|
// the web, but can happen with asymmetric privilege relationships (i.e.
|
|
@@ -177,7 +201,7 @@ static nsIGlobalObject* ClampToSubject(nsIGlobalObject* aGlobalOrNull) {
|
|
NS_ENSURE_TRUE(globalPrin, GetCurrentGlobal());
|
|
if (!nsContentUtils::SubjectPrincipalOrSystemIfNativeCaller()
|
|
->SubsumesConsideringDomain(globalPrin)) {
|
|
- return GetCurrentGlobal();
|
|
+ return UnwrapSandboxGlobal(GetCurrentGlobal());
|
|
}
|
|
|
|
return aGlobalOrNull;
|
|
diff --git a/dom/security/nsCSPUtils.cpp b/dom/security/nsCSPUtils.cpp
|
|
index fb7533f064..420383cefa 100644
|
|
--- a/dom/security/nsCSPUtils.cpp
|
|
+++ b/dom/security/nsCSPUtils.cpp
|
|
@@ -33,6 +33,7 @@
|
|
#include "nsSandboxFlags.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
#include "nsWhitespaceTokenizer.h"
|
|
+#include "nsDocShell.h"
|
|
|
|
using namespace mozilla;
|
|
using mozilla::dom::SRIMetadata;
|
|
@@ -136,6 +137,11 @@ void CSP_ApplyMetaCSPToDoc(mozilla::dom::Document& aDoc,
|
|
return;
|
|
}
|
|
|
|
+ if (aDoc.GetDocShell() &&
|
|
+ nsDocShell::Cast(aDoc.GetDocShell())->IsBypassCSPEnabled()) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
nsAutoString policyStr(
|
|
nsContentUtils::TrimWhitespace<nsContentUtils::IsHTMLWhitespace>(
|
|
aPolicyStr));
|
|
diff --git a/dom/webidl/GeometryUtils.webidl b/dom/webidl/GeometryUtils.webidl
|
|
index aee376e971..1701311534 100644
|
|
--- a/dom/webidl/GeometryUtils.webidl
|
|
+++ b/dom/webidl/GeometryUtils.webidl
|
|
@@ -17,6 +17,8 @@ dictionary GeometryUtilsOptions {
|
|
boolean createFramesForSuppressedWhitespace = true;
|
|
[ChromeOnly]
|
|
boolean flush = true;
|
|
+ [ChromeOnly]
|
|
+ boolean recurseWhenNoFrame = false;
|
|
};
|
|
|
|
dictionary BoxQuadOptions : GeometryUtilsOptions {
|
|
@@ -35,6 +37,9 @@ interface mixin GeometryUtils {
|
|
[Throws, Func="nsINode::HasBoxQuadsSupport", NeedsCallerType]
|
|
sequence<DOMQuad> getBoxQuads(optional BoxQuadOptions options = {});
|
|
|
|
+ [ChromeOnly, Throws, Func="nsINode::HasBoxQuadsSupport"]
|
|
+ undefined scrollRectIntoViewIfNeeded(long x, long y, long w, long h);
|
|
+
|
|
/* getBoxQuadsFromWindowOrigin is similar to getBoxQuads, but the
|
|
* returned quads are further translated relative to the window
|
|
* origin -- which is not the layout origin. Further translation
|
|
diff --git a/dom/webidl/Window.webidl b/dom/webidl/Window.webidl
|
|
index 7c509eb87e..632652dace 100644
|
|
--- a/dom/webidl/Window.webidl
|
|
+++ b/dom/webidl/Window.webidl
|
|
@@ -408,6 +408,8 @@ dictionary SynthesizeMouseEventData {
|
|
short inputSource = 1;
|
|
// Modifiers pressed, using constants defined as MODIFIER_* in nsIDOMWindowUtils.
|
|
long modifiers = 0;
|
|
+ // Juggler event identifier for tracking events across processes.
|
|
+ unsigned long jugglerEventId = 0;
|
|
};
|
|
|
|
// Mozilla-specific stuff
|
|
@@ -424,6 +426,8 @@ dictionary SynthesizeMouseEventOptions {
|
|
// Set this to true to ensure that the event is dispatched to this DOM window
|
|
// or one of its children.
|
|
boolean toWindow = false;
|
|
+ // Controls whether the mouse event should be converted to a pointer event.
|
|
+ boolean convertToPointer = true;
|
|
};
|
|
|
|
// Mozilla-specific stuff
|
|
diff --git a/dom/workers/RuntimeService.cpp b/dom/workers/RuntimeService.cpp
|
|
index 5b30b4117b..f53955c06d 100644
|
|
--- a/dom/workers/RuntimeService.cpp
|
|
+++ b/dom/workers/RuntimeService.cpp
|
|
@@ -1117,7 +1117,7 @@ void PrefLanguagesChanged(const char* /* aPrefName */, void* /* aClosure */) {
|
|
AssertIsOnMainThread();
|
|
|
|
nsTArray<nsString> languages;
|
|
- Navigator::GetAcceptLanguages(languages, nullptr);
|
|
+ Navigator::GetAcceptLanguages(nullptr, languages);
|
|
|
|
RuntimeService* runtime = RuntimeService::GetService();
|
|
if (runtime) {
|
|
@@ -1307,8 +1307,7 @@ bool RuntimeService::RegisterWorker(WorkerPrivate& aWorkerPrivate) {
|
|
}
|
|
|
|
// The navigator overridden properties should have already been read.
|
|
-
|
|
- Navigator::GetAcceptLanguages(mNavigatorProperties.mLanguages, nullptr);
|
|
+ Navigator::GetAcceptLanguages(nullptr, mNavigatorProperties.mLanguages);
|
|
mNavigatorPropertiesLoaded = true;
|
|
}
|
|
|
|
@@ -1936,6 +1935,13 @@ void RuntimeService::PropagateStorageAccessPermissionGranted(
|
|
}
|
|
}
|
|
|
|
+void RuntimeService::ResetDefaultLocaleInAllWorkers() {
|
|
+ AssertIsOnMainThread();
|
|
+ BroadcastAllWorkers([](auto& worker) {
|
|
+ worker.ResetDefaultLocale();
|
|
+ });
|
|
+}
|
|
+
|
|
template <typename Func>
|
|
void RuntimeService::BroadcastAllWorkers(const Func& aFunc) {
|
|
AssertIsOnMainThread();
|
|
@@ -2497,6 +2503,14 @@ void PropagateStorageAccessPermissionGrantedToWorkers(
|
|
}
|
|
}
|
|
|
|
+void ResetDefaultLocaleInAllWorkers() {
|
|
+ AssertIsOnMainThread();
|
|
+ RuntimeService* runtime = RuntimeService::GetService();
|
|
+ if (runtime) {
|
|
+ runtime->ResetDefaultLocaleInAllWorkers();
|
|
+ }
|
|
+}
|
|
+
|
|
WorkerPrivate* GetWorkerPrivateFromContext(JSContext* aCx) {
|
|
MOZ_ASSERT(!NS_IsMainThread());
|
|
MOZ_ASSERT(aCx);
|
|
diff --git a/dom/workers/RuntimeService.h b/dom/workers/RuntimeService.h
|
|
index bb7167d639..6d5bef88d9 100644
|
|
--- a/dom/workers/RuntimeService.h
|
|
+++ b/dom/workers/RuntimeService.h
|
|
@@ -112,6 +112,8 @@ class RuntimeService final : public nsIObserver {
|
|
void PropagateStorageAccessPermissionGranted(
|
|
const nsPIDOMWindowInner& aWindow);
|
|
|
|
+ void ResetDefaultLocaleInAllWorkers();
|
|
+
|
|
const NavigatorProperties& GetNavigatorProperties() const {
|
|
return mNavigatorProperties;
|
|
}
|
|
diff --git a/dom/workers/WorkerCommon.h b/dom/workers/WorkerCommon.h
|
|
index af8d36c0d7..6b3a967c9a 100644
|
|
--- a/dom/workers/WorkerCommon.h
|
|
+++ b/dom/workers/WorkerCommon.h
|
|
@@ -50,6 +50,8 @@ void ResumeWorkersForWindow(const nsPIDOMWindowInner& aWindow);
|
|
void PropagateStorageAccessPermissionGrantedToWorkers(
|
|
const nsPIDOMWindowInner& aWindow);
|
|
|
|
+void ResetDefaultLocaleInAllWorkers();
|
|
+
|
|
// All of these are implemented in WorkerScope.cpp
|
|
|
|
bool IsWorkerGlobal(JSObject* global);
|
|
diff --git a/dom/workers/WorkerPrivate.cpp b/dom/workers/WorkerPrivate.cpp
|
|
index c8e44687b7..382b67f1c4 100644
|
|
--- a/dom/workers/WorkerPrivate.cpp
|
|
+++ b/dom/workers/WorkerPrivate.cpp
|
|
@@ -742,6 +742,18 @@ class UpdateContextOptionsRunnable final : public WorkerControlRunnable {
|
|
}
|
|
};
|
|
|
|
+class ResetDefaultLocaleRunnable final : public WorkerControlRunnable {
|
|
+ public:
|
|
+ explicit ResetDefaultLocaleRunnable(WorkerPrivate* aWorkerPrivate)
|
|
+ : WorkerControlRunnable("ResetDefaultLocaleRunnable") {}
|
|
+
|
|
+ virtual bool WorkerRun(JSContext* aCx,
|
|
+ WorkerPrivate* aWorkerPrivate) override {
|
|
+ aWorkerPrivate->ResetDefaultLocaleInternal(aCx);
|
|
+ return true;
|
|
+ }
|
|
+};
|
|
+
|
|
class UpdateLanguagesRunnable final : public WorkerThreadRunnable {
|
|
nsTArray<nsString> mLanguages;
|
|
|
|
@@ -2350,6 +2362,16 @@ void WorkerPrivate::UpdateContextOptions(
|
|
}
|
|
}
|
|
|
|
+void WorkerPrivate::ResetDefaultLocale() {
|
|
+ AssertIsOnParentThread();
|
|
+
|
|
+ RefPtr<ResetDefaultLocaleRunnable> runnable =
|
|
+ new ResetDefaultLocaleRunnable(this);
|
|
+ if (!runnable->Dispatch(this)) {
|
|
+ NS_WARNING("Failed to reset default locale in worker!");
|
|
+ }
|
|
+}
|
|
+
|
|
void WorkerPrivate::UpdateLanguages(const nsTArray<nsString>& aLanguages) {
|
|
AssertIsOnParentThread();
|
|
|
|
@@ -6019,6 +6041,15 @@ void WorkerPrivate::UpdateContextOptionsInternal(
|
|
}
|
|
}
|
|
|
|
+void WorkerPrivate::ResetDefaultLocaleInternal(JSContext* aCx) {
|
|
+ JS_ResetDefaultLocale(JS_GetRuntime(aCx));
|
|
+ auto data = mWorkerThreadAccessible.Access();
|
|
+
|
|
+ for (uint32_t index = 0; index < data->mChildWorkers.Length(); index++) {
|
|
+ data->mChildWorkers[index]->ResetDefaultLocale();
|
|
+ }
|
|
+}
|
|
+
|
|
void WorkerPrivate::UpdateLanguagesInternal(
|
|
const nsTArray<nsString>& aLanguages) {
|
|
WorkerGlobalScope* globalScope = GlobalScope();
|
|
diff --git a/dom/workers/WorkerPrivate.h b/dom/workers/WorkerPrivate.h
|
|
index c5d17c1c0a..f8790fa5b0 100644
|
|
--- a/dom/workers/WorkerPrivate.h
|
|
+++ b/dom/workers/WorkerPrivate.h
|
|
@@ -462,6 +462,8 @@ class WorkerPrivate final
|
|
void UpdateContextOptionsInternal(JSContext* aCx,
|
|
const JS::ContextOptions& aContextOptions);
|
|
|
|
+ void ResetDefaultLocaleInternal(JSContext* aCx);
|
|
+
|
|
void UpdateLanguagesInternal(const nsTArray<nsString>& aLanguages);
|
|
|
|
void UpdateJSWorkerMemoryParameterInternal(JSContext* aCx, JSGCParamKey key,
|
|
@@ -1109,6 +1111,8 @@ class WorkerPrivate final
|
|
|
|
void UpdateContextOptions(const JS::ContextOptions& aContextOptions);
|
|
|
|
+ void ResetDefaultLocale();
|
|
+
|
|
void UpdateLanguages(const nsTArray<nsString>& aLanguages);
|
|
|
|
void UpdateJSWorkerMemoryParameter(JSGCParamKey key, Maybe<uint32_t> value);
|
|
diff --git a/intl/components/src/TimeZone.cpp b/intl/components/src/TimeZone.cpp
|
|
index fb4c0657ba..472492899a 100644
|
|
--- a/intl/components/src/TimeZone.cpp
|
|
+++ b/intl/components/src/TimeZone.cpp
|
|
@@ -16,6 +16,7 @@
|
|
|
|
namespace mozilla::intl {
|
|
|
|
+
|
|
/* static */
|
|
Result<UniquePtr<TimeZone>, ICUError> TimeZone::TryCreate(
|
|
Maybe<Span<const char>> aTimeZoneOverride) {
|
|
@@ -327,6 +328,13 @@ static ICUResult SetDefaultTimeZone(TimeZoneIdentifierVector& timeZone) {
|
|
}
|
|
#endif
|
|
|
|
+bool TimeZone::IsValidTimeZoneId(const char* timeZoneId) {
|
|
+ // Validate timezone id.
|
|
+ mozilla::UniquePtr<icu::TimeZone> timeZone(icu::TimeZone::createTimeZone(
|
|
+ icu::UnicodeString(timeZoneId, -1, US_INV)));
|
|
+ return timeZone && *timeZone != icu::TimeZone::getUnknown();
|
|
+}
|
|
+
|
|
Result<bool, ICUError> TimeZone::SetDefaultTimeZone(
|
|
Span<const char> aTimeZone) {
|
|
#if MOZ_INTL_USE_ICU_CPP_TIMEZONE
|
|
diff --git a/intl/components/src/TimeZone.h b/intl/components/src/TimeZone.h
|
|
index 9eea5e24b6..b530d01060 100644
|
|
--- a/intl/components/src/TimeZone.h
|
|
+++ b/intl/components/src/TimeZone.h
|
|
@@ -190,6 +190,8 @@ class TimeZone final {
|
|
return FillBufferWithICUCall(aBuffer, ucal_getHostTimeZone);
|
|
}
|
|
|
|
+ static bool IsValidTimeZoneId(const char* timeZoneId);
|
|
+
|
|
/**
|
|
* Set the default time zone.
|
|
*/
|
|
diff --git a/js/public/Date.h b/js/public/Date.h
|
|
index 523e84c8c9..98d5b1176e 100644
|
|
--- a/js/public/Date.h
|
|
+++ b/js/public/Date.h
|
|
@@ -55,6 +55,8 @@ namespace JS {
|
|
*/
|
|
extern JS_PUBLIC_API void ResetTimeZone();
|
|
|
|
+extern JS_PUBLIC_API bool SetTimeZoneOverride(const char* timezoneId);
|
|
+
|
|
class ClippedTime;
|
|
inline ClippedTime TimeClip(double time);
|
|
|
|
diff --git a/js/src/debugger/Object.cpp b/js/src/debugger/Object.cpp
|
|
index 2d177b5aad..28af5d41eb 100644
|
|
--- a/js/src/debugger/Object.cpp
|
|
+++ b/js/src/debugger/Object.cpp
|
|
@@ -2516,7 +2516,11 @@ Maybe<Completion> DebuggerObject::call(JSContext* cx,
|
|
invokeArgs[i].set(args2[i]);
|
|
}
|
|
|
|
+ // Disable CSP for the scope of the call.
|
|
+ const JSSecurityCallbacks* securityCallbacks = JS_GetSecurityCallbacks(cx);
|
|
+ JS_SetSecurityCallbacks(cx, nullptr);
|
|
ok = js::Call(cx, calleev, thisv, invokeArgs, &result);
|
|
+ JS_SetSecurityCallbacks(cx, securityCallbacks);
|
|
}
|
|
}
|
|
|
|
diff --git a/js/src/vm/DateTime.cpp b/js/src/vm/DateTime.cpp
|
|
index 5f329ff0f6..709cd2b90d 100644
|
|
--- a/js/src/vm/DateTime.cpp
|
|
+++ b/js/src/vm/DateTime.cpp
|
|
@@ -167,7 +167,7 @@ static int32_t UTCToLocalStandardOffsetSeconds() {
|
|
|
|
void js::DateTimeInfo::internalResetTimeZone(ResetTimeZoneMode mode) {
|
|
#if JS_HAS_INTL_API
|
|
- MOZ_ASSERT(!timeZoneOverride_, "only valid for default instance");
|
|
+ MOZ_ASSERT(timeZoneOverride_.empty(), "only valid for default instance");
|
|
#endif
|
|
|
|
// Nothing to do when an update request is already enqueued.
|
|
@@ -207,28 +207,16 @@ void js::DateTimeInfo::resetState() {
|
|
#endif /* JS_HAS_INTL_API */
|
|
}
|
|
|
|
-#if JS_HAS_INTL_API
|
|
-void js::DateTimeInfo::updateTimeZoneOverride(
|
|
- RefPtr<JS::TimeZoneString> timeZone) {
|
|
- MOZ_RELEASE_ASSERT(timeZoneOverride_, "can't change default instance");
|
|
- MOZ_ASSERT(timeZone);
|
|
-
|
|
- // Reset state when time zone override changed.
|
|
- if (std::strcmp(timeZoneOverride_->chars(), timeZone->chars()) != 0) {
|
|
- timeZoneOverride_ = timeZone;
|
|
-
|
|
- // Reuse the |utcToLocalStandardOffsetSeconds_| as the cache key.
|
|
- utcToLocalStandardOffsetSeconds_++;
|
|
|
|
- resetState();
|
|
- }
|
|
+void js::DateTimeInfo::internalSetTimeZoneOverride(std::string timeZone) {
|
|
+ timeZoneOverride_ = std::move(timeZone);
|
|
+ internalResetTimeZone(ResetTimeZoneMode::ResetEvenIfOffsetUnchanged);
|
|
}
|
|
-#endif
|
|
|
|
void js::DateTimeInfo::updateTimeZone() {
|
|
MOZ_ASSERT(timeZoneStatus_ != TimeZoneStatus::Valid);
|
|
#if JS_HAS_INTL_API
|
|
- MOZ_ASSERT(!timeZoneOverride_, "only valid for default instance");
|
|
+ MOZ_ASSERT(timeZoneOverride_.empty(), "only valid for default instance");
|
|
#endif
|
|
|
|
bool updateIfChanged = timeZoneStatus_ == TimeZoneStatus::UpdateIfChanged;
|
|
@@ -266,21 +254,6 @@ js::DateTimeInfo::DateTimeInfo() {
|
|
timeZoneStatus_ = TimeZoneStatus::NeedsUpdate;
|
|
}
|
|
|
|
-#if JS_HAS_INTL_API
|
|
-js::DateTimeInfo::DateTimeInfo(RefPtr<JS::TimeZoneString> timeZone)
|
|
- : utcToLocalStandardOffsetSeconds_(SecondsPerDay),
|
|
- timeZoneOverride_(timeZone) {
|
|
- MOZ_ASSERT(timeZone);
|
|
-
|
|
- // |utcToLocalStandardOffsetSeconds_| is initialized to |SecondsPerDay| to
|
|
- // ensure it's larger than any valid time zone offset as computed by
|
|
- // |UTCToLocalStandardOffsetSeconds()|.
|
|
-
|
|
- // Manually reset all internal state, because |updateTimeZone| is never called
|
|
- // when a time zone override is used.
|
|
- resetState();
|
|
-}
|
|
-#endif
|
|
|
|
js::DateTimeInfo::~DateTimeInfo() = default;
|
|
|
|
@@ -549,9 +522,9 @@ bool js::DateTimeInfo::internalTimeZoneId(TimeZoneIdentifierVector& result) {
|
|
mozilla::intl::TimeZone* js::DateTimeInfo::timeZone() {
|
|
if (!timeZone_) {
|
|
mozilla::Maybe<mozilla::Span<const char>> timeZoneOverride;
|
|
- if (timeZoneOverride_) {
|
|
+ if (!timeZoneOverride_.empty()) {
|
|
timeZoneOverride =
|
|
- mozilla::Some(mozilla::MakeStringSpan(timeZoneOverride_->chars()));
|
|
+ mozilla::Some(mozilla::MakeStringSpan(timeZoneOverride_.c_str()));
|
|
}
|
|
|
|
auto timeZone = mozilla::intl::TimeZone::TryCreate(timeZoneOverride);
|
|
@@ -559,7 +532,7 @@ mozilla::intl::TimeZone* js::DateTimeInfo::timeZone() {
|
|
// If a time zone override was specified, but couldn't be resolved to a
|
|
// valid time zone, then we ignore the override request and instead use the
|
|
// system default time zone.
|
|
- if (timeZone.isErr() && timeZoneOverride_) {
|
|
+ if (timeZone.isErr() && !timeZoneOverride_.empty()) {
|
|
timeZone = mozilla::intl::TimeZone::TryCreate();
|
|
}
|
|
|
|
@@ -596,10 +569,24 @@ void js::ResetTimeZoneInternal(ResetTimeZoneMode mode) {
|
|
js::DateTimeInfo::resetTimeZone(mode);
|
|
}
|
|
|
|
+void js::SetTimeZoneOverrideInternal(std::string timeZone) {
|
|
+ auto guard = js::DateTimeInfo::instance->lock();
|
|
+ guard->internalSetTimeZoneOverride(timeZone);
|
|
+}
|
|
+
|
|
JS_PUBLIC_API void JS::ResetTimeZone() {
|
|
js::ResetTimeZoneInternal(js::ResetTimeZoneMode::ResetEvenIfOffsetUnchanged);
|
|
}
|
|
|
|
+JS_PUBLIC_API bool JS::SetTimeZoneOverride(const char* timeZoneId) {
|
|
+ if (!mozilla::intl::TimeZone::IsValidTimeZoneId(timeZoneId)) {
|
|
+ fprintf(stderr, "Invalid timezone id: %s\n", timeZoneId);
|
|
+ return false;
|
|
+ }
|
|
+ js::SetTimeZoneOverrideInternal(std::string(timeZoneId));
|
|
+ return true;
|
|
+}
|
|
+
|
|
#if JS_HAS_INTL_API
|
|
# if defined(XP_WIN)
|
|
static bool IsOlsonCompatibleWindowsTimeZoneId(std::string_view tz) {
|
|
@@ -813,9 +800,17 @@ static bool ReadTimeZoneLink(std::string_view tz,
|
|
|
|
void js::DateTimeInfo::internalResyncICUDefaultTimeZone() {
|
|
#if JS_HAS_INTL_API
|
|
+ if (!timeZoneOverride_.empty()) {
|
|
+ mozilla::Span<const char> tzid = mozilla::Span(timeZoneOverride_.data(), timeZoneOverride_.length());
|
|
+ auto result = mozilla::intl::TimeZone::SetDefaultTimeZone(tzid);
|
|
+ if (result.isErr()) {
|
|
+ fprintf(stderr, "ERROR: failed to setup default time zone\n");
|
|
+ }
|
|
+ return;
|
|
+ }
|
|
+
|
|
if (const char* tzenv = std::getenv("TZ")) {
|
|
std::string_view tz(tzenv);
|
|
-
|
|
mozilla::Span<const char> tzid;
|
|
|
|
# if defined(XP_WIN)
|
|
diff --git a/js/src/vm/DateTime.h b/js/src/vm/DateTime.h
|
|
index 30b172e197..110824439c 100644
|
|
--- a/js/src/vm/DateTime.h
|
|
+++ b/js/src/vm/DateTime.h
|
|
@@ -77,6 +77,8 @@ using TimeZoneIdentifierVector =
|
|
SystemAllocPolicy>;
|
|
#endif
|
|
|
|
+extern void SetTimeZoneOverrideInternal(std::string timeZone);
|
|
+
|
|
/**
|
|
* Stores date/time information, particularly concerning the current local
|
|
* time zone, and implements a small cache for daylight saving time offset
|
|
@@ -151,9 +153,6 @@ class DateTimeInfo {
|
|
}
|
|
|
|
public:
|
|
-#if JS_HAS_INTL_API
|
|
- explicit DateTimeInfo(RefPtr<JS::TimeZoneString> timeZone);
|
|
-#endif
|
|
~DateTimeInfo();
|
|
|
|
// The spec implicitly assumes DST and time zone adjustment information
|
|
@@ -280,13 +279,10 @@ class DateTimeInfo {
|
|
return &DateTimeInfo::utcToLocalOffsetSeconds;
|
|
}
|
|
|
|
-#if JS_HAS_INTL_API
|
|
- void updateTimeZoneOverride(RefPtr<JS::TimeZoneString> timeZone);
|
|
-#endif
|
|
-
|
|
private:
|
|
// The method below should only be called via js::ResetTimeZoneInternal().
|
|
friend void js::ResetTimeZoneInternal(ResetTimeZoneMode);
|
|
+ friend void js::SetTimeZoneOverrideInternal(std::string);
|
|
|
|
static void resetTimeZone(ResetTimeZoneMode mode) {
|
|
auto guard = instance->lock();
|
|
@@ -367,11 +363,6 @@ class DateTimeInfo {
|
|
RangeCache utcRange_; // localtime-based ranges
|
|
RangeCache localRange_; // UTC-based ranges
|
|
|
|
- /**
|
|
- * Time zone override for realms with non-default time zone.
|
|
- */
|
|
- RefPtr<JS::TimeZoneString> timeZoneOverride_;
|
|
-
|
|
/**
|
|
* The current time zone. Lazily constructed to avoid potential I/O access
|
|
* when initializing this class.
|
|
@@ -390,6 +381,8 @@ class DateTimeInfo {
|
|
JS::UniqueChars locale_;
|
|
JS::UniqueTwoByteChars standardName_;
|
|
JS::UniqueTwoByteChars daylightSavingsName_;
|
|
+
|
|
+ std::string timeZoneOverride_;
|
|
#else
|
|
// Restrict the data-time range to the minimum required time_t range as
|
|
// specified in POSIX. Most operating systems support 64-bit time_t
|
|
@@ -407,6 +400,8 @@ class DateTimeInfo {
|
|
|
|
void resetState();
|
|
|
|
+ void internalSetTimeZoneOverride(std::string timeZone);
|
|
+
|
|
void updateTimeZone();
|
|
|
|
void internalResyncICUDefaultTimeZone();
|
|
diff --git a/js/src/vm/Realm.cpp b/js/src/vm/Realm.cpp
|
|
index cebc5d1eb1..81b4d13cdb 100644
|
|
--- a/js/src/vm/Realm.cpp
|
|
+++ b/js/src/vm/Realm.cpp
|
|
@@ -545,22 +545,10 @@ void Realm::setLocaleOverride(const char* locale) {
|
|
}
|
|
|
|
js::DateTimeInfo* Realm::getDateTimeInfo() {
|
|
-#if JS_HAS_INTL_API
|
|
- if (RefPtr<TimeZoneString> timeZone = behaviors_.timeZoneOverride()) {
|
|
- if (!dateTimeInfo_) {
|
|
- AutoEnterOOMUnsafeRegion oomUnsafe;
|
|
-
|
|
- // Crash on OOM because we don't have a good way to handle it here.
|
|
- dateTimeInfo_ = js::MakeUnique<js::DateTimeInfo>(timeZone);
|
|
- if (!dateTimeInfo_) {
|
|
- oomUnsafe.crash("getDateTimeInfo");
|
|
- }
|
|
- } else {
|
|
- dateTimeInfo_->updateTimeZoneOverride(timeZone);
|
|
- }
|
|
- return dateTimeInfo_.get();
|
|
- }
|
|
-#endif
|
|
+ // Playwright patch: Per-realm timezone overrides are disabled in favor of
|
|
+ // global timezone overrides via JS::SetTimeZoneOverride().
|
|
+ // The DateTimeInfo class was refactored to use std::string instead of
|
|
+ // RefPtr<TimeZoneString>, and no longer supports per-realm timezones.
|
|
return nullptr;
|
|
}
|
|
|
|
diff --git a/juggler/screencast/HeadlessWindowCapturer.h b/juggler/screencast/HeadlessWindowCapturer.h
|
|
index cb1bcbbfd7..6b39dfbea0 100644
|
|
--- a/juggler/screencast/HeadlessWindowCapturer.h
|
|
+++ b/juggler/screencast/HeadlessWindowCapturer.h
|
|
@@ -6,12 +6,17 @@
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
+#include "api/scoped_refptr.h"
|
|
#include "api/video/video_frame.h"
|
|
#include "api/video/video_sink_interface.h"
|
|
#include "modules/video_capture/video_capture.h"
|
|
#include "rtc_base/deprecated/recursive_critical_section.h"
|
|
+#include "rtc_base/ref_counted_object.h"
|
|
#include "video_engine/desktop_capture_impl.h"
|
|
|
|
+// Compatibility namespace aliases for WebRTC types
|
|
+namespace rtc = webrtc;
|
|
+
|
|
class nsIWidget;
|
|
|
|
namespace mozilla {
|
|
diff --git a/juggler/screencast/ScreencastEncoder.cpp b/juggler/screencast/ScreencastEncoder.cpp
|
|
index 701361add0..08e4fb9667 100644
|
|
--- a/juggler/screencast/ScreencastEncoder.cpp
|
|
+++ b/juggler/screencast/ScreencastEncoder.cpp
|
|
@@ -41,6 +41,10 @@
|
|
#include "WebMFileWriter.h"
|
|
#include "api/video/video_frame.h"
|
|
|
|
+
|
|
+// Compatibility namespace aliases for WebRTC types
|
|
+namespace rtc = webrtc;
|
|
+
|
|
namespace mozilla {
|
|
|
|
namespace {
|
|
diff --git a/juggler/screencast/nsScreencastService.cpp b/juggler/screencast/nsScreencastService.cpp
|
|
index 062a851429..953d973a3b 100644
|
|
--- a/juggler/screencast/nsScreencastService.cpp
|
|
+++ b/juggler/screencast/nsScreencastService.cpp
|
|
@@ -25,6 +25,8 @@
|
|
#include "mozilla/widget/PlatformWidgetTypes.h"
|
|
#include "video_engine/desktop_capture_impl.h"
|
|
#include "VideoEngine.h"
|
|
+#include "gfxPlatform.h"
|
|
+
|
|
|
|
extern "C" {
|
|
#include "jpeglib.h"
|
|
diff --git a/layout/base/GeometryUtils.cpp b/layout/base/GeometryUtils.cpp
|
|
index 67673c5c30..fe4a278dad 100644
|
|
--- a/layout/base/GeometryUtils.cpp
|
|
+++ b/layout/base/GeometryUtils.cpp
|
|
@@ -23,6 +23,7 @@
|
|
#include "nsContentUtils.h"
|
|
#include "nsIFrame.h"
|
|
#include "nsLayoutUtils.h"
|
|
+#include "ChildIterator.h"
|
|
|
|
using namespace mozilla;
|
|
using namespace mozilla::dom;
|
|
@@ -265,10 +266,27 @@ static bool CheckFramesInSameTopLevelBrowsingContext(nsIFrame* aFrame1,
|
|
return false;
|
|
}
|
|
|
|
+static nsIFrame* GetFrameForNodeRecursive(nsINode* aNode,
|
|
+ const GeometryUtilsOptions& aOptions,
|
|
+ bool aRecurseWhenNoFrame) {
|
|
+ nsIFrame* frame = GetFrameForNode(aNode, aOptions);
|
|
+ if (!frame && aRecurseWhenNoFrame && aNode->IsContent()) {
|
|
+ dom::FlattenedChildIterator iter(aNode->AsContent());
|
|
+ for (nsIContent* child = iter.GetNextChild(); child; child = iter.GetNextChild()) {
|
|
+ frame = GetFrameForNodeRecursive(child, aOptions, aRecurseWhenNoFrame);
|
|
+ if (frame) {
|
|
+ break;
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+ return frame;
|
|
+}
|
|
+
|
|
void GetBoxQuads(nsINode* aNode, const dom::BoxQuadOptions& aOptions,
|
|
nsTArray<RefPtr<DOMQuad>>& aResult, CallerType aCallerType,
|
|
ErrorResult& aRv) {
|
|
- nsIFrame* frame = GetFrameForNode(aNode, aOptions);
|
|
+ nsIFrame* frame =
|
|
+ GetFrameForNodeRecursive(aNode, aOptions, aOptions.mRecurseWhenNoFrame);
|
|
if (!frame) {
|
|
// No boxes to return
|
|
return;
|
|
@@ -281,7 +299,8 @@ void GetBoxQuads(nsINode* aNode, const dom::BoxQuadOptions& aOptions,
|
|
// EnsureFrameForTextNode call. We need to get the first frame again
|
|
// when that happens and re-check it.
|
|
if (!weakFrame.IsAlive()) {
|
|
- frame = GetFrameForNode(aNode, aOptions);
|
|
+ frame =
|
|
+ GetFrameForNodeRecursive(aNode, aOptions, aOptions.mRecurseWhenNoFrame);
|
|
if (!frame) {
|
|
// No boxes to return
|
|
return;
|
|
diff --git a/layout/base/PresShell.cpp b/layout/base/PresShell.cpp
|
|
index 8e488bb954..d9510c00b9 100644
|
|
--- a/layout/base/PresShell.cpp
|
|
+++ b/layout/base/PresShell.cpp
|
|
@@ -12044,7 +12044,9 @@ bool PresShell::ComputeActiveness() const {
|
|
if (!browserChild->IsVisible()) {
|
|
MOZ_LOG(gLog, LogLevel::Debug,
|
|
(" > BrowserChild %p is not visible", browserChild));
|
|
- return false;
|
|
+ bool isActive;
|
|
+ root->GetDocShell()->GetForceActiveState(&isActive);
|
|
+ return isActive;
|
|
}
|
|
|
|
// If the browser is visible but just due to be preserving layers
|
|
diff --git a/layout/base/nsLayoutUtils.cpp b/layout/base/nsLayoutUtils.cpp
|
|
index 89ed5fec3e..6f8cc2ccf6 100644
|
|
--- a/layout/base/nsLayoutUtils.cpp
|
|
+++ b/layout/base/nsLayoutUtils.cpp
|
|
@@ -704,6 +704,10 @@ bool nsLayoutUtils::AllowZoomingForDocument(
|
|
!aDocument->GetPresShell()->AsyncPanZoomEnabled()) {
|
|
return false;
|
|
}
|
|
+
|
|
+ /* Playwright: disable zooming as we don't support meta viewport tag */
|
|
+ if (1 == 1) return false;
|
|
+
|
|
// True if we allow zooming for all documents on this platform, or if we are
|
|
// in RDM.
|
|
BrowsingContext* bc = aDocument->GetBrowsingContext();
|
|
@@ -9736,6 +9740,9 @@ void nsLayoutUtils::ComputeSystemFont(nsFont* aSystemFont,
|
|
|
|
/* static */
|
|
bool nsLayoutUtils::ShouldHandleMetaViewport(const Document* aDocument) {
|
|
+ /* Playwright: disable meta viewport handling since we don't require one */
|
|
+ if (1 == 1) return false;
|
|
+
|
|
BrowsingContext* bc = aDocument->GetBrowsingContext();
|
|
return StaticPrefs::dom_meta_viewport_enabled() || (bc && bc->InRDMPane());
|
|
}
|
|
diff --git a/layout/style/GeckoBindings.h b/layout/style/GeckoBindings.h
|
|
index 79a93cb336..124390898b 100644
|
|
--- a/layout/style/GeckoBindings.h
|
|
+++ b/layout/style/GeckoBindings.h
|
|
@@ -591,6 +591,7 @@ float Gecko_MediaFeatures_GetResolution(const mozilla::dom::Document*);
|
|
bool Gecko_MediaFeatures_PrefersReducedMotion(const mozilla::dom::Document*);
|
|
bool Gecko_MediaFeatures_PrefersReducedTransparency(
|
|
const mozilla::dom::Document*);
|
|
+bool Gecko_MediaFeatures_ForcedColors(const mozilla::dom::Document*);
|
|
bool Gecko_MediaFeatures_MacRTL(const mozilla::dom::Document*);
|
|
mozilla::StylePrefersContrast Gecko_MediaFeatures_PrefersContrast(
|
|
const mozilla::dom::Document*);
|
|
diff --git a/layout/style/nsMediaFeatures.cpp b/layout/style/nsMediaFeatures.cpp
|
|
index 3182e94281..6f4ca1847a 100644
|
|
--- a/layout/style/nsMediaFeatures.cpp
|
|
+++ b/layout/style/nsMediaFeatures.cpp
|
|
@@ -264,11 +264,7 @@ bool Gecko_MediaFeatures_MatchesPlatform(StylePlatform aPlatform) {
|
|
}
|
|
|
|
bool Gecko_MediaFeatures_PrefersReducedMotion(const Document* aDocument) {
|
|
- if (aDocument->ShouldResistFingerprinting(
|
|
- RFPTarget::CSSPrefersReducedMotion)) {
|
|
- return false;
|
|
- }
|
|
- return LookAndFeel::GetInt(LookAndFeel::IntID::PrefersReducedMotion, 0) == 1;
|
|
+ return aDocument->PrefersReducedMotion();
|
|
}
|
|
|
|
bool Gecko_MediaFeatures_PrefersReducedTransparency(const Document* aDocument) {
|
|
@@ -298,6 +294,20 @@ bool Gecko_MediaFeatures_MacRTL(const Document* aDocument) {
|
|
// as a signal.
|
|
StylePrefersContrast Gecko_MediaFeatures_PrefersContrast(
|
|
const Document* aDocument) {
|
|
+ if (auto* bc = aDocument->GetBrowsingContext()) {
|
|
+ switch (bc->Top()->PrefersContrastOverride()) {
|
|
+ case dom::PrefersContrastOverride::No_preference:
|
|
+ return StylePrefersContrast::NoPreference;
|
|
+ case dom::PrefersContrastOverride::Less:
|
|
+ return StylePrefersContrast::Less;
|
|
+ case dom::PrefersContrastOverride::More:
|
|
+ return StylePrefersContrast::More;
|
|
+ case dom::PrefersContrastOverride::Custom:
|
|
+ return StylePrefersContrast::Custom;
|
|
+ }
|
|
+ }
|
|
+
|
|
+
|
|
if (aDocument->ShouldResistFingerprinting(RFPTarget::CSSPrefersContrast)) {
|
|
return StylePrefersContrast::NoPreference;
|
|
}
|
|
diff --git a/netwerk/base/LoadInfo.cpp b/netwerk/base/LoadInfo.cpp
|
|
index c80e36383b..169cce6ea2 100644
|
|
--- a/netwerk/base/LoadInfo.cpp
|
|
+++ b/netwerk/base/LoadInfo.cpp
|
|
@@ -2094,4 +2094,16 @@ void LoadInfo::UpdateParentAddressSpaceInfo() {
|
|
}
|
|
}
|
|
|
|
+NS_IMETHODIMP
|
|
+LoadInfo::GetJugglerLoadIdentifier(uint64_t* aResult) {
|
|
+ *aResult = mJugglerLoadIdentifier;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+LoadInfo::SetJugglerLoadIdentifier(uint64_t aID) {
|
|
+ mJugglerLoadIdentifier = aID;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
} // namespace mozilla::net
|
|
diff --git a/netwerk/base/LoadInfo.h b/netwerk/base/LoadInfo.h
|
|
index 383d6f1f80..a51107be81 100644
|
|
--- a/netwerk/base/LoadInfo.h
|
|
+++ b/netwerk/base/LoadInfo.h
|
|
@@ -540,6 +540,8 @@ class LoadInfo final : public nsILoadInfo {
|
|
dom::UserNavigationInvolvement::None;
|
|
|
|
bool mSkipHTTPSUpgrade = false;
|
|
+
|
|
+ uint64_t mJugglerLoadIdentifier = 0;
|
|
};
|
|
// This is exposed solely for testing purposes and should not be used outside of
|
|
// LoadInfo
|
|
diff --git a/netwerk/base/TRRLoadInfo.cpp b/netwerk/base/TRRLoadInfo.cpp
|
|
index be0f8bcb6f..00f0771453 100644
|
|
--- a/netwerk/base/TRRLoadInfo.cpp
|
|
+++ b/netwerk/base/TRRLoadInfo.cpp
|
|
@@ -562,5 +562,15 @@ TRRLoadInfo::GetFetchDestination(nsACString& aDestination) {
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
}
|
|
|
|
+NS_IMETHODIMP
|
|
+TRRLoadInfo::GetJugglerLoadIdentifier(uint64_t* aResult) {
|
|
+ return NS_ERROR_NOT_IMPLEMENTED;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+TRRLoadInfo::SetJugglerLoadIdentifier(uint64_t aResult) {
|
|
+ return NS_ERROR_NOT_IMPLEMENTED;
|
|
+}
|
|
+
|
|
} // namespace net
|
|
} // namespace mozilla
|
|
diff --git a/netwerk/base/nsILoadInfo.idl b/netwerk/base/nsILoadInfo.idl
|
|
index 4f4673f41b..dbc045c153 100644
|
|
--- a/netwerk/base/nsILoadInfo.idl
|
|
+++ b/netwerk/base/nsILoadInfo.idl
|
|
@@ -1714,4 +1714,6 @@ interface nsILoadInfo : nsISupports
|
|
return static_cast<mozilla::dom::UserNavigationInvolvement>(userNavigationInvolvement);
|
|
}
|
|
%}
|
|
+
|
|
+ [infallible] attribute unsigned long long jugglerLoadIdentifier;
|
|
};
|
|
diff --git a/netwerk/base/nsINetworkInterceptController.idl b/netwerk/base/nsINetworkInterceptController.idl
|
|
index 7f91d2df6f..aaa5541a17 100644
|
|
--- a/netwerk/base/nsINetworkInterceptController.idl
|
|
+++ b/netwerk/base/nsINetworkInterceptController.idl
|
|
@@ -60,6 +60,16 @@ interface nsIInterceptedChannel : nsISupports
|
|
*/
|
|
void resetInterception(in boolean bypass);
|
|
|
|
+ // ----- Playwright begin -----
|
|
+
|
|
+ // Same as resetInterception, but updates the URI.
|
|
+ void resetInterceptionWithURI(in nsIURI aURI);
|
|
+
|
|
+ // After resetInterception is called, this request will be intercepted again.
|
|
+ void interceptAfterServiceWorkerResets();
|
|
+
|
|
+ // ----- Playwright end -------
|
|
+
|
|
/**
|
|
* Set the status and reason for the forthcoming synthesized response.
|
|
* Multiple calls overwrite existing values.
|
|
diff --git a/netwerk/ipc/DocumentLoadListener.cpp b/netwerk/ipc/DocumentLoadListener.cpp
|
|
index 634865583e..91585bddb7 100644
|
|
--- a/netwerk/ipc/DocumentLoadListener.cpp
|
|
+++ b/netwerk/ipc/DocumentLoadListener.cpp
|
|
@@ -190,6 +190,7 @@ static auto CreateDocumentLoadInfo(CanonicalBrowsingContext* aBrowsingContext,
|
|
loadInfo->SetTextDirectiveUserActivation(
|
|
aLoadState->GetTextDirectiveUserActivation());
|
|
loadInfo->SetIsMetaRefresh(aLoadState->IsMetaRefresh());
|
|
+ loadInfo->SetJugglerLoadIdentifier(aLoadState->GetLoadIdentifier());
|
|
|
|
return loadInfo.forget();
|
|
}
|
|
diff --git a/netwerk/protocol/http/InterceptedHttpChannel.cpp b/netwerk/protocol/http/InterceptedHttpChannel.cpp
|
|
index 9a7f39489d..56ee9beaee 100644
|
|
--- a/netwerk/protocol/http/InterceptedHttpChannel.cpp
|
|
+++ b/netwerk/protocol/http/InterceptedHttpChannel.cpp
|
|
@@ -724,10 +724,33 @@ NS_IMPL_ISUPPORTS(ResetInterceptionHeaderVisitor, nsIHttpHeaderVisitor)
|
|
|
|
} // anonymous namespace
|
|
|
|
+NS_IMETHODIMP
|
|
+InterceptedHttpChannel::InterceptAfterServiceWorkerResets() {
|
|
+ mInterceptAfterServiceWorkerResets = true;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
+NS_IMETHODIMP
|
|
+InterceptedHttpChannel::ResetInterceptionWithURI(nsIURI* aURI) {
|
|
+ if (aURI) {
|
|
+ mURI = aURI;
|
|
+ }
|
|
+ return ResetInterception(true);
|
|
+}
|
|
+
|
|
NS_IMETHODIMP
|
|
InterceptedHttpChannel::ResetInterception(bool aBypass) {
|
|
INTERCEPTED_LOG(("InterceptedHttpChannel::ResetInterception [%p] bypass: %s",
|
|
this, aBypass ? "true" : "false"));
|
|
+ if (mInterceptAfterServiceWorkerResets) {
|
|
+ mInterceptAfterServiceWorkerResets = false;
|
|
+ nsCOMPtr<nsINetworkInterceptController> controller;
|
|
+ GetCallback(controller);
|
|
+ if (!controller)
|
|
+ return NS_ERROR_DOM_INVALID_STATE_ERR;
|
|
+ return controller->ChannelIntercepted(this);
|
|
+ }
|
|
+
|
|
if (mCanceled) {
|
|
return mStatus;
|
|
}
|
|
@@ -1142,11 +1165,18 @@ InterceptedHttpChannel::OnStartRequest(nsIRequest* aRequest) {
|
|
GetCallback(mProgressSink);
|
|
}
|
|
|
|
+ // Playwright: main requests in firefox do not have loading principal.
|
|
+ // As they are intercepted by Playwright, they don't have
|
|
+ // serviceWorkerTainting as well.
|
|
+ // Thus these asserts are wrong for Playwright world.
|
|
+ // Note: these checks were added in https://github.com/mozilla-firefox/firefox/commit/bb16ca6496682c3b0ddd452d0dd4c1dd46ff71f8
|
|
+ /*
|
|
MOZ_ASSERT_IF(!mLoadInfo->GetServiceWorkerTaintingSynthesized(),
|
|
mLoadInfo->GetLoadingPrincipal());
|
|
// No need to do ORB checks if these conditions hold.
|
|
MOZ_DIAGNOSTIC_ASSERT(mLoadInfo->GetServiceWorkerTaintingSynthesized() ||
|
|
mLoadInfo->GetLoadingPrincipal()->IsSystemPrincipal());
|
|
+ */
|
|
|
|
if (mPump && mLoadFlags & LOAD_CALL_CONTENT_SNIFFERS) {
|
|
mPump->PeekStream(CallTypeSniffers, static_cast<nsIChannel*>(this));
|
|
diff --git a/netwerk/protocol/http/InterceptedHttpChannel.h b/netwerk/protocol/http/InterceptedHttpChannel.h
|
|
index 7a2a4f2910..a416e1357a 100644
|
|
--- a/netwerk/protocol/http/InterceptedHttpChannel.h
|
|
+++ b/netwerk/protocol/http/InterceptedHttpChannel.h
|
|
@@ -90,6 +90,11 @@ class InterceptedHttpChannel final
|
|
Atomic<bool> mCallingStatusAndProgress;
|
|
bool mInterceptionReset{false};
|
|
|
|
+ // ----- Playwright begin -----
|
|
+ // After resetInterception is called, this request will call into interceptors again.
|
|
+ bool mInterceptAfterServiceWorkerResets{false};
|
|
+ // ----- Playwright end -------
|
|
+
|
|
/**
|
|
* InterceptionTimeStamps is used to record the time stamps of the
|
|
* interception.
|
|
diff --git a/netwerk/protocol/http/nsHttpChannel.cpp b/netwerk/protocol/http/nsHttpChannel.cpp
|
|
index 1a76f06043..61f7cab9c1 100644
|
|
--- a/netwerk/protocol/http/nsHttpChannel.cpp
|
|
+++ b/netwerk/protocol/http/nsHttpChannel.cpp
|
|
@@ -922,11 +922,9 @@ nsresult nsHttpChannel::OnBeforeConnect() {
|
|
// SecurityInfo.sys.mjs
|
|
mLoadInfo->SetHstsStatus(isSecureURI);
|
|
|
|
- RefPtr<mozilla::dom::BrowsingContext> bc;
|
|
- mLoadInfo->GetBrowsingContext(getter_AddRefs(bc));
|
|
// If bypassing the cache and we're forced offline
|
|
// we can just return the error here.
|
|
- if (bc && bc->Top()->GetForceOffline() &&
|
|
+ if (IsForcedOffline() &&
|
|
BYPASS_LOCAL_CACHE(mLoadFlags, LoadPreferCacheLoadOverBypass())) {
|
|
return NS_ERROR_OFFLINE;
|
|
}
|
|
@@ -1039,9 +1037,7 @@ nsresult nsHttpChannel::MaybeUseHTTPSRRForUpgrade(bool aShouldUpgrade,
|
|
return aStatus;
|
|
}
|
|
|
|
- RefPtr<mozilla::dom::BrowsingContext> bc;
|
|
- mLoadInfo->GetBrowsingContext(getter_AddRefs(bc));
|
|
- bool forceOffline = bc && bc->Top()->GetForceOffline();
|
|
+ bool forceOffline = IsForcedOffline();
|
|
|
|
if (mURI->SchemeIs("https") || aShouldUpgrade || !LoadUseHTTPSSVC() ||
|
|
forceOffline) {
|
|
@@ -1518,15 +1514,14 @@ nsresult nsHttpChannel::ContinueConnect() {
|
|
"CORS preflight must have been finished by the time we "
|
|
"do the rest of ContinueConnect");
|
|
|
|
- RefPtr<mozilla::dom::BrowsingContext> bc;
|
|
- mLoadInfo->GetBrowsingContext(getter_AddRefs(bc));
|
|
+ bool isForcedOffline = IsForcedOffline();
|
|
|
|
// we may or may not have a cache entry at this point
|
|
if (mCacheEntry) {
|
|
// read straight from the cache if possible...
|
|
if (CachedContentIsValid()) {
|
|
// If we're forced offline, and set to bypass the cache, return offline.
|
|
- if (bc && bc->Top()->GetForceOffline() &&
|
|
+ if (isForcedOffline &&
|
|
BYPASS_LOCAL_CACHE(mLoadFlags, LoadPreferCacheLoadOverBypass())) {
|
|
return NS_ERROR_OFFLINE;
|
|
}
|
|
@@ -1568,7 +1563,7 @@ nsresult nsHttpChannel::ContinueConnect() {
|
|
}
|
|
|
|
// We're about to hit the network. Don't if we're forced offline.
|
|
- if (bc && bc->Top()->GetForceOffline()) {
|
|
+ if (isForcedOffline) {
|
|
return NS_ERROR_OFFLINE;
|
|
}
|
|
|
|
@@ -1676,12 +1671,9 @@ void nsHttpChannel::SpeculativeConnect() {
|
|
// don't speculate if we are offline, when doing http upgrade (i.e.
|
|
// websockets bootstrap), or if we can't do keep-alive (because then we
|
|
// couldn't reuse the speculative connection anyhow).
|
|
- RefPtr<mozilla::dom::BrowsingContext> bc;
|
|
- mLoadInfo->GetBrowsingContext(getter_AddRefs(bc));
|
|
-
|
|
if (gIOService->IsOffline() || mUpgradeProtocolCallback ||
|
|
!(mCaps & NS_HTTP_ALLOW_KEEPALIVE) ||
|
|
- (bc && bc->Top()->GetForceOffline())) {
|
|
+ IsForcedOffline()) {
|
|
return;
|
|
}
|
|
|
|
@@ -4674,9 +4666,6 @@ nsresult nsHttpChannel::OpenCacheEntryInternal(bool isHttps) {
|
|
uint32_t cacheEntryOpenFlags;
|
|
bool offline = gIOService->IsOffline();
|
|
|
|
- RefPtr<mozilla::dom::BrowsingContext> bc;
|
|
- mLoadInfo->GetBrowsingContext(getter_AddRefs(bc));
|
|
-
|
|
bool maybeRCWN = false;
|
|
|
|
nsAutoCString cacheControlRequestHeader;
|
|
@@ -4687,7 +4676,7 @@ nsresult nsHttpChannel::OpenCacheEntryInternal(bool isHttps) {
|
|
return NS_OK;
|
|
}
|
|
|
|
- bool forceOffline = bc && bc->Top()->GetForceOffline();
|
|
+ bool forceOffline = IsForcedOffline();
|
|
if (offline || (mLoadFlags & INHIBIT_CACHING) || forceOffline) {
|
|
if (BYPASS_LOCAL_CACHE(mLoadFlags, LoadPreferCacheLoadOverBypass()) &&
|
|
!offline && !forceOffline) {
|
|
@@ -7975,6 +7964,20 @@ void nsHttpChannel::MaybeStartDNSPrefetch() {
|
|
}
|
|
}
|
|
|
|
+bool nsHttpChannel::IsForcedOffline() {
|
|
+ RefPtr<mozilla::dom::BrowsingContext> bc;
|
|
+ mLoadInfo->GetBrowsingContext(getter_AddRefs(bc));
|
|
+ if (bc && bc->Top()->GetForceOffline())
|
|
+ return true;
|
|
+
|
|
+ RefPtr<mozilla::dom::BrowsingContext> wbc;
|
|
+ mLoadInfo->GetWorkerAssociatedBrowsingContext(getter_AddRefs(wbc));
|
|
+ if (wbc && wbc->Top()->GetForceOffline())
|
|
+ return true;
|
|
+
|
|
+ return false;
|
|
+}
|
|
+
|
|
NS_IMETHODIMP
|
|
nsHttpChannel::GetEncodedBodySize(uint64_t* aEncodedBodySize) {
|
|
if (mCacheEntry && !LoadCacheEntryIsWriteOnly()) {
|
|
diff --git a/netwerk/protocol/http/nsHttpChannel.h b/netwerk/protocol/http/nsHttpChannel.h
|
|
index f455ad5874..f2e8f43543 100644
|
|
--- a/netwerk/protocol/http/nsHttpChannel.h
|
|
+++ b/netwerk/protocol/http/nsHttpChannel.h
|
|
@@ -312,6 +312,10 @@ class nsHttpChannel final : public HttpBaseChannel,
|
|
void MaybeResolveProxyAndBeginConnect();
|
|
void MaybeStartDNSPrefetch();
|
|
|
|
+ // ---- Playwright begin
|
|
+ bool IsForcedOffline();
|
|
+ // ---- Playwright end
|
|
+
|
|
// Based on the proxy configuration determine the strategy for resolving the
|
|
// end server host name.
|
|
ProxyDNSStrategy GetProxyDNSStrategy();
|
|
diff --git a/parser/html/nsHtml5TreeOpExecutor.cpp b/parser/html/nsHtml5TreeOpExecutor.cpp
|
|
index 72523ca8c1..465aac80a7 100644
|
|
--- a/parser/html/nsHtml5TreeOpExecutor.cpp
|
|
+++ b/parser/html/nsHtml5TreeOpExecutor.cpp
|
|
@@ -1367,6 +1367,10 @@ void nsHtml5TreeOpExecutor::UpdateReferrerInfoFromMeta(
|
|
void nsHtml5TreeOpExecutor::AddSpeculationCSP(const nsAString& aCSP) {
|
|
NS_ASSERTION(NS_IsMainThread(), "Wrong thread!");
|
|
|
|
+ if (mDocShell && static_cast<nsDocShell*>(mDocShell.get())->IsBypassCSPEnabled()) {
|
|
+ return;
|
|
+ }
|
|
+
|
|
nsresult rv = NS_OK;
|
|
nsCOMPtr<nsIContentSecurityPolicy> preloadCsp = mDocument->GetPreloadCsp();
|
|
if (!preloadCsp) {
|
|
diff --git a/security/manager/ssl/nsCertOverrideService.cpp b/security/manager/ssl/nsCertOverrideService.cpp
|
|
index 9d262dbf33..495afbbe2b 100644
|
|
--- a/security/manager/ssl/nsCertOverrideService.cpp
|
|
+++ b/security/manager/ssl/nsCertOverrideService.cpp
|
|
@@ -626,6 +626,8 @@ void nsCertOverrideService::CountPermanentOverrideTelemetry(
|
|
}
|
|
|
|
static bool IsDebugger() {
|
|
+ // In playwright world, this is always enabled.
|
|
+ if (1 == 1) return true;
|
|
#ifdef ENABLE_WEBDRIVER
|
|
nsCOMPtr<nsIMarionette> marionette = do_GetService(NS_MARIONETTE_CONTRACTID);
|
|
if (marionette) {
|
|
diff --git a/services/settings/Utils.sys.mjs b/services/settings/Utils.sys.mjs
|
|
index 8cd4afc313..60f5eb6e52 100644
|
|
--- a/services/settings/Utils.sys.mjs
|
|
+++ b/services/settings/Utils.sys.mjs
|
|
@@ -97,7 +97,7 @@ const _cdnURLs = {};
|
|
|
|
export var Utils = {
|
|
get SERVER_URL() {
|
|
- return lazy.allowServerURLOverride
|
|
+ return true || lazy.allowServerURLOverride
|
|
? lazy.gServerURL
|
|
: AppConstants.REMOTE_SETTINGS_SERVER_URL;
|
|
},
|
|
@@ -110,6 +110,9 @@ export var Utils = {
|
|
log,
|
|
|
|
get shouldSkipRemoteActivityDueToTests() {
|
|
+ // Playwright does not set Cu.isInAutomation, hence we just return true
|
|
+ // here in order to disable the remote activity.
|
|
+ return true;
|
|
return (
|
|
(lazy.isRunningTests || Cu.isInAutomation) &&
|
|
this.SERVER_URL == "data:,#remote-settings-dummy/v1"
|
|
diff --git a/third_party/libwebrtc/api/location.h b/third_party/libwebrtc/api/location.h
|
|
new file mode 100644
|
|
index 0000000000..040cbc972b
|
|
--- /dev/null
|
|
+++ b/third_party/libwebrtc/api/location.h
|
|
@@ -0,0 +1,14 @@
|
|
+#ifndef API_LOCATION_H_
|
|
+#define API_LOCATION_H_
|
|
+
|
|
+namespace webrtc {
|
|
+class Location {
|
|
+ public:
|
|
+ static constexpr Location Current() { return Location(); }
|
|
+ constexpr Location() = default;
|
|
+ constexpr Location(const Location&) = default;
|
|
+ constexpr Location& operator=(const Location&) = default;
|
|
+};
|
|
+} // namespace webrtc
|
|
+
|
|
+#endif // API_LOCATION_H_
|
|
diff --git a/toolkit/components/browser/nsIWebBrowserChrome.idl b/toolkit/components/browser/nsIWebBrowserChrome.idl
|
|
index 75555352b8..72855a404e 100644
|
|
--- a/toolkit/components/browser/nsIWebBrowserChrome.idl
|
|
+++ b/toolkit/components/browser/nsIWebBrowserChrome.idl
|
|
@@ -74,6 +74,9 @@ interface nsIWebBrowserChrome : nsISupports
|
|
// Whether this window should use out-of-process cross-origin subframes.
|
|
const unsigned long CHROME_FISSION_WINDOW = 1 << 21;
|
|
|
|
+ // Whether this window has "width" or "height" defined in features
|
|
+ const unsigned long JUGGLER_WINDOW_EXPLICIT_SIZE = 0x00400000;
|
|
+
|
|
// Prevents new window animations on MacOS and Windows. Currently
|
|
// ignored for Linux.
|
|
const unsigned long CHROME_SUPPRESS_ANIMATION = 1 << 24;
|
|
diff --git a/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs b/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs
|
|
index bb451a2795..cf5ae51466 100644
|
|
--- a/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs
|
|
+++ b/toolkit/components/enterprisepolicies/EnterprisePoliciesParent.sys.mjs
|
|
@@ -106,7 +106,9 @@ EnterprisePoliciesManager.prototype = {
|
|
Services.prefs.clearUserPref(PREF_POLICIES_APPLIED);
|
|
}
|
|
|
|
- let provider = this._chooseProvider();
|
|
+ // --- Playwright begin ---
|
|
+ let provider = new PlaywrightPoliciesProvider();
|
|
+ // --- Playwright end ---
|
|
|
|
if (provider.failed) {
|
|
this.status = Ci.nsIEnterprisePolicies.FAILED;
|
|
@@ -619,6 +621,19 @@ class JSONPoliciesProvider {
|
|
}
|
|
}
|
|
|
|
+class PlaywrightPoliciesProvider extends JSONPoliciesProvider {
|
|
+ _getConfigurationFile() {
|
|
+ let prefPath = Services.prefs.getStringPref(PREF_ALTERNATE_PATH, "");
|
|
+ if (!prefPath)
|
|
+ return null;
|
|
+
|
|
+ dump(`Playwright: loading enterprise policies from ${prefPath}\n`);
|
|
+ let configFile = Cc["@mozilla.org/file/local;1"].createInstance(Ci.nsIFile);
|
|
+ configFile.initWithPath(prefPath);
|
|
+ return configFile;
|
|
+ }
|
|
+}
|
|
+
|
|
class WindowsGPOPoliciesProvider {
|
|
constructor() {
|
|
this._policies = null;
|
|
diff --git a/toolkit/components/resistfingerprinting/nsUserCharacteristics.cpp b/toolkit/components/resistfingerprinting/nsUserCharacteristics.cpp
|
|
index 091aafb624..a82d8a79de 100644
|
|
--- a/toolkit/components/resistfingerprinting/nsUserCharacteristics.cpp
|
|
+++ b/toolkit/components/resistfingerprinting/nsUserCharacteristics.cpp
|
|
@@ -589,7 +589,7 @@ void PopulateLanguages() {
|
|
// sufficient to only collect this information as the other properties are
|
|
// just reformats of Navigator::GetAcceptLanguages.
|
|
nsTArray<nsString> languages;
|
|
- dom::Navigator::GetAcceptLanguages(languages, nullptr);
|
|
+ dom::Navigator::GetAcceptLanguages(nullptr, languages);
|
|
nsCString output = "["_ns;
|
|
|
|
for (const auto& language : languages) {
|
|
diff --git a/toolkit/components/startup/nsAppStartup.cpp b/toolkit/components/startup/nsAppStartup.cpp
|
|
index 5175a8a3ef..4c6b3137f7 100644
|
|
--- a/toolkit/components/startup/nsAppStartup.cpp
|
|
+++ b/toolkit/components/startup/nsAppStartup.cpp
|
|
@@ -360,7 +360,7 @@ nsAppStartup::Quit(uint32_t aMode, int aExitCode, bool* aUserAllowedQuit) {
|
|
nsCOMPtr<nsISimpleEnumerator> windowEnumerator;
|
|
nsCOMPtr<nsIWindowMediator> mediator(
|
|
do_GetService(NS_WINDOWMEDIATOR_CONTRACTID));
|
|
- if (mediator) {
|
|
+ if (ferocity != eForceQuit && mediator) {
|
|
mediator->GetEnumerator(nullptr, getter_AddRefs(windowEnumerator));
|
|
if (windowEnumerator) {
|
|
bool more;
|
|
diff --git a/toolkit/components/statusfilter/nsBrowserStatusFilter.cpp b/toolkit/components/statusfilter/nsBrowserStatusFilter.cpp
|
|
index 36fe2d427e..593795dfb2 100644
|
|
--- a/toolkit/components/statusfilter/nsBrowserStatusFilter.cpp
|
|
+++ b/toolkit/components/statusfilter/nsBrowserStatusFilter.cpp
|
|
@@ -176,8 +176,8 @@ nsBrowserStatusFilter::OnStateChange(nsIWebProgress* aWebProgress,
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
-nsBrowserStatusFilter::OnProgressChange(nsIWebProgress* aWebProgress,
|
|
- nsIRequest* aRequest,
|
|
+nsBrowserStatusFilter::OnProgressChange(nsIWebProgress *aWebProgress,
|
|
+ nsIRequest *aRequest,
|
|
int32_t aCurSelfProgress,
|
|
int32_t aMaxSelfProgress,
|
|
int32_t aCurTotalProgress,
|
|
diff --git a/toolkit/components/windowwatcher/nsWindowWatcher.cpp b/toolkit/components/windowwatcher/nsWindowWatcher.cpp
|
|
index 942cb7c400..864cf804b6 100644
|
|
--- a/toolkit/components/windowwatcher/nsWindowWatcher.cpp
|
|
+++ b/toolkit/components/windowwatcher/nsWindowWatcher.cpp
|
|
@@ -1880,7 +1880,11 @@ uint32_t nsWindowWatcher::CalculateChromeFlagsForContent(
|
|
|
|
// Open a minimal popup.
|
|
*aIsPopupRequested = true;
|
|
- return nsIWebBrowserChrome::CHROME_MINIMAL_POPUP;
|
|
+ uint32_t chromeFlags = 0;
|
|
+ if (aFeatures.Exists("width") || aFeatures.Exists("height")) {
|
|
+ chromeFlags |= nsIWebBrowserChrome::JUGGLER_WINDOW_EXPLICIT_SIZE;
|
|
+ }
|
|
+ return chromeFlags | nsIWebBrowserChrome::CHROME_MINIMAL_POPUP;
|
|
}
|
|
|
|
/**
|
|
diff --git a/toolkit/mozapps/update/UpdateService.sys.mjs b/toolkit/mozapps/update/UpdateService.sys.mjs
|
|
index 61a7a589cf..fccf2fbefa 100644
|
|
--- a/toolkit/mozapps/update/UpdateService.sys.mjs
|
|
+++ b/toolkit/mozapps/update/UpdateService.sys.mjs
|
|
@@ -3990,6 +3990,8 @@ export class UpdateService {
|
|
}
|
|
|
|
get disabledForTesting() {
|
|
+ /* playwright */
|
|
+ return true;
|
|
return lazy.UpdateServiceStub.updateDisabledForTesting;
|
|
}
|
|
|
|
diff --git a/toolkit/toolkit.mozbuild b/toolkit/toolkit.mozbuild
|
|
index 0ab59fb09f..f115a6f7bb 100644
|
|
--- a/toolkit/toolkit.mozbuild
|
|
+++ b/toolkit/toolkit.mozbuild
|
|
@@ -156,6 +156,7 @@ if CONFIG["ENABLE_WEBDRIVER"]:
|
|
"/remote",
|
|
"/testing/firefox-ui",
|
|
"/testing/marionette",
|
|
+ "/juggler",
|
|
"/toolkit/components/telemetry/tests/marionette",
|
|
]
|
|
|
|
diff --git a/toolkit/xre/nsWindowsWMain.cpp b/toolkit/xre/nsWindowsWMain.cpp
|
|
index b7c376eadc..4438577634 100644
|
|
--- a/toolkit/xre/nsWindowsWMain.cpp
|
|
+++ b/toolkit/xre/nsWindowsWMain.cpp
|
|
@@ -14,8 +14,10 @@
|
|
#endif
|
|
|
|
#include "mozilla/Char16.h"
|
|
+#include "mozilla/CmdLineAndEnvUtils.h"
|
|
#include "nsUTF8Utils.h"
|
|
|
|
+#include <io.h>
|
|
#include <windows.h>
|
|
|
|
#ifdef __MINGW32__
|
|
@@ -114,6 +116,19 @@ static void FreeAllocStrings(int argc, char** argv) {
|
|
int wmain(int argc, WCHAR** argv) {
|
|
SanitizeEnvironmentVariables();
|
|
SetDllDirectoryW(L"");
|
|
+ bool hasJugglerPipe =
|
|
+ mozilla::CheckArg(argc, argv, "juggler-pipe", nullptr,
|
|
+ mozilla::CheckArgFlag::None) == mozilla::ARG_FOUND;
|
|
+ if (hasJugglerPipe && !mozilla::EnvHasValue("PW_PIPE_READ")) {
|
|
+ intptr_t stdio3 = _get_osfhandle(3);
|
|
+ intptr_t stdio4 = _get_osfhandle(4);
|
|
+ CHAR stdio3str[20];
|
|
+ CHAR stdio4str[20];
|
|
+ itoa(stdio3, stdio3str, 10);
|
|
+ itoa(stdio4, stdio4str, 10);
|
|
+ SetEnvironmentVariableA("PW_PIPE_READ", stdio3str);
|
|
+ SetEnvironmentVariableA("PW_PIPE_WRITE", stdio4str);
|
|
+ }
|
|
|
|
// Only run this code if LauncherProcessWin.h was included beforehand, thus
|
|
// signalling that the hosting process should support launcher mode.
|
|
diff --git a/uriloader/base/nsDocLoader.cpp b/uriloader/base/nsDocLoader.cpp
|
|
index ef95040ffc..f62a103de6 100644
|
|
--- a/uriloader/base/nsDocLoader.cpp
|
|
+++ b/uriloader/base/nsDocLoader.cpp
|
|
@@ -897,6 +897,12 @@ void nsDocLoader::DocLoaderIsEmpty(bool aFlushLayout,
|
|
mIsLoadingJavascriptURI ? "javascript URI"
|
|
: "document.open"));
|
|
|
|
+ nsCOMPtr<nsIObserverService> os = mozilla::services::GetObserverService();
|
|
+ if (os) {
|
|
+ nsIPrincipal* principal = doc->NodePrincipal();
|
|
+ if (!principal->IsSystemPrincipal())
|
|
+ os->NotifyObservers(ToSupports(doc), "juggler-document-open-loaded", nullptr);
|
|
+ }
|
|
// This is a very cut-down version of
|
|
// nsDocumentViewer::LoadComplete that doesn't do various things
|
|
// that are not relevant here because this wasn't an actual
|
|
diff --git a/uriloader/exthandler/nsExternalHelperAppService.cpp b/uriloader/exthandler/nsExternalHelperAppService.cpp
|
|
index 04c46fda68..21b2fcf861 100644
|
|
--- a/uriloader/exthandler/nsExternalHelperAppService.cpp
|
|
+++ b/uriloader/exthandler/nsExternalHelperAppService.cpp
|
|
@@ -111,6 +111,8 @@
|
|
|
|
#include "mozilla/Components.h"
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
+#include "mozilla/ErrorNames.h"
|
|
+
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/ipc/URIUtils.h"
|
|
|
|
@@ -866,6 +868,12 @@ NS_IMETHODIMP nsExternalHelperAppService::ApplyDecodingForExtension(
|
|
return NS_OK;
|
|
}
|
|
|
|
+NS_IMETHODIMP nsExternalHelperAppService::SetDownloadInterceptor(
|
|
+ nsIDownloadInterceptor* interceptor) {
|
|
+ mInterceptor = interceptor;
|
|
+ return NS_OK;
|
|
+}
|
|
+
|
|
nsresult nsExternalHelperAppService::GetFileTokenForPath(
|
|
const char16_t* aPlatformAppPath, nsIFile** aFile) {
|
|
nsDependentString platformAppPath(aPlatformAppPath);
|
|
@@ -1497,7 +1505,12 @@ nsresult nsExternalAppHandler::SetUpTempFile(nsIChannel* aChannel) {
|
|
// Strip off the ".part" from mTempLeafName
|
|
mTempLeafName.Truncate(mTempLeafName.Length() - std::size(".part") + 1);
|
|
|
|
+ return CreateSaverForTempFile();
|
|
+}
|
|
+
|
|
+nsresult nsExternalAppHandler::CreateSaverForTempFile() {
|
|
MOZ_ASSERT(!mSaver, "Output file initialization called more than once!");
|
|
+ nsresult rv;
|
|
mSaver =
|
|
do_CreateInstance(NS_BACKGROUNDFILESAVERSTREAMLISTENER_CONTRACTID, &rv);
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
@@ -1681,7 +1694,36 @@ NS_IMETHODIMP nsExternalAppHandler::OnStartRequest(nsIRequest* request) {
|
|
return NS_OK;
|
|
}
|
|
|
|
- rv = SetUpTempFile(aChannel);
|
|
+ bool isIntercepted = false;
|
|
+ nsCOMPtr<nsIDownloadInterceptor> interceptor = mExtProtSvc->mInterceptor;
|
|
+ if (interceptor) {
|
|
+ nsCOMPtr<nsIFile> fileToUse;
|
|
+ rv = interceptor->InterceptDownloadRequest(this, request, mBrowsingContext, getter_AddRefs(fileToUse), &isIntercepted);
|
|
+ if (!NS_SUCCEEDED(rv)) {
|
|
+ LOG((" failed to call nsIDowloadInterceptor.interceptDownloadRequest"));
|
|
+ return rv;
|
|
+ }
|
|
+ if (isIntercepted) {
|
|
+ LOG((" request interceped by nsIDowloadInterceptor"));
|
|
+ if (fileToUse) {
|
|
+ mTempFile = fileToUse;
|
|
+ rv = mTempFile->GetLeafName(mTempLeafName);
|
|
+ NS_ENSURE_SUCCESS(rv, rv);
|
|
+ } else {
|
|
+ Cancel(NS_BINDING_ABORTED);
|
|
+ return NS_OK;
|
|
+ }
|
|
+ }
|
|
+ }
|
|
+
|
|
+ // Temp file is the final destination when download is intercepted. In that
|
|
+ // case we only need to create saver (and not create transfer later). Not creating
|
|
+ // mTransfer also cuts off all downloads handling logic in the js compoenents and
|
|
+ // browser UI.
|
|
+ if (isIntercepted)
|
|
+ rv = CreateSaverForTempFile();
|
|
+ else
|
|
+ rv = SetUpTempFile(aChannel);
|
|
if (NS_FAILED(rv)) {
|
|
nsresult transferError = rv;
|
|
|
|
@@ -1742,6 +1784,9 @@ NS_IMETHODIMP nsExternalAppHandler::OnStartRequest(nsIRequest* request) {
|
|
|
|
bool alwaysAsk = true;
|
|
mMimeInfo->GetAlwaysAskBeforeHandling(&alwaysAsk);
|
|
+ if (isIntercepted) {
|
|
+ return NS_OK;
|
|
+ }
|
|
if (alwaysAsk) {
|
|
// But we *don't* ask if this mimeInfo didn't come from
|
|
// our user configuration datastore and the user has said
|
|
@@ -2258,6 +2303,16 @@ nsExternalAppHandler::OnSaveComplete(nsIBackgroundFileSaver* aSaver,
|
|
NotifyTransfer(aStatus);
|
|
}
|
|
|
|
+ if (!mCanceled) {
|
|
+ nsCOMPtr<nsIDownloadInterceptor> interceptor = mExtProtSvc->mInterceptor;
|
|
+ if (interceptor) {
|
|
+ nsCString noError;
|
|
+ nsresult rv = interceptor->OnDownloadComplete(this, noError);
|
|
+ MOZ_ASSERT(NS_SUCCEEDED(rv), "Failed to call nsIDowloadInterceptor.OnDownloadComplete");
|
|
+ (void)rv;
|
|
+ }
|
|
+ }
|
|
+
|
|
return NS_OK;
|
|
}
|
|
|
|
@@ -2741,6 +2796,15 @@ NS_IMETHODIMP nsExternalAppHandler::Cancel(nsresult aReason) {
|
|
}
|
|
}
|
|
|
|
+ nsCOMPtr<nsIDownloadInterceptor> interceptor = mExtProtSvc->mInterceptor;
|
|
+ if (interceptor) {
|
|
+ nsCString errorName;
|
|
+ GetErrorName(aReason, errorName);
|
|
+ nsresult rv = interceptor->OnDownloadComplete(this, errorName);
|
|
+ MOZ_ASSERT(NS_SUCCEEDED(rv), "Failed notify nsIDowloadInterceptor about cancel");
|
|
+ (void)rv;
|
|
+ }
|
|
+
|
|
// Break our reference cycle with the helper app dialog (set up in
|
|
// OnStartRequest)
|
|
mDialog = nullptr;
|
|
diff --git a/uriloader/exthandler/nsExternalHelperAppService.h b/uriloader/exthandler/nsExternalHelperAppService.h
|
|
index f2e7d379f3..a5932f2986 100644
|
|
--- a/uriloader/exthandler/nsExternalHelperAppService.h
|
|
+++ b/uriloader/exthandler/nsExternalHelperAppService.h
|
|
@@ -270,6 +270,8 @@ class nsExternalHelperAppService : public nsIExternalHelperAppService,
|
|
mozilla::dom::BrowsingContext* aContentContext, bool aForceSave,
|
|
nsIInterfaceRequestor* aWindowContext,
|
|
nsIStreamListener** aStreamListener);
|
|
+
|
|
+ nsCOMPtr<nsIDownloadInterceptor> mInterceptor;
|
|
};
|
|
|
|
/**
|
|
@@ -467,6 +469,9 @@ class nsExternalAppHandler final : public nsIStreamListener,
|
|
* Upon successful return, both mTempFile and mSaver will be valid.
|
|
*/
|
|
nsresult SetUpTempFile(nsIChannel* aChannel);
|
|
+
|
|
+ nsresult CreateSaverForTempFile();
|
|
+
|
|
/**
|
|
* When we download a helper app, we are going to retarget all load
|
|
* notifications into our own docloader and load group instead of
|
|
diff --git a/uriloader/exthandler/nsIExternalHelperAppService.idl b/uriloader/exthandler/nsIExternalHelperAppService.idl
|
|
index e6490ebb08..2792373dcb 100644
|
|
--- a/uriloader/exthandler/nsIExternalHelperAppService.idl
|
|
+++ b/uriloader/exthandler/nsIExternalHelperAppService.idl
|
|
@@ -6,8 +6,11 @@
|
|
|
|
#include "nsICancelable.idl"
|
|
|
|
+webidl BrowsingContext;
|
|
+interface nsIHelperAppLauncher;
|
|
interface nsIURI;
|
|
interface nsIChannel;
|
|
+interface nsIRequest;
|
|
interface nsIStreamListener;
|
|
interface nsIFile;
|
|
interface nsIMIMEInfo;
|
|
@@ -15,6 +18,17 @@ interface nsIWebProgressListener2;
|
|
interface nsIInterfaceRequestor;
|
|
webidl BrowsingContext;
|
|
|
|
+/**
|
|
+ * Interceptor interface used by Juggler.
|
|
+ */
|
|
+[scriptable, uuid(9a20e9b0-75d0-11ea-bc55-0242ac130003)]
|
|
+interface nsIDownloadInterceptor : nsISupports
|
|
+{
|
|
+ boolean interceptDownloadRequest(in nsIHelperAppLauncher aHandler, in nsIRequest aRequest, in BrowsingContext aBrowsingContext, out nsIFile file);
|
|
+
|
|
+ void onDownloadComplete(in nsIHelperAppLauncher aHandler, in ACString aErrorName);
|
|
+};
|
|
+
|
|
/**
|
|
* The external helper app service is used for finding and launching
|
|
* platform specific external applications for a given mime content type.
|
|
@@ -87,6 +101,8 @@ interface nsIExternalHelperAppService : nsISupports
|
|
* `DownloadIntegration.sys.mjs`, which is implemented on all platforms.
|
|
*/
|
|
nsIFile getPreferredDownloadsDirectory();
|
|
+
|
|
+ void setDownloadInterceptor(in nsIDownloadInterceptor interceptor);
|
|
};
|
|
|
|
/**
|
|
diff --git a/widget/InProcessCompositorWidget.cpp b/widget/InProcessCompositorWidget.cpp
|
|
index 777157e17e..50cf4bfffc 100644
|
|
--- a/widget/InProcessCompositorWidget.cpp
|
|
+++ b/widget/InProcessCompositorWidget.cpp
|
|
@@ -4,7 +4,10 @@
|
|
|
|
#include "InProcessCompositorWidget.h"
|
|
|
|
+#include "HeadlessCompositorWidget.h"
|
|
+#include "HeadlessWidget.h"
|
|
#include "mozilla/VsyncDispatcher.h"
|
|
+#include "mozilla/widget/PlatformWidgetTypes.h"
|
|
#include "mozilla/layers/NativeLayer.h"
|
|
#include "nsIWidget.h"
|
|
|
|
@@ -27,6 +30,12 @@ RefPtr<CompositorWidget> CompositorWidget::CreateLocal(
|
|
// do it after the static_cast.
|
|
nsIWidget* widget = static_cast<nsIWidget*>(aWidget);
|
|
MOZ_RELEASE_ASSERT(widget);
|
|
+ if (aInitData.type() ==
|
|
+ CompositorWidgetInitData::THeadlessCompositorWidgetInitData) {
|
|
+ return new HeadlessCompositorWidget(
|
|
+ aInitData.get_HeadlessCompositorWidgetInitData(), aOptions,
|
|
+ static_cast<HeadlessWidget*>(aWidget));
|
|
+ }
|
|
return new InProcessCompositorWidget(aOptions, widget);
|
|
}
|
|
#endif
|
|
diff --git a/widget/MouseEvents.h b/widget/MouseEvents.h
|
|
index 76fd0e0ff6..ee6cb6d354 100644
|
|
--- a/widget/MouseEvents.h
|
|
+++ b/widget/MouseEvents.h
|
|
@@ -386,6 +386,9 @@ class WidgetMouseEvent : public WidgetMouseEventBase,
|
|
// Otherwise, this must be 0.
|
|
uint32_t mClickCount = 0;
|
|
|
|
+ // Unique event ID
|
|
+ uint32_t mJugglerEventId = 0;
|
|
+
|
|
// Whether the event should ignore scroll frame bounds during dispatch.
|
|
bool mIgnoreRootScrollFrame = false;
|
|
|
|
@@ -425,6 +428,7 @@ class WidgetMouseEvent : public WidgetMouseEventBase,
|
|
mContextMenuTrigger = aEvent.mContextMenuTrigger;
|
|
mExitFrom = aEvent.mExitFrom;
|
|
mClickCount = aEvent.mClickCount;
|
|
+ mJugglerEventId = aEvent.mJugglerEventId;
|
|
mIgnoreRootScrollFrame = aEvent.mIgnoreRootScrollFrame;
|
|
mIgnoreCapturingContent = aEvent.mIgnoreCapturingContent;
|
|
mClickEventPrevented = aEvent.mClickEventPrevented;
|
|
diff --git a/widget/cocoa/NativeKeyBindings.mm b/widget/cocoa/NativeKeyBindings.mm
|
|
index 24b70173c2..75ac367a1c 100644
|
|
--- a/widget/cocoa/NativeKeyBindings.mm
|
|
+++ b/widget/cocoa/NativeKeyBindings.mm
|
|
@@ -549,6 +549,13 @@ void NativeKeyBindings::GetEditCommandsForTests(
|
|
break;
|
|
case KEY_NAME_INDEX_ArrowLeft:
|
|
if (aEvent.IsAlt()) {
|
|
+ if (aEvent.IsMeta() || aEvent.IsControl())
|
|
+ break;
|
|
+ instance->AppendEditCommandsForSelector(
|
|
+ !aEvent.IsShift()
|
|
+ ? ToObjcSelectorPtr(@selector(moveWordLeft:))
|
|
+ : ToObjcSelectorPtr(@selector(moveWordLeftAndModifySelection:)),
|
|
+ aCommands);
|
|
break;
|
|
}
|
|
if (aEvent.IsMeta() || (aEvent.IsControl() && aEvent.IsShift())) {
|
|
@@ -571,6 +578,13 @@ void NativeKeyBindings::GetEditCommandsForTests(
|
|
break;
|
|
case KEY_NAME_INDEX_ArrowRight:
|
|
if (aEvent.IsAlt()) {
|
|
+ if (aEvent.IsMeta() || aEvent.IsControl())
|
|
+ break;
|
|
+ instance->AppendEditCommandsForSelector(
|
|
+ !aEvent.IsShift()
|
|
+ ? ToObjcSelectorPtr(@selector(moveWordRight:))
|
|
+ : ToObjcSelectorPtr(@selector(moveWordRightAndModifySelection:)),
|
|
+ aCommands);
|
|
break;
|
|
}
|
|
if (aEvent.IsMeta() || (aEvent.IsControl() && aEvent.IsShift())) {
|
|
@@ -593,6 +607,10 @@ void NativeKeyBindings::GetEditCommandsForTests(
|
|
break;
|
|
case KEY_NAME_INDEX_ArrowUp:
|
|
if (aEvent.IsControl()) {
|
|
+ if (aEvent.IsMeta() || aEvent.IsAlt())
|
|
+ break;
|
|
+ instance->AppendEditCommandsForSelector(
|
|
+ ToObjcSelectorPtr(@selector(scrollPageUp:)), aCommands);
|
|
break;
|
|
}
|
|
if (aEvent.IsMeta()) {
|
|
@@ -603,7 +621,7 @@ void NativeKeyBindings::GetEditCommandsForTests(
|
|
!aEvent.IsShift()
|
|
? ToObjcSelectorPtr(@selector(moveToBeginningOfDocument:))
|
|
: ToObjcSelectorPtr(
|
|
- @selector(moveToBegginingOfDocumentAndModifySelection:)),
|
|
+ @selector(moveToBeginningOfDocumentAndModifySelection:)),
|
|
aCommands);
|
|
break;
|
|
}
|
|
@@ -630,6 +648,10 @@ void NativeKeyBindings::GetEditCommandsForTests(
|
|
break;
|
|
case KEY_NAME_INDEX_ArrowDown:
|
|
if (aEvent.IsControl()) {
|
|
+ if (aEvent.IsMeta() || aEvent.IsAlt())
|
|
+ break;
|
|
+ instance->AppendEditCommandsForSelector(
|
|
+ ToObjcSelectorPtr(@selector(scrollPageDown:)), aCommands);
|
|
break;
|
|
}
|
|
if (aEvent.IsMeta()) {
|
|
diff --git a/widget/gtk/nsFilePicker.cpp b/widget/gtk/nsFilePicker.cpp
|
|
index 20fac05df3..ff9f1c79e6 100644
|
|
--- a/widget/gtk/nsFilePicker.cpp
|
|
+++ b/widget/gtk/nsFilePicker.cpp
|
|
@@ -22,6 +22,7 @@
|
|
#include "mozilla/Preferences.h"
|
|
#include "mozilla/dom/Promise.h"
|
|
#include "mozilla/dom/Document.h"
|
|
+#include "gfxPlatform.h"
|
|
|
|
#include "nsArrayEnumerator.h"
|
|
#include "nsEnumeratorUtils.h"
|
|
diff --git a/widget/headless/HeadlessCompositorWidget.cpp b/widget/headless/HeadlessCompositorWidget.cpp
|
|
index bb4ee9175e..6814ae8503 100644
|
|
--- a/widget/headless/HeadlessCompositorWidget.cpp
|
|
+++ b/widget/headless/HeadlessCompositorWidget.cpp
|
|
@@ -3,6 +3,8 @@
|
|
* 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 "mozilla/gfx/2D.h"
|
|
+#include "mozilla/layers/CompositorThread.h"
|
|
#include "mozilla/widget/PlatformWidgetTypes.h"
|
|
#include "HeadlessCompositorWidget.h"
|
|
#include "VsyncDispatcher.h"
|
|
@@ -15,9 +17,30 @@ HeadlessCompositorWidget::HeadlessCompositorWidget(
|
|
const layers::CompositorOptions& aOptions, HeadlessWidget* aWindow)
|
|
: CompositorWidget(aOptions),
|
|
mWidget(aWindow),
|
|
+ mMon("snapshotListener"),
|
|
mClientSize(LayoutDeviceIntSize(aInitData.InitialClientSize()),
|
|
"HeadlessCompositorWidget::mClientSize") {}
|
|
|
|
+void HeadlessCompositorWidget::SetSnapshotListener(HeadlessWidget::SnapshotListener&& listener) {
|
|
+ MOZ_ASSERT(NS_IsMainThread());
|
|
+
|
|
+ ReentrantMonitorAutoEnter lock(mMon);
|
|
+ mSnapshotListener = std::move(listener);
|
|
+ layers::CompositorThread()->Dispatch(NewRunnableMethod(
|
|
+ "HeadlessCompositorWidget::PeriodicSnapshot", this,
|
|
+ &HeadlessCompositorWidget::PeriodicSnapshot
|
|
+ ));
|
|
+}
|
|
+
|
|
+already_AddRefed<gfx::DrawTarget> HeadlessCompositorWidget::StartRemoteDrawingInRegion(
|
|
+ const LayoutDeviceIntRegion& aInvalidRegion) {
|
|
+ if (!mDrawTarget)
|
|
+ return nullptr;
|
|
+
|
|
+ RefPtr<gfx::DrawTarget> result = mDrawTarget;
|
|
+ return result.forget();
|
|
+}
|
|
+
|
|
void HeadlessCompositorWidget::ObserveVsync(VsyncObserver* aObserver) {
|
|
if (RefPtr<CompositorVsyncDispatcher> cvd =
|
|
mWidget->GetCompositorVsyncDispatcher()) {
|
|
@@ -31,6 +54,59 @@ void HeadlessCompositorWidget::NotifyClientSizeChanged(
|
|
const LayoutDeviceIntSize& aClientSize) {
|
|
auto size = mClientSize.Lock();
|
|
*size = aClientSize;
|
|
+ layers::CompositorThread()->Dispatch(NewRunnableMethod<LayoutDeviceIntSize>(
|
|
+ "HeadlessCompositorWidget::UpdateDrawTarget", this,
|
|
+ &HeadlessCompositorWidget::UpdateDrawTarget,
|
|
+ aClientSize));
|
|
+}
|
|
+
|
|
+void HeadlessCompositorWidget::UpdateDrawTarget(const LayoutDeviceIntSize& aClientSize) {
|
|
+ MOZ_ASSERT(NS_IsInCompositorThread());
|
|
+ if (aClientSize.IsEmpty()) {
|
|
+ mDrawTarget = nullptr;
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ RefPtr<gfx::DrawTarget> old = std::move(mDrawTarget);
|
|
+ gfx::SurfaceFormat format = gfx::SurfaceFormat::B8G8R8A8;
|
|
+ gfx::IntSize size = aClientSize.ToUnknownSize();
|
|
+ mDrawTarget = mozilla::gfx::Factory::CreateDrawTarget(
|
|
+ mozilla::gfx::BackendType::SKIA, size, format);
|
|
+ if (old) {
|
|
+ RefPtr<gfx::SourceSurface> snapshot = old->Snapshot();
|
|
+ if (snapshot)
|
|
+ mDrawTarget->CopySurface(snapshot.get(), old->GetRect(), gfx::IntPoint(0, 0));
|
|
+ }
|
|
+}
|
|
+
|
|
+void HeadlessCompositorWidget::PeriodicSnapshot() {
|
|
+ ReentrantMonitorAutoEnter lock(mMon);
|
|
+ if (!mSnapshotListener)
|
|
+ return;
|
|
+
|
|
+ TakeSnapshot();
|
|
+ NS_DelayedDispatchToCurrentThread(NewRunnableMethod(
|
|
+ "HeadlessCompositorWidget::PeriodicSnapshot", this,
|
|
+ &HeadlessCompositorWidget::PeriodicSnapshot), 40);
|
|
+}
|
|
+
|
|
+void HeadlessCompositorWidget::TakeSnapshot() {
|
|
+ if (!mDrawTarget)
|
|
+ return;
|
|
+
|
|
+ RefPtr<gfx::SourceSurface> snapshot = mDrawTarget->Snapshot();
|
|
+ if (!snapshot) {
|
|
+ fprintf(stderr, "Failed to get snapshot of draw target\n");
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ RefPtr<gfx::DataSourceSurface> dataSurface = snapshot->GetDataSurface();
|
|
+ if (!dataSurface) {
|
|
+ fprintf(stderr, "Failed to get data surface from snapshot\n");
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ mSnapshotListener(std::move(dataSurface));
|
|
}
|
|
|
|
LayoutDeviceIntSize HeadlessCompositorWidget::GetClientSize() {
|
|
diff --git a/widget/headless/HeadlessCompositorWidget.h b/widget/headless/HeadlessCompositorWidget.h
|
|
index facd2bc65a..3c5751ad1b 100644
|
|
--- a/widget/headless/HeadlessCompositorWidget.h
|
|
+++ b/widget/headless/HeadlessCompositorWidget.h
|
|
@@ -6,6 +6,7 @@
|
|
#ifndef widget_headless_HeadlessCompositorWidget_h
|
|
#define widget_headless_HeadlessCompositorWidget_h
|
|
|
|
+#include "mozilla/ReentrantMonitor.h"
|
|
#include "mozilla/widget/CompositorWidget.h"
|
|
|
|
#include "HeadlessWidget.h"
|
|
@@ -23,8 +24,11 @@ class HeadlessCompositorWidget final : public CompositorWidget,
|
|
HeadlessWidget* aWindow);
|
|
|
|
void NotifyClientSizeChanged(const LayoutDeviceIntSize& aClientSize);
|
|
+ void SetSnapshotListener(HeadlessWidget::SnapshotListener&& listener);
|
|
|
|
// CompositorWidget Overrides
|
|
+ already_AddRefed<gfx::DrawTarget> StartRemoteDrawingInRegion(
|
|
+ const LayoutDeviceIntRegion& aInvalidRegion) override;
|
|
|
|
uintptr_t GetWidgetKey() override;
|
|
|
|
@@ -42,10 +46,18 @@ class HeadlessCompositorWidget final : public CompositorWidget,
|
|
}
|
|
|
|
private:
|
|
+ void UpdateDrawTarget(const LayoutDeviceIntSize& aClientSize);
|
|
+ void PeriodicSnapshot();
|
|
+ void TakeSnapshot();
|
|
+
|
|
HeadlessWidget* mWidget;
|
|
+ mozilla::ReentrantMonitor mMon;
|
|
|
|
// See GtkCompositorWidget for the justification for this mutex.
|
|
DataMutex<LayoutDeviceIntSize> mClientSize;
|
|
+
|
|
+ HeadlessWidget::SnapshotListener mSnapshotListener;
|
|
+ RefPtr<gfx::DrawTarget> mDrawTarget;
|
|
};
|
|
|
|
} // namespace widget
|
|
diff --git a/widget/headless/HeadlessWidget.cpp b/widget/headless/HeadlessWidget.cpp
|
|
index 9ca469064e..adf0f885f8 100644
|
|
--- a/widget/headless/HeadlessWidget.cpp
|
|
+++ b/widget/headless/HeadlessWidget.cpp
|
|
@@ -113,6 +113,8 @@ void HeadlessWidget::Destroy() {
|
|
}
|
|
}
|
|
|
|
+ SetSnapshotListener(nullptr);
|
|
+
|
|
nsIWidget::OnDestroy();
|
|
|
|
nsIWidget::Destroy();
|
|
@@ -590,5 +592,14 @@ nsresult HeadlessWidget::SynthesizeNativeTouchpadPan(
|
|
return NS_OK;
|
|
}
|
|
|
|
+void HeadlessWidget::SetSnapshotListener(SnapshotListener&& listener) {
|
|
+ if (!mCompositorWidget) {
|
|
+ if (listener)
|
|
+ fprintf(stderr, "Trying to set SnapshotListener without compositor widget\n");
|
|
+ return;
|
|
+ }
|
|
+ mCompositorWidget->SetSnapshotListener(std::move(listener));
|
|
+}
|
|
+
|
|
} // namespace widget
|
|
} // namespace mozilla
|
|
diff --git a/widget/headless/HeadlessWidget.h b/widget/headless/HeadlessWidget.h
|
|
index ba4da76d76..027c55167d 100644
|
|
--- a/widget/headless/HeadlessWidget.h
|
|
+++ b/widget/headless/HeadlessWidget.h
|
|
@@ -131,6 +131,9 @@ class HeadlessWidget final : public nsIWidget {
|
|
double aDeltaX, double aDeltaY, int32_t aModifierFlags,
|
|
nsISynthesizedEventCallback* aCallback) override;
|
|
|
|
+ using SnapshotListener = std::function<void(RefPtr<gfx::DataSourceSurface>&&)>;
|
|
+ void SetSnapshotListener(SnapshotListener&& listener);
|
|
+
|
|
private:
|
|
~HeadlessWidget();
|
|
bool mEnabled;
|
|
diff --git a/widget/nsGUIEventIPC.h b/widget/nsGUIEventIPC.h
|
|
index ef6b603bdb..6cc82fa4a6 100644
|
|
--- a/widget/nsGUIEventIPC.h
|
|
+++ b/widget/nsGUIEventIPC.h
|
|
@@ -250,6 +250,7 @@ struct ParamTraits<mozilla::WidgetMouseEvent> {
|
|
aParam.mExitFrom.value()));
|
|
}
|
|
WriteParam(aWriter, aParam.mClickCount);
|
|
+ WriteParam(aWriter, aParam.mJugglerEventId);
|
|
WriteParam(aWriter, aParam.mCallbackId);
|
|
|
|
// Mark the event as stopped to notify callback.
|
|
@@ -278,6 +279,7 @@ struct ParamTraits<mozilla::WidgetMouseEvent> {
|
|
aResult->mExitFrom = Some(static_cast<paramType::ExitFrom>(exitFrom));
|
|
}
|
|
rv = rv && ReadParam(aReader, &aResult->mClickCount) &&
|
|
+ ReadParam(aReader, &aResult->mJugglerEventId) &&
|
|
ReadParam(aReader, &aResult->mCallbackId);
|
|
return rv;
|
|
}
|
|
diff --git a/xpcom/reflect/xptinfo/xptinfo.h b/xpcom/reflect/xptinfo/xptinfo.h
|
|
index 1c0aff31b9..bbac5fa58a 100644
|
|
--- a/xpcom/reflect/xptinfo/xptinfo.h
|
|
+++ b/xpcom/reflect/xptinfo/xptinfo.h
|
|
@@ -505,7 +505,7 @@ static_assert(sizeof(nsXPTMethodInfo) == 8, "wrong size");
|
|
#if defined(MOZ_THUNDERBIRD) || defined(MOZ_SUITE)
|
|
# define PARAM_BUFFER_COUNT 18
|
|
#else
|
|
-# define PARAM_BUFFER_COUNT 14
|
|
+# define PARAM_BUFFER_COUNT 15
|
|
#endif
|
|
|
|
/**
|