下のソースに書いた通りなんだけど、 input 要素とかで insert モードになって、 insert モードから抜ける前にその input 要素が消えるとエラーになる。
<!DOCTYPE html> <html> <head> <title></title> </head> <body> <p>insert モードの対象となっていた要素が消えると、normal モードに戻るときにエラー</p> <pre><input type="text" onfocus="this.parentNode.removeChild(this)" /></pre> <input type="text" onfocus="this.parentNode.removeChild(this)" /> </body> </html>