aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/storage.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* Uniformise root() methodsAnthony Ramine2015-04-281-1/+1
| | | | | They now live in traits Rootable, OptionalOptionalRootable, OptionalRootable and ResultRootable.
* Don't link to specific WHATWG multipage pageCorey Farwell2015-04-161-1/+1
| | | | | | | | | | | | | | "Links to the multipage version of the specification are unfortunately likely to break over time." -- https://html.spec.whatwg.org/multipage/asefij.html This commit removes all references to the specific pages when viewing WHATWG using multipage mode. I went through all these links and they redirect fine. Regex used to generate this commit: `s_whatwg.org/multipage/.*#_whatwg.org/multipage/#_g`
* Remove int_uint from net.Josh Matthews2015-04-071-1/+1
|
* Split out shared networking code into net_traits crateGilles Leblanc2015-04-031-3/+1
| | | | Fixes #4476
* broadcasting storage changes eventssnf2015-03-311-8/+90
|
* localStorage shim, fixes #5195Zack Slayton2015-03-161-15/+12
|
* Import net as net rather than servo_net.Ms2ger2015-02-101-2/+2
|
* add `unwrap` to `send/recv` callsAlexandru Cojocaru2015-02-031-6/+6
|
* Import the util crate as util rather than servo_util.Ms2ger2015-01-291-1/+1
| | | | | | | | This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there.
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-7/+7
|
* Rename GlobalRoot::root_ref() to GlobalRoot::r() for consistency.Ms2ger2015-01-011-2/+2
|
* Remove manual impls of Reflectors (autogen)Manish Goregaokar2014-12-271-6/+1
| | | | | | | | | Obtained via: `find . -maxdepth 1 -type f -print0 | xargs -0 sed -z -i "s/\\nimpl Reflectable for[^{]*{[^}]*}[^}]*}\\n//"` `find . -maxdepth 1 -type f -print0 |xargs -0 grep -lZ dom_struct | xargs -0 grep -LZ "reflector()\\|Reflector::new" |xargs -0 sed -z -i "s/use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object};/use dom::bindings::utils::reflect_dom_object;/"` followed by semi-automated removal of leftover imports
* Implement Window.sessionStorage: Storage Task, Storage Methods (excluding ↵nkdalmia2014-12-031-18/+77
| | | | Storage event, QuotaExceededError)
* Updated reflect_dom_object to be passed by valueMichael Booth2014-11-301-1/+1
|
* Intial Commit for Storage.webidl, along with impl stubnkdalmia2014-11-061-0/+66