Instead of accepting alert. You can do this as a hack.Which will remove the alert from appearing
WebDriver driver = new ChromeDriver();
driver.get("http://bubble-export.com/lpg2/");
JavascriptExecutor js = (JavascriptExecutor) driver;
js.executeScript("window.onbeforeunload = function() {};");
driver.get("http://google.com");