diff --git a/docs/api/browser-window.md b/docs/api/browser-window.md index 38d7af939d73..821c0ee2f883 100644 --- a/docs/api/browser-window.md +++ b/docs/api/browser-window.md @@ -311,12 +311,12 @@ It creates a new `BrowserWindow` with native properties as set by the `options`. macOS. Default is `false`. * `blinkFeatures` String (optional) - A list of feature strings separated by `,`, like `CSSVariables,KeyboardEventKey` to enable. The full list of supported feature - strings can be found in the [RuntimeEnabledFeatures.json5][blink-feature-string] + strings can be found in the [RuntimeEnabledFeatures.json5][runtime-enabled-features] file. * `disableBlinkFeatures` String (optional) - A list of feature strings separated by `,`, like `CSSVariables,KeyboardEventKey` to disable. The full list of supported feature strings can be found in the - [RuntimeEnabledFeatures.json5][blink-feature-string] file. + [RuntimeEnabledFeatures.json5][runtime-enabled-features] file. * `defaultFontFamily` Object (optional) - Sets the default font for the font-family. * `standard` String (optional) - Defaults to `Times New Roman`. * `serif` String (optional) - Defaults to `Times New Roman`. @@ -1491,7 +1491,7 @@ Returns `BrowserView | null` - an attached BrowserView. Returns `null` if none i **Note:** The BrowserView API is currently experimental and may change or be removed in future Electron releases. -[blink-feature-string]: https://cs.chromium.org/chromium/src/third_party/WebKit/Source/platform/runtime_enabled_features.json5?l=70 +[runtime-enabled-features]: https://cs.chromium.org/chromium/src/third_party/blink/renderer/platform/runtime_enabled_features.json5?l=70 [page-visibility-api]: https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API [quick-look]: https://en.wikipedia.org/wiki/Quick_Look [vibrancy-docs]: https://developer.apple.com/documentation/appkit/nsvisualeffectview?preferredLanguage=objc diff --git a/docs/api/webview-tag.md b/docs/api/webview-tag.md index dbf97b573e1c..381205068dd5 100644 --- a/docs/api/webview-tag.md +++ b/docs/api/webview-tag.md @@ -222,7 +222,7 @@ Special values `yes` and `1` are interpreted as `true`, while `no` and `0` are i A list of strings which specifies the blink features to be enabled separated by `,`. The full list of supported feature strings can be found in the -[RuntimeEnabledFeatures.json5][blink-feature-string] file. +[RuntimeEnabledFeatures.json5][runtime-enabled-features] file. ### `disableblinkfeatures` @@ -232,7 +232,7 @@ The full list of supported feature strings can be found in the A list of strings which specifies the blink features to be disabled separated by `,`. The full list of supported feature strings can be found in the -[RuntimeEnabledFeatures.json5][blink-feature-string] file. +[RuntimeEnabledFeatures.json5][runtime-enabled-features] file. ### `guestinstance` @@ -939,4 +939,4 @@ Emitted when DevTools is closed. Emitted when DevTools is focused / opened. -[blink-feature-string]: https://cs.chromium.org/chromium/src/third_party/WebKit/Source/platform/RuntimeEnabledFeatures.json5?l=62 +[runtime-enabled-features]: https://cs.chromium.org/chromium/src/third_party/blink/renderer/platform/runtime_enabled_features.json5?l=70