<button onclick='historial()'>HISTORIAL</button>// en el...
<button onclick='borrarHistorial()'>BORRAR HISTORIAL</button>//...html
function historial() {//abre el historial
ohistorial = window.open('historial.html', 'historial', 'width=' + anchura + ',height=' + (altura*2) + ',left=' + anchura + ',top=' + 0);
}
function borrarHistorial() { //borra el historial
localStorage.setItem('historial', "")
ohistorial.close()//lo cierra
historial()// y lo vuelve a abrir
}