diff options
author | webbeef <me@webbeef.org> | 2025-04-15 10:12:48 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-15 17:12:48 +0000 |
commit | 98884a508186a5a0fe5e3a214e59e2cadaa65736 (patch) | |
tree | 20a6815045109311b56614b2ab308ec452e720d9 /components/script/lib.rs | |
parent | 32d59cfff42b7e2f2a1c39699cacfb6efa10fdd9 (diff) | |
download | servo-98884a508186a5a0fe5e3a214e59e2cadaa65736.tar.gz servo-98884a508186a5a0fe5e3a214e59e2cadaa65736.zip |
Switch to data_url::mime for document content type (#36522)
The data_url Mime parser has a more conformant behavior in most cases,
including dealing with charsets.
Testing: wpt expectations with new passes are updated.
Signed-off-by: webbeef <me@webbeef.org>
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 7a866f1c7b2..06fad98cb6d 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -48,6 +48,7 @@ pub mod layout_dom; #[allow(unsafe_code)] pub(crate) mod messaging; mod microtask; +pub(crate) mod mime; mod navigation; mod network_listener; mod realms; |