aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/cors.rs
Commit message (Collapse)AuthorAgeFilesLines
* Review fixesManish Goregaokar2016-06-111-490/+0
|
* Remove empty lines following braces.Josh Matthews2016-05-271-2/+0
|
* Upgrade to rust-url 1.0 and hyper 0.9Simon Sapin2016-04-231-15/+16
|
* Propagating the load errors from network loaderRavi Shankar2016-04-201-3/+5
|
* refactors entities from script_thread into script_runtimeRahul Sharma2016-04-061-1/+1
|
* Replace tab with spaces.Eitan Mosenkis2016-04-011-1/+1
|
* Fix compile errors.Eitan Mosenkis2016-04-011-1/+1
|
* Restrict about to about:blank and data to GETEitan Mosenkis2016-04-011-5/+4
|
* Replace tabs with spaces.Eitan Mosenkis2016-04-011-2/+2
|
* Allow XHR to fetch about: and data: URLs.Eitan Mosenkis2016-04-011-3/+10
| | | | | This was intended to fix #8015 but the tests are all still failing as of this commit.
* change changes effecting verbosityfaineance2016-03-271-4/+2
|
* use self.0 instead of destructing single item tuple structsfaineance2016-03-271-4/+3
|
* Update to Rust 2016-03-05Anthony Ramine2016-03-061-1/+1
|
* CORS Preflight Logic FixBen2016-02-161-1/+1
| | | | | | Fix check to set flag if any header is a simple header. Fix failing tests to allow merge in advance of @nikkibee's changes as per @jdm's direction via IRC
* Say farewell to in-tree HeapSizeOfAnthony Ramine2016-02-041-1/+1
|
* task -> threadrohan.prinja2016-01-101-3/+3
|
* Fix a bunch of clippy lintsJohannes Linke2016-01-021-16/+12
|
* Fix a logical operator to match the specJinwoo Ahn2015-12-181-1/+1
|
* preflight_fetch steps comments out of date with spec #8941jinwoo.ahn2015-12-171-11/+12
| | | | Fixed the comments according to the spec.
* Rustfmt some of script.Ms2ger2015-11-181-58/+83
|
* Simplify AsyncResponseListener implementations.Eli Friedman2015-10-151-5/+4
|
* Make AsyncResponseListener methods take `&mut self`.Eli Friedman2015-10-151-3/+3
|
* sorted the extern crate, mod & use declarationsRavi Shankar2015-09-241-8/+7
|
* Fix reported test-tidy errors for unmerged import blocksBrandon Fairchild2015-09-191-12/+9
| | | | This merges import blocks that were reported by tidy as unmerged.
* sort all usesJohann Tuffe2015-08-201-5/+5
|
* Fix existing syntactics nits.Josh Matthews2015-08-161-4/+4
|
* Replace uses of `for foo in bar.iter()` and `for foo in bar.iter_mut()`João Oliveira2015-08-151-1/+1
| | | | closes #7197
* replace .len() == 0 with is_empty()João Oliveira2015-08-141-1/+1
| | | | closes #7198
* Measure heap memory usage for more types. Fixes #6951Bogdan Cuza2015-08-131-2/+4
|
* script: Make the resource task communication use IPC channels.Patrick Walton2015-07-311-10/+2
|
* net: Use a thread for each `AsyncResponseTarget` to avoid having to sendPatrick Walton2015-07-311-1/+7
| | | | trait objects across process boundaries.
* net: Make most of the resource task messages serializable.Patrick Walton2015-07-311-1/+3
|
* Upgrade to rustc 1.3.0-dev (fddfd089b 2015-07-10)Simon Sapin2015-07-151-5/+1
|
* Reduce max line length from 150 to 120 charactersCorey Farwell2015-05-241-6/+19
| | | | Part of https://github.com/servo/servo/issues/6041
* Upgrade to Hyper 0.4.0Simon Sapin2015-05-121-2/+3
|
* Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8.Simon Sapin2015-05-051-4/+5
|
* Remove some as_slice calls.Ms2ger2015-04-241-3/+3
|
* Create easy common interface for off-thread network listeners, and remove ↵Josh Matthews2015-04-161-6/+45
| | | | the CORS-specific reimplementation of async networking.
* Make async XMLHttpRequest requests use async network events.Josh Matthews2015-04-161-1/+21
|
* Update WHATWG links to use HTTPSCorey Farwell2015-04-131-9/+9
| | | | | | | | | | | | | | Extracted this out of #5649 This commit was created with the following commands: ``` find . -iname "*.webidl" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ``` ``` find . -iname "*.rs" -type f -print0 | xargs -0 sed -i '' 's/http:\(.*\)whatwg.org/https:\1whatwg.org/g' ```
* Remove some unnecessary uses of `as_slice`Corey Farwell2015-03-291-3/+3
| | | | | | | | | | | For the majority of these cases, `as_slice` can be removed due to `Deref`. In particular, `Deref` for: * `String` -> `str` * `Atom` -> `str` The latter of those two requires, a bump of the locked `string-cache` library
* Remove AccessControl header implementations in favor of hyper’s (fixes #5090)dhneio2015-02-271-148/+4
|
* Upgrade to rustc ba2f13ef0 2015-02-04Simon Sapin2015-02-111-22/+22
|
* self importManish Goregaokar2015-01-281-1/+1
|
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-15/+15
|
* Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19.Ms2ger2015-01-081-1/+1
|
* Qualify hyper enums.Ms2ger2015-01-041-8/+8
|
* Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d.Ms2ger2014-12-171-18/+18
|
* Fix spelling mistakes in comments.Joseph Crail2014-12-111-1/+1
|
* convert script crate to use hyperSean McArthur2014-12-041-99/+222
|