The pushState method accepts a state object. Firefox documents say the maximum size of this object is 640kb. Is it defined in the specs what the smallest maximum size a browser can implement is? Can I reasonably expect major browsers to provide me with at least 100kb?

EDIT: I tested it out with Chrome, and it was still working for state objects over 1MB.

link|improve this question

80% accept rate
feedback

2 Answers

No. The normative document here is http://www.whatwg.org/specs/web-apps/current-work/multipage/history.html#dom-history-pushstate and it doesn't even mention a limit for the data size. A different limit is suggested however:

User agents may limit the number of state objects added to the session history per page.

As you can see on this example the specification generally avoids mentioning any hard limits and leaves them at the discretion of browser makers. So even if the spec is revised at some point in future to consider the possibility of data size limits, it is unlikely to give you a real number. Instead it will be "big enough for common use cases".

link|improve this answer
feedback

Interesting reading from YUI: http://developer.yahoo.com/yui/storage/#limitations

HTML 5 Storage Engine Only the most recent versions of browsers support HTML 5 storage: FireFox 3, Safari 4, and IE 8; IE 8 allows 10 MB of storage, but other browsers only allow 5 MB;

Their storage module provides some info you might be after, they have a lite version in YUI3, the module uses several fallback methods.

link|improve this answer
Argh, sorry, I mis-read your post I think - you're clearly referring to pushState limitations. – Danjah Jun 23 '11 at 22:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.