//! Width measurement abstraction.
//!
//! [`Measurer`] decouples the layout engine from any specific font
//! system so the pure line-break / layout logic stays testable on
//! the host without a Canvas. [`CanvasMeasurer`] is the default
//! in-browser impl and forwards to the JS shim in [`super::measure_js`].
use crateFont;
;