sciter-sdk icon indicating copy to clipboard operation
sciter-sdk copied to clipboard

Editing input value in document fragment crash the app

Open ClassicOldSong opened this issue 1 year ago • 0 comments

Consider this code example:

const fragment = document.createDocumentFragment()
const input = document.createElement('input')
fragment.appendChild(input)
input.value = 'some text'

It will crash the whole app instantly.

ClassicOldSong avatar Aug 11 '22 00:08 ClassicOldSong