1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:57:35 +00:00

LibWeb: Bring Document::fallback_base_url closer to the spec

This commit is contained in:
Andrew Kaster 2024-02-04 03:41:07 -07:00 committed by Andrew Kaster
parent 5d9d0aa267
commit 6e75440d5a
3 changed files with 25 additions and 5 deletions

View file

@ -236,7 +236,8 @@ HTML::Origin determine_the_origin(AK::URL const& url, SandboxingFlagSet sandbox_
SandboxingFlagSet determine_the_creation_sandboxing_flags(BrowsingContext const&, JS::GCPtr<DOM::Element> embedder);
// FIXME: Find a better home for this
// FIXME: Find a better home for these
bool url_matches_about_blank(AK::URL const& url);
bool url_matches_about_srcdoc(AK::URL const& url);
}