Closed
Description
Loading the locally installed copy of the standard library docs in Firefox I see errors in the console about loading fonts:
downloadable font: download failed (font-family: "Source Serif Pro" style:normal weight:normal stretch:normal src index:1): bad URI or cross-site access not allowed source: file:///C:/Users/Ted%20Mielczarek/.multirust/toolchains/stable-x86_64-pc-windows-msvc/share/doc/rust/html/SourceSerifPro-Regular.woff
This is because Firefox implements a strict same-origin policy for file: URLs: https://developer.mozilla.org/en-US/docs/Same-origin_policy_for_file:_URIs
...and web fonts follow the same-origin policy, so a html page loaded from a file: URL can't load a web font from a parent directory.
/cc @Ms2ger