aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/xmlhttprequest.rs
Commit message (Expand)AuthorAgeFilesLines
* Replaced DOMString constructor by conversion functions.Alan Jeffrey2015-11-121-3/+3
* Auto merge of #8428 - Ms2ger:conversions, r=Manishearthbors-servo2015-11-131-22/+22
|\
| * Use the conversion traits from js.Ms2ger2015-11-121-22/+22
* | Auto merge of #7844 - Wafflespeanut:requests, r=jdmbors-servo2015-11-121-1/+1
|\ \ | |/ |/|
| * Implement cancellation listener for cancelling network requestsRavi Shankar2015-11-121-1/+1
* | Execute XHR timeout callbacks directly. (Fixes #8468.)benshu2015-11-111-31/+6
* | XHR timeouts use same abstraction as scripts timers. (fixes #3396)benshu2015-11-111-29/+41
|/
* Implement the overrideMimeType method for XMLHttpRequestJitendra Jain2015-11-051-0/+21
* Make DOMString a newtype around String, rather than a typedef.Ms2ger2015-11-041-10/+12
* Use DOMString::new() somewhat consistently.Ms2ger2015-11-041-1/+1
* Get rid of a bunch of explicit derefsDavid Zbarsky2015-11-031-13/+10
* merge from masterrohan.prinja2015-11-031-5/+4
|\
| * Removed JS::root Fixes #8251nxnfufunezn2015-10-311-1/+1
| * Initialize dom struct fields in declaration orderMichael Wu2015-10-301-2/+1
| * Infer types when appropriateMichael Wu2015-10-301-1/+1
| * Avoid a Vec copy in SendParam::extract.Ms2ger2015-10-301-1/+1
* | rearrange imports to be in alphabetical orderrohan.prinja2015-10-301-2/+1
* | more refactoringrohan.prinja2015-10-301-1/+2
* | move Castable into dom::bindings::inheritancerohan.prinja2015-10-301-1/+2
|/
* remove get_rooted() and replace all references to it with references to get()rohan.prinja2015-10-291-1/+1
* Clean up the cast callsAnthony Ramine2015-10-211-6/+4
* Introduce trait CastableAnthony Ramine2015-10-211-7/+7
* Do not root XMLHttpRequest::uploadAnthony Ramine2015-10-191-4/+2
* Make AsyncResponseListener methods take `&mut self`.Eli Friedman2015-10-151-3/+3
* Auto merge of #8020 - nox:codegen-derived, r=Ms2gerbors-servo2015-10-151-13/+1
|\
| * Generate all Derived implementations in codegenAnthony Ramine2015-10-141-13/+1
* | Support the updated spidermonkey bindingsMichael Wu2015-10-141-4/+4
|/
* Generate the TypeId enums in codegenAnthony Ramine2015-10-141-3/+3
* Refactor away duplication of get_rooted functionalityPierre Chevalier2015-10-081-1/+1
* Refactor Error enum usage to consistently be qualifiedAnthony Urena2015-10-061-32/+30
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-11/+11
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-18/+12
* Move EventTargetTypeId/NodeTypeId to DOMClassMichael Wu2015-09-121-1/+1
* Fix reported test-tidy errorsBrandon Fairchild2015-09-011-1/+1
* Enforce linking to spec for method implementations via macrosCorey Farwell2015-08-311-0/+1
* Make test-tidy check that braces have spaces before or after themwilmoz2015-08-311-1/+1
* Time distribution across script event categories.benshu2015-08-281-1/+2
* Make the traits for the IDL interfaces take &selfAnthony Ramine2015-08-271-22/+22
* Remove helper traitsAnthony Ramine2015-08-271-40/+19
* make dom_struct derive HeapSizeOf,João Oliveira2015-08-271-1/+0
* sort all usesJohann Tuffe2015-08-201-11/+11
* Cleanup Window, XHRManish Goregaokar2015-08-181-11/+9
* Fix existing syntactics nits.Josh Matthews2015-08-161-5/+5
* Auto merge of #7006 - Wafflespeanut:script_cleanup, r=jdmbors-servo2015-08-151-2/+2
|\
| * Splitting ScriptMsg into various enums; r=jdmRavi Shankar2015-08-151-2/+2
* | Replace uses of `for foo in bar.iter()` and `for foo in bar.iter_mut()`João Oliveira2015-08-151-1/+1
* | replace .len() == 0 with is_empty()João Oliveira2015-08-141-1/+1
|/
* Measure heap memory usage for more types. Fixes #6951Bogdan Cuza2015-08-131-3/+9
* script: Make the resource task communication use IPC channels.Patrick Walton2015-07-311-17/+17
* net: Use a thread for each `AsyncResponseTarget` to avoid having to sendPatrick Walton2015-07-311-4/+10