From 2a55ae4b8504c9d0863ac38435bd4f246aa23711 Mon Sep 17 00:00:00 2001 From: Michaela Laurencin <35157522+mlaurencin@users.noreply.github.com> Date: Wed, 31 Mar 2021 13:57:39 -0700 Subject: [PATCH] docs: add frameName note for window.open (#28435) --- docs/api/window-open.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/api/window-open.md b/docs/api/window-open.md index 2d523a91f0d1..d2c447de57c9 100644 --- a/docs/api/window-open.md +++ b/docs/api/window-open.md @@ -65,6 +65,7 @@ window.open('https://github.com', '_blank', 'top=500,left=200,frame=false,nodeIn * Non-standard features (that are not handled by Chromium or Electron) given in `features` will be passed to any registered `webContents`'s `did-create-window` event handler in the `additionalFeatures` argument. +* `frameName` follows the specification of `windowName` located in the [native documentation](https://developer.mozilla.org/en-US/docs/Web/API/Window/open#parameters). To customize or cancel the creation of the window, you can optionally set an override handler with `webContents.setWindowOpenHandler()` from the main