Auto merge of #10189 - KiChjang:cors-preflight-fetch, r=jdm

Implement CORS preflight fetch

Fixes #10145.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10189)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-04-13 21:28:25 +05:30
commit d21ff2fa13
8 changed files with 237 additions and 47 deletions

View file

@ -29,6 +29,7 @@ extern crate openssl;
extern crate rustc_serialize;
extern crate threadpool;
extern crate time;
extern crate unicase;
extern crate url;
extern crate util;
extern crate uuid;
@ -49,7 +50,7 @@ pub mod resource_thread;
pub mod storage_thread;
pub mod websocket_loader;
/// An implementation of the [Fetch spec](https://fetch.spec.whatwg.org/)
/// An implementation of the [Fetch specification](https://fetch.spec.whatwg.org/)
pub mod fetch {
pub mod cors_cache;
pub mod methods;