Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions browsers/live-view.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ The live view URL can be embedded in an iframe to integrate the browser view int
<iframe src={browser.browser_live_view_url}></iframe>
```

<Tip>
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.
</Tip>

## 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`.
Expand Down
2 changes: 1 addition & 1 deletion changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
</Update>
Expand Down