We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0182a74 commit b381f41Copy full SHA for b381f41
packages/react-dom/src/client/ReactDOMFiberComponent.js
@@ -80,6 +80,12 @@ if (__DEV__) {
80
time: true,
81
// There are working polyfills for <dialog>. Let people use it.
82
dialog: true,
83
+ // Electron ships a custom <webview> tag to display external web content in
84
+ // an isolated frame and process.
85
+ // This tag is not present in non Electron environments such as JSDom which
86
+ // is often used for testing purposes.
87
+ // @see https://electronjs.org/docs/api/webview-tag
88
+ webview: true,
89
};
90
91
validatePropertiesInDevelopment = function(type, props) {
0 commit comments