Duplicate Tab copying sessionStorage in Chrome
google-chrome, sessionstorage, tabs
Solution
In Chrome, Yes. And you've hit on an important distinction. The contents of `sessionStorage` is "copied" not "shared". Any changes made to `sessionStorage` after the tab is duplicated are not reflected in the other tab's `sessionStorage`.
Problem
When a tab is duplicated in Chrome, is `sessionStorage` also duplicated? I noticed that in IE it is not.