summaryrefslogtreecommitdiffstats
path: root/remote/marionette/reftest-content.js
diff options
context:
space:
mode:
Diffstat (limited to 'remote/marionette/reftest-content.js')
-rw-r--r--remote/marionette/reftest-content.js15
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);
},