Limitations
- WebKit version is
615.1.18.100.1. - Supports ES2022 and below JavaScript features.
Videois not supported. UseGIFimages instead.Audiois not supported. Play sounds from SKSE.WebGLis not supported.- UI refresh rate has 60 FPS cap for now.
- CPU rendering is only available for now.
- JS event
contextmenudoesn’t work. Use this implementation instead:window.addEventListener('mousedown', function (event) {if (event.button === 2) {// right-clickconst contextMenuEvent = new MouseEvent('contextmenu', {...event,view: window,bubbles: true,cancelable: true,screenX: event.pageX,screenY: event.pageY,clientX: event.pageX,clientY: event.pageY,});event.target?.dispatchEvent(contextMenuEvent);}});