c-smile / sciter-sdk

Sciter is an embeddable HTML/CSS/scripting engine
http://sciter.com
Other
2.11k stars 224 forks source link

Editing input value in document fragment crash the app #224

Open ClassicOldSong opened 2 years ago

ClassicOldSong commented 2 years ago

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.