Currently the only browser I know of that allows the user to set the size of local storage is safari .
But in general I do not recommend using local storage for data heavy storing. Think of it rather as advanced cookies. The best use case is if you want to serialize the state of your views to json ,so that you can quickly recover it when the user revisits your app. Local storage is absolutely NOT recommended for storing sensitive data, it is unsafe. If you need to persist a lot of data on a fat client I suggest taking a look the HTML file api. It gives you a sandboxed space on the clients machine with unlimited storage. The downside is, that it is a HTML 5 feature, so no older browser. Good luck, Oliver -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.