diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:33 +0000 |
commit | 086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch) | |
tree | a4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /remote/marionette/reftest-content.js | |
parent | Adding debian version 124.0.1-1. (diff) | |
download | firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip |
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'remote/marionette/reftest-content.js')
-rw-r--r-- | remote/marionette/reftest-content.js | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/remote/marionette/reftest-content.js b/remote/marionette/reftest-content.js index 3c0712f232..00be2a73f0 100644 --- a/remote/marionette/reftest-content.js +++ b/remote/marionette/reftest-content.js @@ -30,26 +30,19 @@ BrowserDOMWindow.prototype = { return null; }, - createContentWindow( - aURI, - aOpenWindowInfo, - aWhere, - aFlags, - aTriggeringPrincipal, - aCsp - ) { + createContentWindow(aURI, aOpenWindowInfo, aWhere) { return this._maybeOpen(aOpenWindowInfo, aWhere)?.browsingContext; }, - openURI(aURI, aOpenWindowInfo, aWhere, aFlags, aTriggeringPrincipal, aCsp) { + openURI(aURI, aOpenWindowInfo, aWhere) { return this._maybeOpen(aOpenWindowInfo, aWhere)?.browsingContext; }, - createContentWindowInFrame(aURI, aParams, aWhere, aFlags, aName) { + createContentWindowInFrame(aURI, aParams, aWhere) { return this._maybeOpen(aParams.openWindowInfo, aWhere); }, - openURIInFrame(aURI, aParams, aWhere, aFlags, aName) { + openURIInFrame(aURI, aParams, aWhere) { return this._maybeOpen(aParams.openWindowInfo, aWhere); }, |