Dom.storage.enabled: Difference between revisions

From MozillaZine Knowledge Base
Jump to navigationJump to search
No edit summary
 
 
Line 23: Line 23:
==External links==
==External links==
* [http://www.whatwg.org/specs/web-apps/current-work/#scs-client-side Web Applications 1.0 - SCS - Client-side session and persistent storage]
* [http://www.whatwg.org/specs/web-apps/current-work/#scs-client-side Web Applications 1.0 - SCS - Client-side session and persistent storage]
* https://developer.mozilla.org/en/dom/storage


[[Category:Preferences]]
[[Category:Preferences]]
[[Category:Security and privacy-related preferences]]
[[Category:Security and privacy-related preferences]]

Latest revision as of 15:13, 7 July 2010

Background

The Web Applications 1.0 specification defines a mechanism allowing web pages to store information with a web browser (similar to cookies) called “client-side session and persistent storage.” Although use of session storage is subject to a user’s cookie preferences, this preference allows it to be disabled entirely.

Possible values and their effects

True

Enable client-side session and persistent storage for web pages (Default)

False

Disable SCS entirely

First checked in

2006-08-18 by Neil Deakin

Has an effect in

  • Mozilla Firefox (nightly builds after 2006-08-18; 2.0)
  • SeaMonkey (nightly builds after 2006-08-18)

Related bugs

External links