mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
This moves mangement of web fonts to the per-Layout `FontContext`, preventing web fonts from being available in different Documents. Fixes #12920. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Co-authored-by: Mukilan Thiyagarajan <mukilan@igalia.com>
15 lines
417 B
Rust
15 lines
417 B
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
#![deny(unsafe_code)]
|
|
|
|
pub mod font;
|
|
pub mod font_cache_thread;
|
|
pub mod font_context;
|
|
pub mod font_store;
|
|
pub mod font_template;
|
|
#[allow(unsafe_code)]
|
|
pub mod platform;
|
|
pub mod rendering_context;
|
|
pub mod text;
|