私の要件は、親ウィンドウを閉じると、子ウィンドウも閉じる必要があるということです。しかし、問題は、親ウィンドウを更新してもウィンドウが閉じてしまうことです。そのリフレッシュでウィンドウを閉じたくありません。私のコードは
function closeEditorWarning(){
for (var i=0;i<childWindow.length;i++) {
if (childWindow[i] && !childWindow[i].closed) childWindow[i].close();
}
self.close();
}
window.onbeforeunload = closeEditorWarning;