public void navigateBackWithNoHistory() throws Exception {
// Fresh Driver (every test gets one)
WebDriver d = getDriver();
// Navigate back and forward: should be a no-op, given we haven't loaded anything yet
d.navigate().back();
d.navigate().forward();
// Make sure explicit navigation still works.
d.get("http://google.com");
}