diff --git a/browsers/live-view.mdx b/browsers/live-view.mdx index 22e0cf0..d44c24d 100644 --- a/browsers/live-view.mdx +++ b/browsers/live-view.mdx @@ -45,6 +45,12 @@ The live view URL can be embedded in an iframe to integrate the browser view int ``` + + Embedded third-party iframes like live view must have focus to receive keyboard events. On Safari, focus requires a user-initiated event — calling `.focus()` on the iframe element within a user-initiated event handler is recommended. + + To enable clipboard sharing, add `allow="autoplay; clipboard-read; clipboard-write"` to the iframe element. + + ## Kiosk mode Kiosk mode provides a fullscreen live view experience without browser UI elements like the address bar and tabs. You can enable kiosk mode when creating a browser by setting the `kiosk_mode` parameter to `true`. diff --git a/changelog.mdx b/changelog.mdx index 3d76d4a..e79678c 100644 --- a/changelog.mdx +++ b/changelog.mdx @@ -45,7 +45,7 @@ For API library updates, see the [Node SDK](https://github.com/onkernel/kernel-n - Renamed "Scaling in Production" to [Reserved Browsers](/browsers/scaling/overview) and added a new [On-Demand Browsers](/browsers/scaling/on-demand) section for clearer guidance on browser provisioning strategies. - Added [mobile and tablet viewport configurations](/browsers/viewport) with supported screen sizes and usage guidance. -- Added [proxy-bypass-hosts](/browsers/bot-detection/stealth) documentation for configuring proxy bypass lists on browser pools. +- Added [proxy-bypass-hosts](https://www.kernel.sh/docs/proxies/overview#4-bypass-hosts) documentation for configuring proxy bypass lists on browser pools. - Documented the `--force` flag for [viewport resizing](/browsers/viewport) during active recordings. - Added viewport configuration examples to [browser pool](/browsers/pools) documentation.