diff options
author | Vincent Ricard <magic@magicninja.org> | 2020-11-26 21:02:16 +0100 |
---|---|---|
committer | Vincent Ricard <magic@magicninja.org> | 2021-03-08 21:24:08 +0100 |
commit | 3b3824078dbd54b957b875a27ec416f2121e7e88 (patch) | |
tree | 0fa4f3fa8f01014e4215db9900d56fecc410c3a5 /components/net/lib.rs | |
parent | d14628d2ea37262be772aa6ad838b8505d2384b4 (diff) | |
download | servo-3b3824078dbd54b957b875a27ec416f2121e7e88.tar.gz servo-3b3824078dbd54b957b875a27ec416f2121e7e88.zip |
Fix some 'nosniff' tests
Diffstat (limited to 'components/net/lib.rs')
-rw-r--r-- | components/net/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/net/lib.rs b/components/net/lib.rs index b73965f03d5..1c9c987a691 100644 --- a/components/net/lib.rs +++ b/components/net/lib.rs @@ -33,9 +33,11 @@ pub mod resource_thread; mod storage_thread; pub mod subresource_integrity; mod websocket_loader; + /// An implementation of the [Fetch specification](https://fetch.spec.whatwg.org/) pub mod fetch { pub mod cors_cache; + pub mod headers; pub mod methods; } |