public void testInlineEditPreservesParent()
{
getUtil().gotoPage("EditInlineTest", "testInlineEditPreservesParent", "save", "parent=Blog.WebHome");
ViewPage vp = new ViewPage();
Assert.assertTrue(vp.hasBreadcrumbContent("The Wiki Blog", false));
InlinePage ip = vp.editInline();
ViewPage vp2 = ip.clickSaveAndView();
Assert.assertTrue(vp2.hasBreadcrumbContent("The Wiki Blog", false));
}