Hi,

I would like to know, is there a way to set Unlimited Capacity to History BackForwardList. The current WebKit Code contains 100 as the default capacity as shown below

static const unsigned DefaultCapacity = 100;
BackForwardList::BackForwardList(Page* page)
  : m_page(page)
  , m_current(NoCurrentItemIndex)
  , m_capacity(DefaultCapacity)
  , m_closed(true)
  , m_enabled(true)
{
}

Any Ideas would be much appreciated!

Thanks

mwas