LibWeb: Determine the origin when navigating across documents

This commit is contained in:
MacDue 2022-08-25 19:04:27 +01:00 committed by Andreas Kling
commit 8d2c2f7c52
Notes: sideshowbarker 2024-07-17 07:44:46 +09:00
4 changed files with 14 additions and 4 deletions

View file

@ -157,4 +157,6 @@ private:
String m_name;
};
HTML::Origin determine_the_origin(BrowsingContext const& browsing_context, Optional<AK::URL> url, SandboxingFlagSet sandbox_flags, Optional<HTML::Origin> invocation_origin);
}